diff --git a/.gitignore b/.gitignore index a1558ce..d46c60e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .idea/ .cache *.pyc -*.egg-info \ No newline at end of file +*.egg-info +.DS_Store \ No newline at end of file diff --git a/WikiWho/utils.py b/WikiWho/utils.py index d9dbd93..836a6ab 100644 --- a/WikiWho/utils.py +++ b/WikiWho/utils.py @@ -42,7 +42,10 @@ def split_into_paragraphs(text): text = text.replace('', '\n\n
').replace('
', '\n\n') text = text.replace('', '\n\n').replace('', '\n\n') # wp table syntax - text = text.replace('{|', '\n\n{|').replace('|}', '|}\n\n') + text = text.replace('{|', '\n\n{|') + # Treat a line-start `|}}` as a template ending. It is ambiguous with a + # table close followed by a literal `}`, which this fast path cannot parse. + text = re.sub(r'(?m)^([ \t]*\|\})(?!\})', r'\1\n\n', text) text = text.replace('|-\n', '\n\n|-\n') return text.split('\n\n') diff --git a/WikiWho/wikiwho.py b/WikiWho/wikiwho.py index 43ea431..f5a4849 100644 --- a/WikiWho/wikiwho.py +++ b/WikiWho/wikiwho.py @@ -51,11 +51,21 @@ # Moved-run recovery looks for unique informative n-grams in unmatched diff regions. The sizes/caps below bound how much extra indexing we do per word diff while still finding copied or moved runs that SequenceMatcher misses. WORD_MATCH_MOVE_NGRAM_SIZES = (10, 8, 6, 4, 3) +# Run admission and per-token coverage use different evidence floors. An +# unstructured content core needs four informative tokens to admit a moved run +# by itself. After separate structural evidence admits the run, unique windows +# with three informative tokens can provide per-token coverage. WORD_MATCH_MOVE_MIN_INFO_TOKENS = 3 -WORD_MATCH_MOVE_TOKEN_WINDOW = 4 +WORD_MATCH_MOVE_MIN_ANCHOR_INFO_TOKENS = 4 WORD_MATCH_MOVE_MIN_RECOVERABLE_TOKENS = 24 +WORD_MATCH_MOVE_MIN_LINK_WINDOW = 6 WORD_MATCH_MOVE_MAX_WINDOWS = 300000 +# Partial historical-sentence restoration needs enough unchanged context to make the old sentence identity stronger than the few token identities already occupied elsewhere. +WORD_MATCH_HISTORICAL_MIN_AVAILABLE_TOKENS = 24 +WORD_MATCH_HISTORICAL_MAX_OCCUPIED_TOKENS = 2 +WORD_MATCH_HISTORICAL_MIN_EVIDENCE_RATIO = 4 + # A large pure deletion immediately before an unchanged suffix can otherwise keep very old glue words alive by edge matching. Limit that correction to the first suffix window so normal suffix preservation remains cheap. WORD_MATCH_EDGE_STALE_REWRITE_MIN_TOKENS = 24 WORD_MATCH_EDGE_STALE_WINDOW = 64 @@ -612,47 +622,105 @@ def _count_subsequence_cached(tokens, needle, count_state): return count -def _copy_safe_moved_run(count_text_prev, count_text_curr, text_curr, curr_start, length, count_state): - core = _longest_content_core(text_curr[curr_start:curr_start + length]) - if len(core) < WORD_MATCH_MOVE_MIN_INFO_TOKENS: - return False - return (_count_subsequence_cached(count_text_prev, core, count_state) == 1 and - _count_subsequence_cached(count_text_curr, core, count_state) == 1) - - -def _content_run_bounds(tokens, index): - start = index - while start > 0 and _is_informative_move_token(tokens[start - 1]): - start -= 1 - end = index + 1 - while end < len(tokens) and _is_informative_move_token(tokens[end]): - end += 1 - return start, end - - -def _has_unique_content_window(count_text_prev, count_text_curr, text_curr, curr_index, count_state): - if not _is_informative_move_token(text_curr[curr_index]): - return True - - run_start, run_end = _content_run_bounds(text_curr, curr_index) - if run_end - run_start < WORD_MATCH_MOVE_TOKEN_WINDOW: - if run_end - run_start >= WORD_MATCH_MOVE_MIN_INFO_TOKENS: - needle = tuple(text_curr[run_start:run_end]) - if any(any(char.isdigit() for char in token) for token in needle): - return (_count_subsequence_cached(count_text_prev, needle, count_state) == 1 and - _count_subsequence_cached(count_text_curr, needle, count_state) == 1) - return False +def _link_anchor_bounds(tokens): + try: + link_open = tokens.index('[[') + link_close = tokens.index(']]', link_open + 1) + except ValueError: + return None + if link_open < 2 or not all( + _is_informative_move_token(token) for token in tokens[link_open - 2:link_open]): + return None + if sum(_is_informative_move_token(token) for token in tokens[link_open + 1:link_close]) < 2: + return None + return link_open, link_close - earliest = max(run_start, curr_index - WORD_MATCH_MOVE_TOKEN_WINDOW + 1) - latest = min(curr_index, run_end - WORD_MATCH_MOVE_TOKEN_WINDOW) - for start in range(earliest, latest + 1): - needle = tuple(text_curr[start:start + WORD_MATCH_MOVE_TOKEN_WINDOW]) - if (_count_subsequence_cached(count_text_prev, needle, count_state) == 1 and - _count_subsequence_cached(count_text_curr, needle, count_state) == 1): + +def _template_field_anchor(run, content_core): + """Return whether a content core follows a raw ``| name =`` opener.""" + core_length = len(content_core) + for start in range(len(run) - core_length + 1): + if tuple(run[start:start + core_length]) != content_core: + continue + if start < 3 or run[start - 1] != '=': + continue + index = start - 2 + while index >= 0 and _is_informative_move_token(run[index]): + index -= 1 + if index >= 0 and index < start - 2 and run[index] == '|': return True return False +def _copy_safe_moved_run(count_text_prev, count_text_curr, text_curr, curr_start, length, count_state): + run = text_curr[curr_start:curr_start + length] + content_core = _longest_content_core(run) + # Four content tokens are normally required to establish a moved run. Allow + # an exact unique three-token value only when the run itself contains its + # template-field opener. This does not admit weak prose anchors such as + # "across the country". A bare digit-bearing exception is deliberately not + # used here: repeated citation dates can otherwise swap token lineages. + if (len(content_core) >= WORD_MATCH_MOVE_MIN_ANCHOR_INFO_TOKENS or + (len(content_core) >= WORD_MATCH_MOVE_MIN_INFO_TOKENS and + _template_field_anchor(run, content_core))): + return (_count_subsequence_cached(count_text_prev, content_core, count_state) == 1 and + _count_subsequence_cached(count_text_curr, content_core, count_state) == 1) + if _link_anchor_bounds(run) is None: + return False + return (_count_subsequence_cached(count_text_prev, run, count_state) == 1 and + _count_subsequence_cached(count_text_curr, run, count_state) == 1) + + +def _has_unique_link_move_window(count_text_prev, count_text_curr, text_curr, + curr_index, run_start, run_end, count_state): + max_window = min(run_end - run_start, max(WORD_MATCH_MOVE_NGRAM_SIZES)) + for ngram_size in range(max_window, WORD_MATCH_MOVE_MIN_LINK_WINDOW - 1, -1): + earliest = max(run_start, curr_index - ngram_size + 1) + latest = min(curr_index, run_end - ngram_size) + for start in range(earliest, latest + 1): + needle = tuple(text_curr[start:start + ngram_size]) + anchor = _link_anchor_bounds(needle) + if anchor is None: + continue + link_open, _ = anchor + if not start + link_open - 2 <= curr_index < start + link_open: + continue + if (_count_subsequence_cached(count_text_prev, needle, count_state) == 1 and + _count_subsequence_cached(count_text_curr, needle, count_state) == 1): + return True + return False + + +def _unique_moved_run_coverage(count_text_prev, count_text_curr, text_curr, + run_start, run_end, count_state, + minimum_informative=WORD_MATCH_MOVE_MIN_INFO_TOKENS): + run_length = run_end - run_start + max_window = min(run_length, max(WORD_MATCH_MOVE_NGRAM_SIZES)) + if max_window < minimum_informative: + return set() + + informative_prefix = [0] + informative_count = 0 + for token in text_curr[run_start:run_end]: + if _is_informative_move_token(token): + informative_count += 1 + informative_prefix.append(informative_count) + + covered = set() + for window_size in range(minimum_informative, max_window + 1): + for relative_start in range(run_length - window_size + 1): + relative_end = relative_start + window_size + if (informative_prefix[relative_end] - informative_prefix[relative_start] < + minimum_informative): + continue + start = run_start + relative_start + needle = tuple(text_curr[start:start + window_size]) + if (_count_subsequence_cached(count_text_prev, needle, count_state) == 1 and + _count_subsequence_cached(count_text_curr, needle, count_state) == 1): + covered.update(range(start, start + window_size)) + return covered + + def _can_assign_moved_match(match_conf, prev_used_by, curr_index, prev_index): if match_conf[curr_index] >= WORD_MATCH_CONF_MOVED_RUN: return False @@ -698,6 +766,153 @@ def _move_ngram_sizes(recoverable_count): return sizes +def _raw_context_ngram_sizes(prev_len, curr_len): + sizes = [] + indexed_windows = 0 + for ngram_size in WORD_MATCH_MOVE_NGRAM_SIZES: + window_count = (max(0, prev_len - ngram_size + 1) + + max(0, curr_len - ngram_size + 1)) + if not window_count: + continue + if indexed_windows + window_count > WORD_MATCH_MOVE_MAX_WINDOWS: + break + sizes.append(ngram_size) + indexed_windows += window_count + return sizes + + +_TEMPLATE_PIPE_KEY_KINDS = frozenset(('template-field', 'template-arg')) + + +def _is_template_pipe_key(key): + return (isinstance(key, tuple) and len(key) == 5 and + key[:2] == ('wikitext', '|') and + key[2] in _TEMPLATE_PIPE_KEY_KINDS and + isinstance(key[3], tuple)) + + +def _pipe_key_changed_only_by_template_spacing(prev_key, curr_key): + if not (_is_template_pipe_key(prev_key) and + _is_template_pipe_key(curr_key)): + return False + if prev_key[:3] != curr_key[:3] or prev_key[4:] != curr_key[4:]: + return False + prev_name = prev_key[3] + curr_name = curr_key[3] + return prev_name != curr_name and ''.join(prev_name) == ''.join(curr_name) + + +def _has_template_name_spacing_change(prev_keys, curr_keys): + forms = [] + for keys in (prev_keys, curr_keys): + by_compact_name = defaultdict(set) + for key in keys: + if _is_template_pipe_key(key): + by_compact_name[''.join(key[3])].add(key[3]) + forms.append(by_compact_name) + + prev_forms, curr_forms = forms + for compact_name in set(prev_forms).intersection(curr_forms): + if any( + prev_name != curr_name + for prev_name in prev_forms[compact_name] + for curr_name in curr_forms[compact_name]): + return True + return False + + +def _recover_unique_template_field_words(text_prev, text_curr, + prev_keys, curr_keys, + prev_for_curr, match_conf, prev_used_by, + full_text_prev=None, full_text_curr=None, + get_full_texts=None, count_state=None): + # Template renames change the contextual keys of their separators. Preserve + # still-unmatched field content when it remains bracketed by the same exact + # raw context and both separator keys changed together. + recoverable_count = len(text_prev) + len(text_curr) + if recoverable_count < WORD_MATCH_MOVE_MIN_RECOVERABLE_TOKENS: + return + if not _has_template_name_spacing_change(prev_keys, curr_keys): + return + + if not any( + _is_informative_move_token(token) and index not in prev_used_by + for index, token in enumerate(text_prev)): + return + if not any( + _is_informative_move_token(token) and prev_for_curr[index] is None + for index, token in enumerate(text_curr)): + return + + ngram_sizes = _raw_context_ngram_sizes(len(text_prev), len(text_curr)) + if not ngram_sizes: + return + + count_texts = [full_text_prev, full_text_curr] + + def ensure_count_texts(): + if count_texts[0] is None or count_texts[1] is None: + if get_full_texts is not None: + count_texts[0], count_texts[1] = get_full_texts() + else: + count_texts[0] = text_prev + count_texts[1] = text_curr + return count_texts[0], count_texts[1] + + if count_state is None: + count_state = {'counts': {}} + prev_info = _informative_move_token_prefix(text_prev) + curr_info = _informative_move_token_prefix(text_curr) + prev_spans = [(0, len(text_prev))] + curr_spans = [(0, len(text_curr))] + + for ngram_size in ngram_sizes: + prev_contexts = _index_move_ngrams( + text_prev, prev_spans, ngram_size, prev_info, + ) + curr_contexts = _index_move_ngrams( + text_curr, curr_spans, ngram_size, curr_info, + ) + candidates = [] + for key, prev_positions in prev_contexts.items(): + curr_positions = curr_contexts.get(key) + if (len(prev_positions) != 1 or not curr_positions or + len(curr_positions) != 1): + continue + prev_start = prev_positions[0] + curr_start = curr_positions[0] + changed_pipes = tuple( + offset for offset in range(ngram_size) + if text_curr[curr_start + offset] == '|' and + _pipe_key_changed_only_by_template_spacing( + prev_keys[prev_start + offset], + curr_keys[curr_start + offset], + ) + ) + if len(changed_pipes) >= 2: + candidates.append((abs(prev_start - curr_start), + prev_start, curr_start, key, changed_pipes)) + + for _, prev_start, curr_start, key, changed_pipes in sorted(candidates, reverse=True): + count_text_prev, count_text_curr = ensure_count_texts() + if (_count_subsequence_cached(count_text_prev, key, count_state) != 1 or + _count_subsequence_cached(count_text_curr, key, count_state) != 1): + continue + for offset in range(ngram_size): + prev_index = prev_start + offset + curr_index = curr_start + offset + if not _is_informative_move_token(text_curr[curr_index]): + continue + if not (any(pipe < offset for pipe in changed_pipes) and + any(pipe > offset for pipe in changed_pipes)): + continue + if prev_for_curr[curr_index] is not None or prev_index in prev_used_by: + continue + _assign_word_match(prev_for_curr, match_conf, prev_used_by, + curr_index, prev_index, + WORD_MATCH_CONF_MOVED_RUN) + + def _recoverable_indices_from_spans(spans, start_allowed): indices = [] for span_start, span_end in spans: @@ -707,11 +922,167 @@ def _recoverable_indices_from_spans(spans, start_allowed): return indices +def _template_field_before_content(tokens, content_start): + if content_start < 3 or tokens[content_start - 1] != '=': + return None + field_end = content_start - 1 + index = field_end - 1 + while index >= 0 and tokens[index] != '|': + if not (_is_informative_move_token(tokens[index]) or tokens[index] == '_'): + return None + index -= 1 + if index < 0 or index == field_end - 1: + return None + raw_field = tuple(tokens[index + 1:field_end]) + normalized = ''.join( + token for token in raw_field if _is_informative_move_token(token) + ).rstrip('0123456789') + if not normalized: + return None + return raw_field, normalized + + +def _recover_unique_short_numeric_template_fields( + text_prev, text_curr, + prev_for_curr, match_conf, prev_used_by, + full_text_prev=None, full_text_curr=None, + get_full_texts=None, + prev_candidate_spans=None, + curr_candidate_spans=None, + count_state=None): + """Repair a renamed numeric template field split by one weaker match. + + A SequenceMatcher equal opcode can claim the year of an otherwise intact + date for an unrelated newly added date. Moved-run recovery then cannot seed + the old three-token run because one previous position lies outside its + replace spans. Reconsider only maximal, digit-bearing three-token values + whose template field changed to an equivalent compact name (for example, + ``term_start`` to ``termstart2``), whose current positions are all in + replace spans, and whose previous occurrence retains at least two positions + there. Exact full-revision uniqueness and the confidence ladder still + decide the assignment. Same-name citation date fields are excluded because + their repeated values can otherwise exchange token lineages. + """ + run_length = WORD_MATCH_MOVE_MIN_INFO_TOKENS + if run_length != 3: + return + + if curr_candidate_spans is None: + candidate_ranges = [] + index = 0 + while index < len(text_curr): + if not _is_informative_move_token(text_curr[index]): + index += 1 + continue + run_start = index + index += 1 + while index < len(text_curr) and _is_informative_move_token(text_curr[index]): + index += 1 + if index - run_start == run_length: + candidate_ranges.append((run_start, index)) + else: + # The conflict this pass repairs leaves the complete current value as + # one three-token replace span. Inspecting only those spans makes the + # common path proportional to the opcode count, without expanding span + # sets or scanning the complete unmatched text. + candidate_ranges = [ + (start, end) for start, end in curr_candidate_spans + if end - start == run_length + ] + + candidates = [] + for run_start, run_end in candidate_ranges: + if ((run_start > 0 and _is_informative_move_token(text_curr[run_start - 1])) or + (run_end < len(text_curr) and _is_informative_move_token(text_curr[run_end]))): + continue + if not all(_is_informative_move_token(text_curr[position]) + for position in range(run_start, run_end)): + continue + needle = tuple(text_curr[run_start:run_end]) + if not any(char.isdigit() for token in needle for char in token): + continue + curr_field = _template_field_before_content(text_curr, run_start) + if curr_field is None: + continue + if any(match_conf[position] >= WORD_MATCH_CONF_MOVED_RUN + for position in range(run_start, run_end)): + continue + candidates.append((run_start, needle, curr_field)) + + if not candidates: + return + + candidate_needles = set(needle for _, needle, _ in candidates) + prev_positions = defaultdict(list) + for prev_start in range(len(text_prev) - run_length + 1): + prev_end = prev_start + run_length + needle = tuple(text_prev[prev_start:prev_end]) + if needle not in candidate_needles: + continue + if ((prev_start > 0 and _is_informative_move_token(text_prev[prev_start - 1])) or + (prev_end < len(text_prev) and _is_informative_move_token(text_prev[prev_end]))): + continue + prev_positions[needle].append(prev_start) + + if count_state is None: + count_state = {'counts': {}} + count_texts = [full_text_prev, full_text_curr] + + def ensure_count_texts(): + if count_texts[0] is None or count_texts[1] is None: + if get_full_texts is not None: + count_texts[0], count_texts[1] = get_full_texts() + else: + count_texts[0] = text_prev + count_texts[1] = text_curr + return count_texts[0], count_texts[1] + + for curr_start, needle, curr_field in candidates: + positions = prev_positions.get(needle, ()) + if len(positions) != 1: + continue + prev_start = positions[0] + prev_field = _template_field_before_content(text_prev, prev_start) + if (prev_field is None or prev_field[1] != curr_field[1] or + prev_field[0] == curr_field[0]): + continue + previous_indices = range(prev_start, prev_start + run_length) + if prev_candidate_spans is not None: + candidate_count = 0 + for span_start, span_end in prev_candidate_spans: + if span_end <= prev_start: + continue + if span_start >= prev_start + run_length: + break + candidate_count += max( + 0, + min(span_end, prev_start + run_length) - max(span_start, prev_start), + ) + if candidate_count < run_length - 1: + continue + if any( + prev_used_by.get(position) is not None and + match_conf[prev_used_by[position]] >= WORD_MATCH_CONF_MOVED_RUN + for position in previous_indices): + continue + + count_text_prev, count_text_curr = ensure_count_texts() + if (_count_subsequence_cached(count_text_prev, needle, count_state) != 1 or + _count_subsequence_cached(count_text_curr, needle, count_state) != 1): + continue + for offset in range(run_length): + _assign_word_match( + prev_for_curr, match_conf, prev_used_by, + curr_start + offset, prev_start + offset, + WORD_MATCH_CONF_MOVED_RUN, + ) + + def _recover_moved_word_runs(text_prev, text_curr, prev_keys, curr_keys, prev_for_curr, match_conf, prev_used_by, full_text_prev=None, full_text_curr=None, get_full_texts=None, prev_candidate_spans=None, - curr_candidate_spans=None): + curr_candidate_spans=None, count_state=None): count_texts = [full_text_prev, full_text_curr] if prev_candidate_spans is not None and curr_candidate_spans is not None: if not prev_candidate_spans or not curr_candidate_spans: @@ -732,7 +1103,8 @@ def ensure_count_texts(): prev_info_prefix = _informative_move_token_prefix(prev_keys) curr_info_prefix = _informative_move_token_prefix(curr_keys) - count_state = {'counts': {}} + if count_state is None: + count_state = {'counts': {}} checked_runs = set() for ngram_size in _move_ngram_sizes(recoverable_count): protected_prev = set( @@ -794,10 +1166,26 @@ def ensure_count_texts(): continue confidence = _moved_run_confidence(length, ngram_size) + requires_complete_link_window = ( + len(_longest_content_core(text_curr[curr_start:curr_start + length])) < + WORD_MATCH_MOVE_MIN_INFO_TOKENS + ) + covered = None + if not requires_complete_link_window: + covered = _unique_moved_run_coverage( + count_text_prev, count_text_curr, text_curr, + curr_start, curr_start + length, count_state, + ) for offset in range(length): curr_index = curr_start + offset - if not _has_unique_content_window(count_text_prev, count_text_curr, - text_curr, curr_index, count_state): + if requires_complete_link_window: + if not _has_unique_link_move_window( + count_text_prev, count_text_curr, text_curr, + curr_index, curr_start, curr_start + length, + count_state, + ): + continue + elif curr_index not in covered: continue _assign_word_match(prev_for_curr, match_conf, prev_used_by, curr_index, prev_start + offset, @@ -876,13 +1264,33 @@ def _match_word_sequences(text_prev, text_curr, full_text_prev=None, full_text_c prev_mid_start + prev_index, WORD_MATCH_CONF_LOCAL) + recovery_count_state = {'counts': {}} _recover_moved_word_runs(text_prev, text_curr, prev_keys, curr_keys, prev_for_curr, match_conf, prev_used_by, full_text_prev=full_text_prev, full_text_curr=full_text_curr, get_full_texts=get_full_texts, prev_candidate_spans=move_prev_spans, - curr_candidate_spans=move_curr_spans) + curr_candidate_spans=move_curr_spans, + count_state=recovery_count_state) + _recover_unique_short_numeric_template_fields( + text_prev, text_curr, + prev_for_curr, match_conf, prev_used_by, + full_text_prev=full_text_prev, + full_text_curr=full_text_curr, + get_full_texts=get_full_texts, + prev_candidate_spans=move_prev_spans, + curr_candidate_spans=move_curr_spans, + count_state=recovery_count_state, + ) + _recover_unique_template_field_words( + text_prev, text_curr, prev_keys, curr_keys, + prev_for_curr, match_conf, prev_used_by, + full_text_prev=full_text_prev, + full_text_curr=full_text_curr, + get_full_texts=get_full_texts, + count_state=recovery_count_state, + ) _recover_edited_link_boundaries(text_prev, text_curr, prev_for_curr, match_conf, prev_used_by) _demote_stale_suffix_edge_matches(text_prev, text_curr, prev_words, @@ -894,6 +1302,24 @@ def _match_word_sequences(text_prev, text_curr, full_text_prev=None, full_text_c return prev_for_curr, deleted_prev +def _can_partially_restore_historical_sentence(words, previous_revision_id): + available = [word for word in words if not word.matched] + occupied_count = len(words) - len(available) + if (occupied_count == 0 or + occupied_count > WORD_MATCH_HISTORICAL_MAX_OCCUPIED_TOKENS or + len(available) < WORD_MATCH_HISTORICAL_MIN_AVAILABLE_TOKENS or + len(available) < WORD_MATCH_HISTORICAL_MIN_EVIDENCE_RATIO * occupied_count): + return False + removal_revisions = { + word.outbound[-1] + for word in available + if word.outbound + } + return (len(removal_revisions) == 1 and + previous_revision_id not in removal_revisions and + all(word.outbound for word in available)) + + class Wikiwho: def __init__(self, article_title): # Hash tables. @@ -1082,6 +1508,7 @@ def analyse_article(self, page): def determine_authorship(self): # Containers for unmatched paragraphs and sentences in both revisions. unmatched_sentences_curr = [] + restored_sentences_curr = [] unmatched_sentences_prev = [] matched_paragraphs_prev = [] matched_sentences_prev = [] @@ -1096,7 +1523,8 @@ def determine_authorship(self): # Analysis of the sentences in the unmatched paragraphs of the current revision. if unmatched_paragraphs_curr: - unmatched_sentences_curr, unmatched_sentences_prev, matched_sentences_prev, total_sentences = \ + unmatched_sentences_curr, restored_sentences_curr, unmatched_sentences_prev, \ + matched_sentences_prev, total_sentences = \ self.analyse_sentences_in_paragraphs(unmatched_paragraphs_curr, unmatched_paragraphs_prev) # TODO: spam detection @@ -1189,13 +1617,25 @@ def determine_authorship(self): unmatched_paragraph.value = '' # hash value is not used for next rev analysis # Add the new sentences to hash table of sentences. - for unmatched_sentence in unmatched_sentences_curr: - if unmatched_sentence.hash_value in self.sentences_ht: - self.sentences_ht[unmatched_sentence.hash_value].append(unmatched_sentence) + for sentence_curr in unmatched_sentences_curr: + if sentence_curr.hash_value in self.sentences_ht: + self.sentences_ht[sentence_curr.hash_value].append(sentence_curr) + else: + self.sentences_ht.update({sentence_curr.hash_value: [sentence_curr]}) + sentence_curr.value = '' # hash value is not used for next rev analysis + sentence_curr.splitted = None # splitted word values are not used for next rev analysis + + # A partially restored sentence supersedes the stale historical + # representation whose occupied words forced reconstruction. Put + # it first so a later delete-and-reinsert tries the current token + # identities before that stale representation. + for sentence_curr in restored_sentences_curr: + if sentence_curr.hash_value in self.sentences_ht: + self.sentences_ht[sentence_curr.hash_value].insert(0, sentence_curr) else: - self.sentences_ht.update({unmatched_sentence.hash_value: [unmatched_sentence]}) - unmatched_sentence.value = '' # hash value is not used for next rev analysis - unmatched_sentence.splitted = None # splitted word values are not used for next rev analysis + self.sentences_ht.update({sentence_curr.hash_value: [sentence_curr]}) + sentence_curr.value = '' + sentence_curr.splitted = None return vandalism @@ -1336,6 +1776,7 @@ def analyse_paragraphs_in_revision(self): def analyse_sentences_in_paragraphs(self, unmatched_paragraphs_curr, unmatched_paragraphs_prev): # Containers for unmatched and matched sentences. unmatched_sentences_curr = [] + restored_sentences_curr = [] unmatched_sentences_prev = [] matched_sentences_prev = [] total_sentences = 0 @@ -1423,6 +1864,40 @@ def analyse_sentences_in_paragraphs(self, unmatched_paragraphs_curr, unmatched_p # if all prev words in this sentence are already matched sentence_prev.matched = True matched_sentences_prev.append(sentence_prev) + elif _can_partially_restore_historical_sentence( + sentence_prev.words, self.revision_prev.id): + # An exact historical sentence can return after a few of its + # generic token objects have been reused elsewhere. Restore the + # available identities and create new tokens only for occupied + # positions instead of rejecting the entire sentence. + sentence_reused = Sentence() + sentence_reused.hash_value = hash_curr + sentence_reused.value = sentence + for word_prev in sentence_prev.words: + if word_prev.matched: + word_curr = Word() + word_curr.value = word_prev.value + word_curr.token_id = self.token_id + word_curr.origin_rev_id = self.revision_curr.id + word_curr.last_rev_id = self.revision_curr.id + sentence_reused.words.append(word_curr) + self.token_id += 1 + self.revision_curr.original_adds += 1 + self.tokens.append(word_curr) + else: + word_prev.matched = True + sentence_reused.words.append(word_prev) + + sentence_prev.matched = True + matched_curr = True + matched_sentences_prev.append(sentence_prev) + if hash_curr in paragraph_curr.sentences: + paragraph_curr.sentences[hash_curr].append(sentence_reused) + else: + paragraph_curr.sentences.update({hash_curr: [sentence_reused]}) + paragraph_curr.ordered_sentences.append(hash_curr) + restored_sentences_curr.append(sentence_reused) + break # If the sentence did not match, # then include in the container of unmatched sentences for further analysis. @@ -1455,7 +1930,8 @@ def analyse_sentences_in_paragraphs(self, unmatched_paragraphs_curr, unmatched_p sentence_prev.matched = True matched_sentences_prev.append(sentence_prev) - return unmatched_sentences_curr, unmatched_sentences_prev, matched_sentences_prev, total_sentences + return (unmatched_sentences_curr, restored_sentences_curr, + unmatched_sentences_prev, matched_sentences_prev, total_sentences) def analyse_words_in_sentences(self, unmatched_sentences_curr, unmatched_sentences_prev, possible_vandalism): matched_words_prev = [] diff --git a/tests/authorship_cases.json b/tests/authorship_cases.json index dc8e012..c5ac911 100644 --- a/tests/authorship_cases.json +++ b/tests/authorship_cases.json @@ -293,5 +293,101 @@ } } ] + }, + { + "title": "The Tell-Tale Brain", + "fixture": "fixtures/the_tell-tale_brain_revisions.json", + "history_through_revid": 466775504, + "snapshot_revid": 466775504, + "cases": [ + { + "id": "tell_tale_brain_partial_historical_sentence_restore", + "context": "When VS Ramachandran, one of the", + "focus": ["When VS Ramachandran, one of the"], + "expected": { + "values": ["when", "vs", "ramachandran", ",", "one", "of", "the"], + "origin_rev_ids": [460801847, 460730548, 460730548, 466775504, 460730548, 466775504, 460730548], + "last_rev_ids": [466775504, 466775504, 466775504, 466775504, 466775504, 466775504, 466775504], + "inbound": [[466775504], [466775504], [466775504], [], [466775504], [], [466775504]], + "outbound": [[463754831], [463754831], [463754831], [], [463754831], [], [463754831]] + } + } + ] + }, + { + "title": "Luis Donaldo Colosio Riojas", + "fixture": "fixtures/luis_donaldo_colosio_riojas_revisions.json", + "history_through_revid": 1222367802, + "snapshot_revid": 1222367802, + "cases": [ + { + "id": "colosio_citation_title_move_across_punctuation", + "context": "|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=", + "focus": ["Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México"], + "expected": { + "values": ["colosio", ",", "vizcaíno", ",", "marina", "y", "cerqueda", ",", "las", "nuevas", "caras", "de", "la", "política", "en", "méxico"], + "origin_rev_ids": [1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078, 1028074078], + "last_rev_ids": [1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802, 1222367802] + } + }, + { + "id": "colosio_citation_date_survives_field_reorder", + "context": "{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda", + "focus": ["8 June 2021"], + "expected": { + "values": ["8", "june", "2021"], + "origin_rev_ids": [1028074078, 1028074078, 1028074078], + "last_rev_ids": [1222367802, 1222367802, 1222367802] + } + }, + { + "id": "colosio_second_citation_date_survives_field_reorder", + "context": "|last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado", + "focus": ["23 March 2019"], + "expected": { + "values": ["23", "march", "2019"], + "origin_rev_ids": [1028090673, 1028090673, 1028090673], + "last_rev_ids": [1222367802, 1222367802, 1222367802] + } + } + ] + }, + { + "title": "Luis Donaldo Colosio Riojas", + "fixture": "fixtures/luis_donaldo_colosio_riojas_revisions.json", + "history_through_revid": 1347221443, + "snapshot_revid": 1347221443, + "cases": [ + { + "id": "colosio_term_start_survives_infobox_restructure", + "context": "|term_start2=4 June 2024 |term_end2=22 August 2024", + "focus": ["4 June 2024"], + "expected": { + "values": ["4", "june", "2024"], + "origin_rev_ids": [1227424767, 1227424767, 1227424767], + "last_rev_ids": [1347221443, 1347221443, 1347221443] + } + } + ] + }, + { + "title": "One Thing Leads 2 Another", + "fixture": "fixtures/one_thing_leads_2_another_revisions.json", + "history_through_revid": 1153115618, + "snapshot_revid": 1153115618, + "cases": [ + { + "id": "one_thing_leads_2_another_template_spacing_preserves_field", + "context": "{{single chart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate", + "focus": ["Switzerland"], + "expected": { + "values": ["switzerland"], + "origin_rev_ids": [925279062], + "last_rev_ids": [1153115618], + "inbound": [[]], + "outbound": [[]] + } + } + ] } ] diff --git a/tests/fixtures/adam_himebauch_golden.json b/tests/fixtures/adam_himebauch_golden.json index 4cee59d..2ea365c 100644 --- a/tests/fixtures/adam_himebauch_golden.json +++ b/tests/fixtures/adam_himebauch_golden.json @@ -1359,18 +1359,14 @@ "token_id": 147, "o_rev_id": 678458561, "in": [], - "out": [ - 754869525 - ] + "out": [] }, { "str": "<", "token_id": 148, "o_rev_id": 678458561, "in": [], - "out": [ - 754869525 - ] + "out": [] }, { "str": "ref", @@ -2393,27 +2389,21 @@ "token_id": 277, "o_rev_id": 678462685, "in": [], - "out": [ - 754869525 - ] + "out": [] }, { "str": "\"", "token_id": 278, "o_rev_id": 678462685, "in": [], - "out": [ - 754869525 - ] + "out": [] }, { "str": ":", "token_id": 279, "o_rev_id": 678462685, "in": [], - "out": [ - 754869525 - ] + "out": [] }, { "str": "0", @@ -2427,9 +2417,7 @@ "token_id": 281, "o_rev_id": 678462685, "in": [], - "out": [ - 754869525 - ] + "out": [] }, { "str": "[[", @@ -2820,7 +2808,7 @@ "o_rev_id": 678462685, "in": [], "out": [ - 754869525 + 1078016622 ] }, { @@ -2829,7 +2817,7 @@ "o_rev_id": 678462685, "in": [], "out": [ - 754869525 + 1078016622 ] }, { @@ -2838,7 +2826,7 @@ "o_rev_id": 678462685, "in": [], "out": [ - 754869525 + 1078016622 ] }, { @@ -2856,7 +2844,7 @@ "o_rev_id": 678462685, "in": [], "out": [ - 754869525 + 1078016622 ] }, { @@ -2865,7 +2853,7 @@ "o_rev_id": 678462685, "in": [], "out": [ - 754869525 + 1078016622 ] }, { @@ -2883,7 +2871,7 @@ "o_rev_id": 678462685, "in": [], "out": [ - 754869525 + 1078016622 ] }, { @@ -2901,7 +2889,7 @@ "o_rev_id": 678462685, "in": [], "out": [ - 754869525 + 1078016622 ] }, { @@ -2910,7 +2898,7 @@ "o_rev_id": 678462685, "in": [], "out": [ - 754869525 + 1078016622 ] }, { @@ -3302,14 +3290,18 @@ "token_id": 377, "o_rev_id": 678462685, "in": [], - "out": [] + "out": [ + 754869525 + ] }, { "str": "<", "token_id": 378, "o_rev_id": 678462685, "in": [], - "out": [] + "out": [ + 754869525 + ] }, { "str": "ref", @@ -3334,21 +3326,27 @@ "token_id": 381, "o_rev_id": 678462685, "in": [], - "out": [] + "out": [ + 754869525 + ] }, { "str": "\"", "token_id": 382, "o_rev_id": 678462685, "in": [], - "out": [] + "out": [ + 754869525 + ] }, { "str": ":", "token_id": 383, "o_rev_id": 678462685, "in": [], - "out": [] + "out": [ + 754869525 + ] }, { "str": "0", @@ -3364,7 +3362,9 @@ "token_id": 385, "o_rev_id": 678462685, "in": [], - "out": [] + "out": [ + 754869525 + ] }, { "str": "/", @@ -13380,7 +13380,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13398,7 +13398,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13425,7 +13425,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13443,7 +13443,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13461,7 +13461,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13470,7 +13470,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13479,7 +13479,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13488,7 +13488,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13497,7 +13497,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13515,7 +13515,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13524,7 +13524,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13542,7 +13542,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13578,7 +13578,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -13587,7 +13587,7 @@ "o_rev_id": 701771237, "in": [], "out": [ - 797537354 + 754869826 ] }, { @@ -19375,81 +19375,9 @@ 1078016622 ] }, - { - "str": "a", - "token_id": 2205, - "o_rev_id": 754869525, - "in": [], - "out": [ - 1078016622 - ] - }, - { - "str": "building", - "token_id": 2206, - "o_rev_id": 754869525, - "in": [], - "out": [ - 1078016622 - ] - }, - { - "str": "in", - "token_id": 2207, - "o_rev_id": 754869525, - "in": [], - "out": [ - 1078016622 - ] - }, - { - "str": "little", - "token_id": 2208, - "o_rev_id": 754869525, - "in": [], - "out": [ - 1078016622 - ] - }, - { - "str": "italy", - "token_id": 2209, - "o_rev_id": 754869525, - "in": [], - "out": [ - 1078016622 - ] - }, - { - "str": "manhattan", - "token_id": 2210, - "o_rev_id": 754869525, - "in": [], - "out": [ - 1078016622 - ] - }, - { - "str": "little", - "token_id": 2211, - "o_rev_id": 754869525, - "in": [], - "out": [ - 1078016622 - ] - }, - { - "str": "italy", - "token_id": 2212, - "o_rev_id": 754869525, - "in": [], - "out": [ - 1078016622 - ] - }, { "str": "hoping", - "token_id": 2213, + "token_id": 2205, "o_rev_id": 754869525, "in": [], "out": [ @@ -19458,7 +19386,7 @@ }, { "str": "to", - "token_id": 2214, + "token_id": 2206, "o_rev_id": 754869525, "in": [], "out": [ @@ -19467,7 +19395,7 @@ }, { "str": "amuse", - "token_id": 2215, + "token_id": 2207, "o_rev_id": 754869525, "in": [], "out": [ @@ -19476,7 +19404,7 @@ }, { "str": "his", - "token_id": 2216, + "token_id": 2208, "o_rev_id": 754869525, "in": [], "out": [ @@ -19485,7 +19413,7 @@ }, { "str": "friends", - "token_id": 2217, + "token_id": 2209, "o_rev_id": 754869525, "in": [], "out": [ @@ -19494,7 +19422,7 @@ }, { "str": ".", - "token_id": 2218, + "token_id": 2210, "o_rev_id": 754869525, "in": [], "out": [ @@ -19503,7 +19431,7 @@ }, { "str": "<", - "token_id": 2219, + "token_id": 2211, "o_rev_id": 754869525, "in": [], "out": [ @@ -19512,7 +19440,7 @@ }, { "str": "ref", - "token_id": 2220, + "token_id": 2212, "o_rev_id": 754869525, "in": [], "out": [ @@ -19521,7 +19449,7 @@ }, { "str": "name", - "token_id": 2221, + "token_id": 2213, "o_rev_id": 754869525, "in": [], "out": [ @@ -19530,7 +19458,7 @@ }, { "str": "=", - "token_id": 2222, + "token_id": 2214, "o_rev_id": 754869525, "in": [], "out": [ @@ -19539,7 +19467,7 @@ }, { "str": "\"", - "token_id": 2223, + "token_id": 2215, "o_rev_id": 754869525, "in": [], "out": [ @@ -19548,7 +19476,7 @@ }, { "str": ":", - "token_id": 2224, + "token_id": 2216, "o_rev_id": 754869525, "in": [], "out": [ @@ -19557,7 +19485,7 @@ }, { "str": "1", - "token_id": 2225, + "token_id": 2217, "o_rev_id": 754869525, "in": [], "out": [ @@ -19566,7 +19494,7 @@ }, { "str": "\"", - "token_id": 2226, + "token_id": 2218, "o_rev_id": 754869525, "in": [], "out": [ @@ -19575,7 +19503,7 @@ }, { "str": "/", - "token_id": 2227, + "token_id": 2219, "o_rev_id": 754869525, "in": [], "out": [ @@ -19584,7 +19512,7 @@ }, { "str": ">", - "token_id": 2228, + "token_id": 2220, "o_rev_id": 754869525, "in": [], "out": [ @@ -19593,21 +19521,21 @@ }, { "str": "the", - "token_id": 2229, + "token_id": 2221, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "image", - "token_id": 2230, + "token_id": 2222, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "soon", - "token_id": 2231, + "token_id": 2223, "o_rev_id": 754869525, "in": [], "out": [ @@ -19616,77 +19544,77 @@ }, { "str": "went", - "token_id": 2232, + "token_id": 2224, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "viral", - "token_id": 2233, + "token_id": 2225, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "on", - "token_id": 2234, + "token_id": 2226, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "social", - "token_id": 2235, + "token_id": 2227, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "media", - "token_id": 2236, + "token_id": 2228, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2237, + "token_id": 2229, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "encouraging", - "token_id": 2238, + "token_id": 2230, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2239, + "token_id": 2231, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2240, + "token_id": 2232, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "develop", - "token_id": 2241, + "token_id": 2233, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "his", - "token_id": 2242, + "token_id": 2234, "o_rev_id": 754869525, "in": [], "out": [ @@ -19695,7 +19623,7 @@ }, { "str": "street", - "token_id": 2243, + "token_id": 2235, "o_rev_id": 754869525, "in": [], "out": [ @@ -19704,7 +19632,7 @@ }, { "str": "moniker", - "token_id": 2244, + "token_id": 2236, "o_rev_id": 754869525, "in": [], "out": [ @@ -19713,459 +19641,441 @@ }, { "str": "and", - "token_id": 2245, + "token_id": 2237, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "expand", - "token_id": 2246, + "token_id": 2238, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "his", - "token_id": 2247, + "token_id": 2239, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "portfolio", - "token_id": 2248, + "token_id": 2240, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2249, + "token_id": 2241, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "popular", - "token_id": 2250, + "token_id": 2242, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "culture", - "token_id": 2251, + "token_id": 2243, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "mashup", - "token_id": 2252, + "token_id": 2244, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "puns", - "token_id": 2253, + "token_id": 2245, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2254, + "token_id": 2246, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "http", - "token_id": 2255, + "token_id": 2247, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ":", - "token_id": 2256, + "token_id": 2248, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2257, + "token_id": 2249, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2258, + "token_id": 2250, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "www", - "token_id": 2259, + "token_id": 2251, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2260, + "token_id": 2252, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "artnet", - "token_id": 2261, + "token_id": 2253, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2262, + "token_id": 2254, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "com", - "token_id": 2263, + "token_id": 2255, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2264, + "token_id": 2256, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "magazineus", - "token_id": 2265, + "token_id": 2257, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2266, + "token_id": 2258, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "features", - "token_id": 2267, + "token_id": 2259, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2268, + "token_id": 2260, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "jen", - "token_id": 2269, + "token_id": 2261, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2270, + "token_id": 2262, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "reverend", - "token_id": 2271, + "token_id": 2263, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2272, + "token_id": 2264, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "jen", - "token_id": 2273, + "token_id": 2265, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2274, + "token_id": 2266, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2275, + "token_id": 2267, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2276, + "token_id": 2268, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "art", - "token_id": 2277, + "token_id": 2269, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2278, + "token_id": 2270, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "show", - "token_id": 2279, + "token_id": 2271, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2280, + "token_id": 2272, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "1", - "token_id": 2281, + "token_id": 2273, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2282, + "token_id": 2274, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "17", - "token_id": 2283, + "token_id": 2275, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2284, + "token_id": 2276, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "12", - "token_id": 2285, + "token_id": 2277, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2286, + "token_id": 2278, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "asp", - "token_id": 2287, + "token_id": 2279, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 2288, + "token_id": 2280, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "title", - "token_id": 2289, + "token_id": 2281, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "=", - "token_id": 2290, + "token_id": 2282, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "reverend", - "token_id": 2291, + "token_id": 2283, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "jen", - "token_id": 2292, + "token_id": 2284, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "exclusive", - "token_id": 2293, + "token_id": 2285, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "on", - "token_id": 2294, + "token_id": 2286, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2295, + "token_id": 2287, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2296, + "token_id": 2288, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2297, + "token_id": 2289, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "tom", - "token_id": 2298, + "token_id": 2290, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "hanks", - "token_id": 2299, + "token_id": 2291, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "-", - "token_id": 2300, + "token_id": 2292, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "banksy", - "token_id": 2301, + "token_id": 2293, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "mashup", - "token_id": 2302, + "token_id": 2294, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "artist", - "token_id": 2303, + "token_id": 2295, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "-", - "token_id": 2304, + "token_id": 2296, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "artnet", - "token_id": 2305, + "token_id": 2297, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "magazine", - "token_id": 2306, + "token_id": 2298, "o_rev_id": 754869525, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "|", - "token_id": 2307, + "token_id": 2299, "o_rev_id": 754869525, "in": [], "out": [ @@ -20174,7 +20084,7 @@ }, { "str": "website", - "token_id": 2308, + "token_id": 2300, "o_rev_id": 754869525, "in": [], "out": [ @@ -20183,7 +20093,7 @@ }, { "str": "=", - "token_id": 2309, + "token_id": 2301, "o_rev_id": 754869525, "in": [], "out": [ @@ -20192,7 +20102,7 @@ }, { "str": "www", - "token_id": 2310, + "token_id": 2302, "o_rev_id": 754869525, "in": [], "out": [ @@ -20201,7 +20111,7 @@ }, { "str": ".", - "token_id": 2311, + "token_id": 2303, "o_rev_id": 754869525, "in": [], "out": [ @@ -20210,7 +20120,7 @@ }, { "str": "artnet", - "token_id": 2312, + "token_id": 2304, "o_rev_id": 754869525, "in": [], "out": [ @@ -20219,7 +20129,7 @@ }, { "str": ".", - "token_id": 2313, + "token_id": 2305, "o_rev_id": 754869525, "in": [], "out": [ @@ -20228,7 +20138,7 @@ }, { "str": "com", - "token_id": 2314, + "token_id": 2306, "o_rev_id": 754869525, "in": [], "out": [ @@ -20237,112 +20147,112 @@ }, { "str": "|", - "token_id": 2315, + "token_id": 2307, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "access", - "token_id": 2316, + "token_id": 2308, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2317, + "token_id": 2309, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "date", - "token_id": 2318, + "token_id": 2310, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2319, + "token_id": 2311, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "2016", - "token_id": 2320, + "token_id": 2312, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2321, + "token_id": 2313, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "12", - "token_id": 2322, + "token_id": 2314, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2323, + "token_id": 2315, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "14", - "token_id": 2324, + "token_id": 2316, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "}}", - "token_id": 2325, + "token_id": 2317, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "<", - "token_id": 2326, + "token_id": 2318, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2327, + "token_id": 2319, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "ref", - "token_id": 2328, + "token_id": 2320, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ">", - "token_id": 2329, + "token_id": 2321, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "since", - "token_id": 2330, + "token_id": 2322, "o_rev_id": 754869525, "in": [], "out": [ @@ -20351,28 +20261,28 @@ }, { "str": "2011", - "token_id": 2331, + "token_id": 2323, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2332, + "token_id": 2324, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2333, + "token_id": 2325, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "has", - "token_id": 2334, + "token_id": 2326, "o_rev_id": 754869525, "in": [], "out": [ @@ -20381,49 +20291,49 @@ }, { "str": "created", - "token_id": 2335, + "token_id": 2327, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hundreds", - "token_id": 2336, + "token_id": 2328, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2337, + "token_id": 2329, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "images", - "token_id": 2338, + "token_id": 2330, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "that", - "token_id": 2339, + "token_id": 2331, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "he", - "token_id": 2340, + "token_id": 2332, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "continues", - "token_id": 2341, + "token_id": 2333, "o_rev_id": 754869525, "in": [], "out": [ @@ -20432,7 +20342,7 @@ }, { "str": "to", - "token_id": 2342, + "token_id": 2334, "o_rev_id": 754869525, "in": [], "out": [ @@ -20441,7 +20351,7 @@ }, { "str": "paste", - "token_id": 2343, + "token_id": 2335, "o_rev_id": 754869525, "in": [], "out": [ @@ -20450,28 +20360,28 @@ }, { "str": "on", - "token_id": 2344, + "token_id": 2336, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2345, + "token_id": 2337, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "streets", - "token_id": 2346, + "token_id": 2338, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "but", - "token_id": 2347, + "token_id": 2339, "o_rev_id": 754869525, "in": [], "out": [ @@ -20480,7 +20390,7 @@ }, { "str": "also", - "token_id": 2348, + "token_id": 2340, "o_rev_id": 754869525, "in": [], "out": [ @@ -20489,7 +20399,7 @@ }, { "str": "paint", - "token_id": 2349, + "token_id": 2341, "o_rev_id": 754869525, "in": [], "out": [ @@ -20498,28 +20408,28 @@ }, { "str": "on", - "token_id": 2350, + "token_id": 2342, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "canvases", - "token_id": 2351, + "token_id": 2343, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "that", - "token_id": 2352, + "token_id": 2344, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "are", - "token_id": 2353, + "token_id": 2345, "o_rev_id": 754869525, "in": [], "out": [ @@ -20528,56 +20438,56 @@ }, { "str": "exhibited", - "token_id": 2354, + "token_id": 2346, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "across", - "token_id": 2355, + "token_id": 2347, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2356, + "token_id": 2348, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "country", - "token_id": 2357, + "token_id": 2349, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 2358, + "token_id": 2350, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "url", - "token_id": 2359, + "token_id": 2351, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2360, + "token_id": 2352, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2361, + "token_id": 2353, "o_rev_id": 754869525, "in": [], "out": [ @@ -20586,7 +20496,7 @@ }, { "str": "|", - "token_id": 2362, + "token_id": 2354, "o_rev_id": 754869525, "in": [], "out": [ @@ -20595,7 +20505,7 @@ }, { "str": "last", - "token_id": 2363, + "token_id": 2355, "o_rev_id": 754869525, "in": [], "out": [ @@ -20604,7 +20514,7 @@ }, { "str": "=", - "token_id": 2364, + "token_id": 2356, "o_rev_id": 754869525, "in": [], "out": [ @@ -20613,7 +20523,7 @@ }, { "str": "leland", - "token_id": 2365, + "token_id": 2357, "o_rev_id": 754869525, "in": [], "out": [ @@ -20622,7 +20532,7 @@ }, { "str": "|", - "token_id": 2366, + "token_id": 2358, "o_rev_id": 754869525, "in": [], "out": [ @@ -20631,7 +20541,7 @@ }, { "str": "first", - "token_id": 2367, + "token_id": 2359, "o_rev_id": 754869525, "in": [], "out": [ @@ -20640,7 +20550,7 @@ }, { "str": "=", - "token_id": 2368, + "token_id": 2360, "o_rev_id": 754869525, "in": [], "out": [ @@ -20649,7 +20559,7 @@ }, { "str": "john", - "token_id": 2369, + "token_id": 2361, "o_rev_id": 754869525, "in": [], "out": [ @@ -20658,7 +20568,7 @@ }, { "str": "|", - "token_id": 2370, + "token_id": 2362, "o_rev_id": 754869525, "in": [], "out": [ @@ -20667,7 +20577,7 @@ }, { "str": "newspaper", - "token_id": 2371, + "token_id": 2363, "o_rev_id": 754869525, "in": [], "out": [ @@ -20676,7 +20586,7 @@ }, { "str": "=", - "token_id": 2372, + "token_id": 2364, "o_rev_id": 754869525, "in": [], "out": [ @@ -20685,7 +20595,7 @@ }, { "str": "[[", - "token_id": 2373, + "token_id": 2365, "o_rev_id": 754869525, "in": [], "out": [ @@ -20694,7 +20604,7 @@ }, { "str": "the", - "token_id": 2374, + "token_id": 2366, "o_rev_id": 754869525, "in": [], "out": [ @@ -20703,7 +20613,7 @@ }, { "str": "new", - "token_id": 2375, + "token_id": 2367, "o_rev_id": 754869525, "in": [], "out": [ @@ -20712,7 +20622,7 @@ }, { "str": "york", - "token_id": 2376, + "token_id": 2368, "o_rev_id": 754869525, "in": [], "out": [ @@ -20721,7 +20631,7 @@ }, { "str": "times", - "token_id": 2377, + "token_id": 2369, "o_rev_id": 754869525, "in": [], "out": [ @@ -20730,7 +20640,7 @@ }, { "str": "]]", - "token_id": 2378, + "token_id": 2370, "o_rev_id": 754869525, "in": [], "out": [ @@ -20739,7 +20649,7 @@ }, { "str": "|", - "token_id": 2379, + "token_id": 2371, "o_rev_id": 754869525, "in": [], "out": [ @@ -20748,7 +20658,7 @@ }, { "str": "issn", - "token_id": 2380, + "token_id": 2372, "o_rev_id": 754869525, "in": [], "out": [ @@ -20757,7 +20667,7 @@ }, { "str": "=", - "token_id": 2381, + "token_id": 2373, "o_rev_id": 754869525, "in": [], "out": [ @@ -20766,7 +20676,7 @@ }, { "str": "0362", - "token_id": 2382, + "token_id": 2374, "o_rev_id": 754869525, "in": [], "out": [ @@ -20775,7 +20685,7 @@ }, { "str": "-", - "token_id": 2383, + "token_id": 2375, "o_rev_id": 754869525, "in": [], "out": [ @@ -20784,7 +20694,7 @@ }, { "str": "4331", - "token_id": 2384, + "token_id": 2376, "o_rev_id": 754869525, "in": [], "out": [ @@ -20793,441 +20703,441 @@ }, { "str": "banksy", - "token_id": 2385, + "token_id": 2377, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "has", - "token_id": 2386, + "token_id": 2378, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "yet", - "token_id": 2387, + "token_id": 2379, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2388, + "token_id": 2380, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "comment", - "token_id": 2389, + "token_id": 2381, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "on", - "token_id": 2390, + "token_id": 2382, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2391, + "token_id": 2383, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "parody", - "token_id": 2392, + "token_id": 2384, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ";", - "token_id": 2393, + "token_id": 2385, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "however", - "token_id": 2394, + "token_id": 2386, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2395, + "token_id": 2387, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "tom", - "token_id": 2396, + "token_id": 2388, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanks", - "token_id": 2397, + "token_id": 2389, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "is", - "token_id": 2398, + "token_id": 2390, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "supportive", - "token_id": 2399, + "token_id": 2391, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2400, + "token_id": 2392, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2401, + "token_id": 2393, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "work", - "token_id": 2402, + "token_id": 2394, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "and", - "token_id": 2403, + "token_id": 2395, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "shared", - "token_id": 2404, + "token_id": 2396, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "a", - "token_id": 2405, + "token_id": 2397, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "photograph", - "token_id": 2406, + "token_id": 2398, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "posing", - "token_id": 2407, + "token_id": 2399, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "next", - "token_id": 2408, + "token_id": 2400, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2409, + "token_id": 2401, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2410, + "token_id": 2402, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "on", - "token_id": 2411, + "token_id": 2403, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "twitter", - "token_id": 2412, + "token_id": 2404, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "account", - "token_id": 2413, + "token_id": 2405, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "{{", - "token_id": 2414, + "token_id": 2406, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "cite", - "token_id": 2415, + "token_id": 2407, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "news", - "token_id": 2416, + "token_id": 2408, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 2417, + "token_id": 2409, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "url", - "token_id": 2418, + "token_id": 2410, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2419, + "token_id": 2411, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "entertainment", - "token_id": 2420, + "token_id": 2412, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2421, + "token_id": 2413, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "movies", - "token_id": 2422, + "token_id": 2414, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2423, + "token_id": 2415, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "street", - "token_id": 2424, + "token_id": 2416, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "artist", - "token_id": 2425, + "token_id": 2417, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2426, + "token_id": 2418, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "tom", - "token_id": 2427, + "token_id": 2419, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanks", - "token_id": 2428, + "token_id": 2420, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "films", - "token_id": 2429, + "token_id": 2421, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "actor", - "token_id": 2430, + "token_id": 2422, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "60th", - "token_id": 2431, + "token_id": 2423, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "bday", - "token_id": 2432, + "token_id": 2424, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "2704531", - "token_id": 2433, + "token_id": 2425, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "street", - "token_id": 2434, + "token_id": 2426, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "artist", - "token_id": 2435, + "token_id": 2427, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "on", - "token_id": 2436, + "token_id": 2428, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "tom", - "token_id": 2437, + "token_id": 2429, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanks", - "token_id": 2438, + "token_id": 2430, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2439, + "token_id": 2431, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "films", - "token_id": 2440, + "token_id": 2432, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "on", - "token_id": 2441, + "token_id": 2433, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "actor", - "token_id": 2442, + "token_id": 2434, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2443, + "token_id": 2435, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "s", - "token_id": 2444, + "token_id": 2436, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "60th", - "token_id": 2445, + "token_id": 2437, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "bday", - "token_id": 2446, + "token_id": 2438, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "ny", - "token_id": 2447, + "token_id": 2439, "o_rev_id": 754869525, "in": [], "out": [ @@ -21236,7 +21146,7 @@ }, { "str": "daily", - "token_id": 2448, + "token_id": 2440, "o_rev_id": 754869525, "in": [], "out": [ @@ -21245,7 +21155,7 @@ }, { "str": "news", - "token_id": 2449, + "token_id": 2441, "o_rev_id": 754869525, "in": [], "out": [ @@ -21254,28 +21164,28 @@ }, { "str": "2016", - "token_id": 2450, + "token_id": 2442, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "12", - "token_id": 2451, + "token_id": 2443, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "14", - "token_id": 2452, + "token_id": 2444, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2453, + "token_id": 2445, "o_rev_id": 754869525, "in": [], "out": [ @@ -21284,7 +21194,7 @@ }, { "str": "=", - "token_id": 2454, + "token_id": 2446, "o_rev_id": 754869525, "in": [], "out": [ @@ -21293,7 +21203,7 @@ }, { "str": "=", - "token_id": 2455, + "token_id": 2447, "o_rev_id": 754869525, "in": [], "out": [ @@ -21302,7 +21212,7 @@ }, { "str": "'", - "token_id": 2456, + "token_id": 2448, "o_rev_id": 754869525, "in": [], "out": [ @@ -21311,7 +21221,7 @@ }, { "str": "'", - "token_id": 2457, + "token_id": 2449, "o_rev_id": 754869525, "in": [], "out": [ @@ -21320,7 +21230,7 @@ }, { "str": "'", - "token_id": 2458, + "token_id": 2450, "o_rev_id": 754869525, "in": [], "out": [ @@ -21329,7 +21239,7 @@ }, { "str": "donald", - "token_id": 2459, + "token_id": 2451, "o_rev_id": 754869525, "in": [], "out": [ @@ -21338,7 +21248,7 @@ }, { "str": "trump", - "token_id": 2460, + "token_id": 2452, "o_rev_id": 754869525, "in": [], "out": [ @@ -21347,7 +21257,7 @@ }, { "str": "'", - "token_id": 2461, + "token_id": 2453, "o_rev_id": 754869525, "in": [], "out": [ @@ -21356,7 +21266,7 @@ }, { "str": "'", - "token_id": 2462, + "token_id": 2454, "o_rev_id": 754869525, "in": [], "out": [ @@ -21365,7 +21275,7 @@ }, { "str": "'", - "token_id": 2463, + "token_id": 2455, "o_rev_id": 754869525, "in": [], "out": [ @@ -21374,7 +21284,7 @@ }, { "str": "=", - "token_id": 2464, + "token_id": 2456, "o_rev_id": 754869525, "in": [], "out": [ @@ -21383,7 +21293,7 @@ }, { "str": "=", - "token_id": 2465, + "token_id": 2457, "o_rev_id": 754869525, "in": [], "out": [ @@ -21392,7 +21302,7 @@ }, { "str": "=", - "token_id": 2466, + "token_id": 2458, "o_rev_id": 754869525, "in": [], "out": [ @@ -21401,7 +21311,7 @@ }, { "str": "although", - "token_id": 2467, + "token_id": 2459, "o_rev_id": 754869525, "in": [], "out": [ @@ -21410,7 +21320,7 @@ }, { "str": "the", - "token_id": 2468, + "token_id": 2460, "o_rev_id": 754869525, "in": [], "out": [ @@ -21419,7 +21329,7 @@ }, { "str": "majority", - "token_id": 2469, + "token_id": 2461, "o_rev_id": 754869525, "in": [], "out": [ @@ -21428,7 +21338,7 @@ }, { "str": "of", - "token_id": 2470, + "token_id": 2462, "o_rev_id": 754869525, "in": [], "out": [ @@ -21437,7 +21347,7 @@ }, { "str": "his", - "token_id": 2471, + "token_id": 2463, "o_rev_id": 754869525, "in": [], "out": [ @@ -21446,7 +21356,7 @@ }, { "str": "work", - "token_id": 2472, + "token_id": 2464, "o_rev_id": 754869525, "in": [], "out": [ @@ -21455,7 +21365,7 @@ }, { "str": "illustrates", - "token_id": 2473, + "token_id": 2465, "o_rev_id": 754869525, "in": [], "out": [ @@ -21464,7 +21374,7 @@ }, { "str": "lighthearted", - "token_id": 2474, + "token_id": 2466, "o_rev_id": 754869525, "in": [], "out": [ @@ -21473,7 +21383,7 @@ }, { "str": "images", - "token_id": 2475, + "token_id": 2467, "o_rev_id": 754869525, "in": [], "out": [ @@ -21482,7 +21392,7 @@ }, { "str": "that", - "token_id": 2476, + "token_id": 2468, "o_rev_id": 754869525, "in": [], "out": [ @@ -21491,7 +21401,7 @@ }, { "str": "poke", - "token_id": 2477, + "token_id": 2469, "o_rev_id": 754869525, "in": [], "out": [ @@ -21500,7 +21410,7 @@ }, { "str": "fun", - "token_id": 2478, + "token_id": 2470, "o_rev_id": 754869525, "in": [], "out": [ @@ -21509,7 +21419,7 @@ }, { "str": "at", - "token_id": 2479, + "token_id": 2471, "o_rev_id": 754869525, "in": [], "out": [ @@ -21518,7 +21428,7 @@ }, { "str": "celebrities", - "token_id": 2480, + "token_id": 2472, "o_rev_id": 754869525, "in": [], "out": [ @@ -21527,7 +21437,7 @@ }, { "str": ",", - "token_id": 2481, + "token_id": 2473, "o_rev_id": 754869525, "in": [], "out": [ @@ -21536,7 +21446,7 @@ }, { "str": "hanksy", - "token_id": 2482, + "token_id": 2474, "o_rev_id": 754869525, "in": [], "out": [ @@ -21545,7 +21455,7 @@ }, { "str": "branched", - "token_id": 2483, + "token_id": 2475, "o_rev_id": 754869525, "in": [], "out": [ @@ -21554,7 +21464,7 @@ }, { "str": "out", - "token_id": 2484, + "token_id": 2476, "o_rev_id": 754869525, "in": [], "out": [ @@ -21563,7 +21473,7 @@ }, { "str": "in", - "token_id": 2485, + "token_id": 2477, "o_rev_id": 754869525, "in": [], "out": [ @@ -21572,14 +21482,14 @@ }, { "str": "2015", - "token_id": 2486, + "token_id": 2478, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2487, + "token_id": 2479, "o_rev_id": 754869525, "in": [], "out": [ @@ -21588,7 +21498,7 @@ }, { "str": "include", - "token_id": 2488, + "token_id": 2480, "o_rev_id": 754869525, "in": [], "out": [ @@ -21597,7 +21507,7 @@ }, { "str": "themes", - "token_id": 2489, + "token_id": 2481, "o_rev_id": 754869525, "in": [], "out": [ @@ -21606,7 +21516,7 @@ }, { "str": "of", - "token_id": 2490, + "token_id": 2482, "o_rev_id": 754869525, "in": [], "out": [ @@ -21615,7 +21525,7 @@ }, { "str": "political", - "token_id": 2491, + "token_id": 2483, "o_rev_id": 754869525, "in": [], "out": [ @@ -21624,7 +21534,7 @@ }, { "str": "commentary", - "token_id": 2492, + "token_id": 2484, "o_rev_id": 754869525, "in": [], "out": [ @@ -21633,7 +21543,7 @@ }, { "str": "when", - "token_id": 2493, + "token_id": 2485, "o_rev_id": 754869525, "in": [], "out": [ @@ -21642,21 +21552,21 @@ }, { "str": "donald", - "token_id": 2494, + "token_id": 2486, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "trump", - "token_id": 2495, + "token_id": 2487, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "announced", - "token_id": 2496, + "token_id": 2488, "o_rev_id": 754869525, "in": [], "out": [ @@ -21665,7 +21575,7 @@ }, { "str": "his", - "token_id": 2497, + "token_id": 2489, "o_rev_id": 754869525, "in": [], "out": [ @@ -21674,7 +21584,7 @@ }, { "str": "intention", - "token_id": 2498, + "token_id": 2490, "o_rev_id": 754869525, "in": [], "out": [ @@ -21683,7 +21593,7 @@ }, { "str": "to", - "token_id": 2499, + "token_id": 2491, "o_rev_id": 754869525, "in": [], "out": [ @@ -21692,14 +21602,14 @@ }, { "str": ".", - "token_id": 2500, + "token_id": 2492, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "[[", - "token_id": 2501, + "token_id": 2493, "o_rev_id": 754869525, "in": [], "out": [ @@ -21708,7 +21618,7 @@ }, { "str": "hanksy", - "token_id": 2502, + "token_id": 2494, "o_rev_id": 754869525, "in": [], "out": [ @@ -21717,7 +21627,7 @@ }, { "str": "#", - "token_id": 2503, + "token_id": 2495, "o_rev_id": 754869525, "in": [], "out": [ @@ -21726,7 +21636,7 @@ }, { "str": "cite", - "token_id": 2504, + "token_id": 2496, "o_rev_id": 754869525, "in": [], "out": [ @@ -21735,7 +21645,7 @@ }, { "str": "note", - "token_id": 2505, + "token_id": 2497, "o_rev_id": 754869525, "in": [], "out": [ @@ -21744,7 +21654,7 @@ }, { "str": "-", - "token_id": 2506, + "token_id": 2498, "o_rev_id": 754869525, "in": [], "out": [ @@ -21753,7 +21663,7 @@ }, { "str": "3", - "token_id": 2507, + "token_id": 2499, "o_rev_id": 754869525, "in": [], "out": [ @@ -21762,7 +21672,7 @@ }, { "str": "|", - "token_id": 2508, + "token_id": 2500, "o_rev_id": 754869525, "in": [], "out": [ @@ -21771,7 +21681,7 @@ }, { "str": "sup", - "token_id": 2509, + "token_id": 2501, "o_rev_id": 754869525, "in": [], "out": [ @@ -21780,7 +21690,7 @@ }, { "str": "[", - "token_id": 2510, + "token_id": 2502, "o_rev_id": 754869525, "in": [], "out": [ @@ -21789,7 +21699,7 @@ }, { "str": "3", - "token_id": 2511, + "token_id": 2503, "o_rev_id": 754869525, "in": [], "out": [ @@ -21798,7 +21708,7 @@ }, { "str": "]", - "token_id": 2512, + "token_id": 2504, "o_rev_id": 754869525, "in": [], "out": [ @@ -21807,7 +21717,7 @@ }, { "str": "sup", - "token_id": 2513, + "token_id": 2505, "o_rev_id": 754869525, "in": [], "out": [ @@ -21816,7 +21726,7 @@ }, { "str": "]]", - "token_id": 2514, + "token_id": 2506, "o_rev_id": 754869525, "in": [], "out": [ @@ -21825,7 +21735,7 @@ }, { "str": "[[", - "token_id": 2515, + "token_id": 2507, "o_rev_id": 754869525, "in": [], "out": [ @@ -21834,7 +21744,7 @@ }, { "str": "hanksy", - "token_id": 2516, + "token_id": 2508, "o_rev_id": 754869525, "in": [], "out": [ @@ -21843,7 +21753,7 @@ }, { "str": "#", - "token_id": 2517, + "token_id": 2509, "o_rev_id": 754869525, "in": [], "out": [ @@ -21852,7 +21762,7 @@ }, { "str": "cite", - "token_id": 2518, + "token_id": 2510, "o_rev_id": 754869525, "in": [], "out": [ @@ -21861,7 +21771,7 @@ }, { "str": "note", - "token_id": 2519, + "token_id": 2511, "o_rev_id": 754869525, "in": [], "out": [ @@ -21870,7 +21780,7 @@ }, { "str": "-", - "token_id": 2520, + "token_id": 2512, "o_rev_id": 754869525, "in": [], "out": [ @@ -21879,7 +21789,7 @@ }, { "str": "4", - "token_id": 2521, + "token_id": 2513, "o_rev_id": 754869525, "in": [], "out": [ @@ -21888,7 +21798,7 @@ }, { "str": "|", - "token_id": 2522, + "token_id": 2514, "o_rev_id": 754869525, "in": [], "out": [ @@ -21897,7 +21807,7 @@ }, { "str": "<", - "token_id": 2523, + "token_id": 2515, "o_rev_id": 754869525, "in": [], "out": [ @@ -21906,7 +21816,7 @@ }, { "str": "sup", - "token_id": 2524, + "token_id": 2516, "o_rev_id": 754869525, "in": [], "out": [ @@ -21915,7 +21825,7 @@ }, { "str": ">", - "token_id": 2525, + "token_id": 2517, "o_rev_id": 754869525, "in": [], "out": [ @@ -21924,7 +21834,7 @@ }, { "str": "[", - "token_id": 2526, + "token_id": 2518, "o_rev_id": 754869525, "in": [], "out": [ @@ -21933,7 +21843,7 @@ }, { "str": "4", - "token_id": 2527, + "token_id": 2519, "o_rev_id": 754869525, "in": [], "out": [ @@ -21942,7 +21852,7 @@ }, { "str": "]", - "token_id": 2528, + "token_id": 2520, "o_rev_id": 754869525, "in": [], "out": [ @@ -21951,7 +21861,7 @@ }, { "str": "<", - "token_id": 2529, + "token_id": 2521, "o_rev_id": 754869525, "in": [], "out": [ @@ -21960,7 +21870,7 @@ }, { "str": "/", - "token_id": 2530, + "token_id": 2522, "o_rev_id": 754869525, "in": [], "out": [ @@ -21969,7 +21879,7 @@ }, { "str": "sup", - "token_id": 2531, + "token_id": 2523, "o_rev_id": 754869525, "in": [], "out": [ @@ -21978,7 +21888,7 @@ }, { "str": ">", - "token_id": 2532, + "token_id": 2524, "o_rev_id": 754869525, "in": [], "out": [ @@ -21987,7 +21897,7 @@ }, { "str": "]]", - "token_id": 2533, + "token_id": 2525, "o_rev_id": 754869525, "in": [], "out": [ @@ -21996,7 +21906,7 @@ }, { "str": "[[", - "token_id": 2534, + "token_id": 2526, "o_rev_id": 754869525, "in": [], "out": [ @@ -22005,7 +21915,7 @@ }, { "str": "hanksy", - "token_id": 2535, + "token_id": 2527, "o_rev_id": 754869525, "in": [], "out": [ @@ -22014,7 +21924,7 @@ }, { "str": "#", - "token_id": 2536, + "token_id": 2528, "o_rev_id": 754869525, "in": [], "out": [ @@ -22023,7 +21933,7 @@ }, { "str": "cite", - "token_id": 2537, + "token_id": 2529, "o_rev_id": 754869525, "in": [], "out": [ @@ -22032,7 +21942,7 @@ }, { "str": "note", - "token_id": 2538, + "token_id": 2530, "o_rev_id": 754869525, "in": [], "out": [ @@ -22041,7 +21951,7 @@ }, { "str": "-", - "token_id": 2539, + "token_id": 2531, "o_rev_id": 754869525, "in": [], "out": [ @@ -22050,7 +21960,7 @@ }, { "str": "5", - "token_id": 2540, + "token_id": 2532, "o_rev_id": 754869525, "in": [], "out": [ @@ -22059,7 +21969,7 @@ }, { "str": "|", - "token_id": 2541, + "token_id": 2533, "o_rev_id": 754869525, "in": [], "out": [ @@ -22068,7 +21978,7 @@ }, { "str": "<", - "token_id": 2542, + "token_id": 2534, "o_rev_id": 754869525, "in": [], "out": [ @@ -22077,7 +21987,7 @@ }, { "str": "sup", - "token_id": 2543, + "token_id": 2535, "o_rev_id": 754869525, "in": [], "out": [ @@ -22086,7 +21996,7 @@ }, { "str": ">", - "token_id": 2544, + "token_id": 2536, "o_rev_id": 754869525, "in": [], "out": [ @@ -22095,7 +22005,7 @@ }, { "str": "[", - "token_id": 2545, + "token_id": 2537, "o_rev_id": 754869525, "in": [], "out": [ @@ -22104,7 +22014,7 @@ }, { "str": "5", - "token_id": 2546, + "token_id": 2538, "o_rev_id": 754869525, "in": [], "out": [ @@ -22113,7 +22023,7 @@ }, { "str": "]", - "token_id": 2547, + "token_id": 2539, "o_rev_id": 754869525, "in": [], "out": [ @@ -22122,7 +22032,7 @@ }, { "str": "<", - "token_id": 2548, + "token_id": 2540, "o_rev_id": 754869525, "in": [], "out": [ @@ -22131,7 +22041,7 @@ }, { "str": "/", - "token_id": 2549, + "token_id": 2541, "o_rev_id": 754869525, "in": [], "out": [ @@ -22140,7 +22050,7 @@ }, { "str": "sup", - "token_id": 2550, + "token_id": 2542, "o_rev_id": 754869525, "in": [], "out": [ @@ -22149,7 +22059,7 @@ }, { "str": ">", - "token_id": 2551, + "token_id": 2543, "o_rev_id": 754869525, "in": [], "out": [ @@ -22158,7 +22068,7 @@ }, { "str": "]]", - "token_id": 2552, + "token_id": 2544, "o_rev_id": 754869525, "in": [], "out": [ @@ -22167,133 +22077,133 @@ }, { "str": "the", - "token_id": 2553, + "token_id": 2545, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "image", - "token_id": 2554, + "token_id": 2546, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "he", - "token_id": 2555, + "token_id": 2547, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "created", - "token_id": 2556, + "token_id": 2548, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "in", - "token_id": 2557, + "token_id": 2549, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "protest", - "token_id": 2558, + "token_id": 2550, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2559, + "token_id": 2551, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "dubbed", - "token_id": 2560, + "token_id": 2552, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2561, + "token_id": 2553, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2562, + "token_id": 2554, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "tronald", - "token_id": 2563, + "token_id": 2555, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "dump", - "token_id": 2564, + "token_id": 2556, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2565, + "token_id": 2557, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2566, + "token_id": 2558, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "by", - "token_id": 2567, + "token_id": 2559, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2568, + "token_id": 2560, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "huffington", - "token_id": 2569, + "token_id": 2561, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "post", - "token_id": 2570, + "token_id": 2562, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2571, + "token_id": 2563, "o_rev_id": 754869525, "in": [], "out": [ @@ -22302,7 +22212,7 @@ }, { "str": "depicts", - "token_id": 2572, + "token_id": 2564, "o_rev_id": 754869525, "in": [], "out": [ @@ -22311,63 +22221,63 @@ }, { "str": "the", - "token_id": 2573, + "token_id": 2565, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "then", - "token_id": 2574, + "token_id": 2566, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "with", - "token_id": 2575, + "token_id": 2567, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "flies", - "token_id": 2576, + "token_id": 2568, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "encircling", - "token_id": 2577, + "token_id": 2569, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "his", - "token_id": 2578, + "token_id": 2570, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "head", - "token_id": 2579, + "token_id": 2571, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2580, + "token_id": 2572, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "[[", - "token_id": 2581, + "token_id": 2573, "o_rev_id": 754869525, "in": [], "out": [ @@ -22376,7 +22286,7 @@ }, { "str": "hanksy", - "token_id": 2582, + "token_id": 2574, "o_rev_id": 754869525, "in": [], "out": [ @@ -22385,7 +22295,7 @@ }, { "str": "#", - "token_id": 2583, + "token_id": 2575, "o_rev_id": 754869525, "in": [], "out": [ @@ -22394,7 +22304,7 @@ }, { "str": "cite", - "token_id": 2584, + "token_id": 2576, "o_rev_id": 754869525, "in": [], "out": [ @@ -22403,7 +22313,7 @@ }, { "str": "note", - "token_id": 2585, + "token_id": 2577, "o_rev_id": 754869525, "in": [], "out": [ @@ -22412,14 +22322,14 @@ }, { "str": "-", - "token_id": 2586, + "token_id": 2578, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "huffpo", - "token_id": 2587, + "token_id": 2579, "o_rev_id": 754869525, "in": [], "out": [ @@ -22428,14 +22338,14 @@ }, { "str": "-", - "token_id": 2588, + "token_id": 2580, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "8", - "token_id": 2589, + "token_id": 2581, "o_rev_id": 754869525, "in": [], "out": [ @@ -22444,7 +22354,7 @@ }, { "str": "|", - "token_id": 2590, + "token_id": 2582, "o_rev_id": 754869525, "in": [], "out": [ @@ -22453,7 +22363,7 @@ }, { "str": "<", - "token_id": 2591, + "token_id": 2583, "o_rev_id": 754869525, "in": [], "out": [ @@ -22462,7 +22372,7 @@ }, { "str": "sup", - "token_id": 2592, + "token_id": 2584, "o_rev_id": 754869525, "in": [], "out": [ @@ -22471,7 +22381,7 @@ }, { "str": ">", - "token_id": 2593, + "token_id": 2585, "o_rev_id": 754869525, "in": [], "out": [ @@ -22480,7 +22390,7 @@ }, { "str": "[", - "token_id": 2594, + "token_id": 2586, "o_rev_id": 754869525, "in": [], "out": [ @@ -22489,7 +22399,7 @@ }, { "str": "8", - "token_id": 2595, + "token_id": 2587, "o_rev_id": 754869525, "in": [], "out": [ @@ -22498,7 +22408,7 @@ }, { "str": "]", - "token_id": 2596, + "token_id": 2588, "o_rev_id": 754869525, "in": [], "out": [ @@ -22507,21 +22417,21 @@ }, { "str": "<", - "token_id": 2597, + "token_id": 2589, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2598, + "token_id": 2590, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "sup", - "token_id": 2599, + "token_id": 2591, "o_rev_id": 754869525, "in": [], "out": [ @@ -22530,14 +22440,14 @@ }, { "str": ">", - "token_id": 2600, + "token_id": 2592, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "]]", - "token_id": 2601, + "token_id": 2593, "o_rev_id": 754869525, "in": [], "out": [ @@ -22546,7 +22456,7 @@ }, { "str": "[[", - "token_id": 2602, + "token_id": 2594, "o_rev_id": 754869525, "in": [], "out": [ @@ -22555,7 +22465,7 @@ }, { "str": "hanksy", - "token_id": 2603, + "token_id": 2595, "o_rev_id": 754869525, "in": [], "out": [ @@ -22564,7 +22474,7 @@ }, { "str": "#", - "token_id": 2604, + "token_id": 2596, "o_rev_id": 754869525, "in": [], "out": [ @@ -22573,14 +22483,14 @@ }, { "str": "cite", - "token_id": 2605, + "token_id": 2597, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "note", - "token_id": 2606, + "token_id": 2598, "o_rev_id": 754869525, "in": [], "out": [ @@ -22589,14 +22499,14 @@ }, { "str": "-", - "token_id": 2607, + "token_id": 2599, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "dailynews", - "token_id": 2608, + "token_id": 2600, "o_rev_id": 754869525, "in": [], "out": [ @@ -22605,14 +22515,14 @@ }, { "str": "-", - "token_id": 2609, + "token_id": 2601, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "9", - "token_id": 2610, + "token_id": 2602, "o_rev_id": 754869525, "in": [], "out": [ @@ -22621,7 +22531,7 @@ }, { "str": "|", - "token_id": 2611, + "token_id": 2603, "o_rev_id": 754869525, "in": [], "out": [ @@ -22630,7 +22540,7 @@ }, { "str": "<", - "token_id": 2612, + "token_id": 2604, "o_rev_id": 754869525, "in": [], "out": [ @@ -22639,7 +22549,7 @@ }, { "str": "sup", - "token_id": 2613, + "token_id": 2605, "o_rev_id": 754869525, "in": [], "out": [ @@ -22648,7 +22558,7 @@ }, { "str": ">", - "token_id": 2614, + "token_id": 2606, "o_rev_id": 754869525, "in": [], "out": [ @@ -22657,7 +22567,7 @@ }, { "str": "[", - "token_id": 2615, + "token_id": 2607, "o_rev_id": 754869525, "in": [], "out": [ @@ -22666,7 +22576,7 @@ }, { "str": "9", - "token_id": 2616, + "token_id": 2608, "o_rev_id": 754869525, "in": [], "out": [ @@ -22675,7 +22585,7 @@ }, { "str": "]", - "token_id": 2617, + "token_id": 2609, "o_rev_id": 754869525, "in": [], "out": [ @@ -22684,21 +22594,21 @@ }, { "str": "<", - "token_id": 2618, + "token_id": 2610, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2619, + "token_id": 2611, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "sup", - "token_id": 2620, + "token_id": 2612, "o_rev_id": 754869525, "in": [], "out": [ @@ -22707,14 +22617,14 @@ }, { "str": ">", - "token_id": 2621, + "token_id": 2613, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "]]", - "token_id": 2622, + "token_id": 2614, "o_rev_id": 754869525, "in": [], "out": [ @@ -22723,7 +22633,7 @@ }, { "str": "[[", - "token_id": 2623, + "token_id": 2615, "o_rev_id": 754869525, "in": [], "out": [ @@ -22732,14 +22642,14 @@ }, { "str": "hanksy", - "token_id": 2624, + "token_id": 2616, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "#", - "token_id": 2625, + "token_id": 2617, "o_rev_id": 754869525, "in": [], "out": [ @@ -22748,7 +22658,7 @@ }, { "str": "cite", - "token_id": 2626, + "token_id": 2618, "o_rev_id": 754869525, "in": [], "out": [ @@ -22757,7 +22667,7 @@ }, { "str": "note", - "token_id": 2627, + "token_id": 2619, "o_rev_id": 754869525, "in": [], "out": [ @@ -22766,14 +22676,14 @@ }, { "str": "-", - "token_id": 2628, + "token_id": 2620, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "gothamist", - "token_id": 2629, + "token_id": 2621, "o_rev_id": 754869525, "in": [], "out": [ @@ -22782,14 +22692,14 @@ }, { "str": "-", - "token_id": 2630, + "token_id": 2622, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "10", - "token_id": 2631, + "token_id": 2623, "o_rev_id": 754869525, "in": [], "out": [ @@ -22798,7 +22708,7 @@ }, { "str": "|", - "token_id": 2632, + "token_id": 2624, "o_rev_id": 754869525, "in": [], "out": [ @@ -22807,7 +22717,7 @@ }, { "str": "<", - "token_id": 2633, + "token_id": 2625, "o_rev_id": 754869525, "in": [], "out": [ @@ -22816,7 +22726,7 @@ }, { "str": "sup", - "token_id": 2634, + "token_id": 2626, "o_rev_id": 754869525, "in": [], "out": [ @@ -22825,7 +22735,7 @@ }, { "str": ">", - "token_id": 2635, + "token_id": 2627, "o_rev_id": 754869525, "in": [], "out": [ @@ -22834,7 +22744,7 @@ }, { "str": "[", - "token_id": 2636, + "token_id": 2628, "o_rev_id": 754869525, "in": [], "out": [ @@ -22843,7 +22753,7 @@ }, { "str": "10", - "token_id": 2637, + "token_id": 2629, "o_rev_id": 754869525, "in": [], "out": [ @@ -22852,7 +22762,7 @@ }, { "str": "]", - "token_id": 2638, + "token_id": 2630, "o_rev_id": 754869525, "in": [], "out": [ @@ -22861,21 +22771,21 @@ }, { "str": "<", - "token_id": 2639, + "token_id": 2631, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2640, + "token_id": 2632, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "sup", - "token_id": 2641, + "token_id": 2633, "o_rev_id": 754869525, "in": [], "out": [ @@ -22884,14 +22794,14 @@ }, { "str": ">", - "token_id": 2642, + "token_id": 2634, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "]]", - "token_id": 2643, + "token_id": 2635, "o_rev_id": 754869525, "in": [], "out": [ @@ -22900,7 +22810,7 @@ }, { "str": "[[", - "token_id": 2644, + "token_id": 2636, "o_rev_id": 754869525, "in": [], "out": [ @@ -22909,7 +22819,7 @@ }, { "str": "hanksy", - "token_id": 2645, + "token_id": 2637, "o_rev_id": 754869525, "in": [], "out": [ @@ -22918,7 +22828,7 @@ }, { "str": "#", - "token_id": 2646, + "token_id": 2638, "o_rev_id": 754869525, "in": [], "out": [ @@ -22927,7 +22837,7 @@ }, { "str": "cite", - "token_id": 2647, + "token_id": 2639, "o_rev_id": 754869525, "in": [], "out": [ @@ -22936,7 +22846,7 @@ }, { "str": "note", - "token_id": 2648, + "token_id": 2640, "o_rev_id": 754869525, "in": [], "out": [ @@ -22945,7 +22855,7 @@ }, { "str": "-", - "token_id": 2649, + "token_id": 2641, "o_rev_id": 754869525, "in": [], "out": [ @@ -22954,7 +22864,7 @@ }, { "str": "cbs", - "token_id": 2650, + "token_id": 2642, "o_rev_id": 754869525, "in": [], "out": [ @@ -22963,7 +22873,7 @@ }, { "str": "-", - "token_id": 2651, + "token_id": 2643, "o_rev_id": 754869525, "in": [], "out": [ @@ -22972,7 +22882,7 @@ }, { "str": "11", - "token_id": 2652, + "token_id": 2644, "o_rev_id": 754869525, "in": [], "out": [ @@ -22981,7 +22891,7 @@ }, { "str": "|", - "token_id": 2653, + "token_id": 2645, "o_rev_id": 754869525, "in": [], "out": [ @@ -22990,7 +22900,7 @@ }, { "str": "<", - "token_id": 2654, + "token_id": 2646, "o_rev_id": 754869525, "in": [], "out": [ @@ -22999,7 +22909,7 @@ }, { "str": "sup", - "token_id": 2655, + "token_id": 2647, "o_rev_id": 754869525, "in": [], "out": [ @@ -23008,7 +22918,7 @@ }, { "str": ">", - "token_id": 2656, + "token_id": 2648, "o_rev_id": 754869525, "in": [], "out": [ @@ -23017,7 +22927,7 @@ }, { "str": "[", - "token_id": 2657, + "token_id": 2649, "o_rev_id": 754869525, "in": [], "out": [ @@ -23026,7 +22936,7 @@ }, { "str": "11", - "token_id": 2658, + "token_id": 2650, "o_rev_id": 754869525, "in": [], "out": [ @@ -23035,7 +22945,7 @@ }, { "str": "]", - "token_id": 2659, + "token_id": 2651, "o_rev_id": 754869525, "in": [], "out": [ @@ -23044,7 +22954,7 @@ }, { "str": "<", - "token_id": 2660, + "token_id": 2652, "o_rev_id": 754869525, "in": [], "out": [ @@ -23053,7 +22963,7 @@ }, { "str": "/", - "token_id": 2661, + "token_id": 2653, "o_rev_id": 754869525, "in": [], "out": [ @@ -23062,7 +22972,7 @@ }, { "str": "sup", - "token_id": 2662, + "token_id": 2654, "o_rev_id": 754869525, "in": [], "out": [ @@ -23071,7 +22981,7 @@ }, { "str": ">", - "token_id": 2663, + "token_id": 2655, "o_rev_id": 754869525, "in": [], "out": [ @@ -23080,7 +22990,7 @@ }, { "str": "]]", - "token_id": 2664, + "token_id": 2656, "o_rev_id": 754869525, "in": [], "out": [ @@ -23089,7 +22999,7 @@ }, { "str": "[[", - "token_id": 2665, + "token_id": 2657, "o_rev_id": 754869525, "in": [], "out": [ @@ -23098,7 +23008,7 @@ }, { "str": "hanksy", - "token_id": 2666, + "token_id": 2658, "o_rev_id": 754869525, "in": [], "out": [ @@ -23107,7 +23017,7 @@ }, { "str": "#", - "token_id": 2667, + "token_id": 2659, "o_rev_id": 754869525, "in": [], "out": [ @@ -23116,7 +23026,7 @@ }, { "str": "cite", - "token_id": 2668, + "token_id": 2660, "o_rev_id": 754869525, "in": [], "out": [ @@ -23125,7 +23035,7 @@ }, { "str": "note", - "token_id": 2669, + "token_id": 2661, "o_rev_id": 754869525, "in": [], "out": [ @@ -23134,7 +23044,7 @@ }, { "str": "-", - "token_id": 2670, + "token_id": 2662, "o_rev_id": 754869525, "in": [], "out": [ @@ -23143,7 +23053,7 @@ }, { "str": "artnet", - "token_id": 2671, + "token_id": 2663, "o_rev_id": 754869525, "in": [], "out": [ @@ -23152,7 +23062,7 @@ }, { "str": "-", - "token_id": 2672, + "token_id": 2664, "o_rev_id": 754869525, "in": [], "out": [ @@ -23161,7 +23071,7 @@ }, { "str": "12", - "token_id": 2673, + "token_id": 2665, "o_rev_id": 754869525, "in": [], "out": [ @@ -23170,7 +23080,7 @@ }, { "str": "|", - "token_id": 2674, + "token_id": 2666, "o_rev_id": 754869525, "in": [], "out": [ @@ -23179,7 +23089,7 @@ }, { "str": "<", - "token_id": 2675, + "token_id": 2667, "o_rev_id": 754869525, "in": [], "out": [ @@ -23188,7 +23098,7 @@ }, { "str": "sup", - "token_id": 2676, + "token_id": 2668, "o_rev_id": 754869525, "in": [], "out": [ @@ -23197,7 +23107,7 @@ }, { "str": ">", - "token_id": 2677, + "token_id": 2669, "o_rev_id": 754869525, "in": [], "out": [ @@ -23206,7 +23116,7 @@ }, { "str": "[", - "token_id": 2678, + "token_id": 2670, "o_rev_id": 754869525, "in": [], "out": [ @@ -23215,7 +23125,7 @@ }, { "str": "12", - "token_id": 2679, + "token_id": 2671, "o_rev_id": 754869525, "in": [], "out": [ @@ -23224,7 +23134,7 @@ }, { "str": "]", - "token_id": 2680, + "token_id": 2672, "o_rev_id": 754869525, "in": [], "out": [ @@ -23233,7 +23143,7 @@ }, { "str": "<", - "token_id": 2681, + "token_id": 2673, "o_rev_id": 754869525, "in": [], "out": [ @@ -23242,7 +23152,7 @@ }, { "str": "/", - "token_id": 2682, + "token_id": 2674, "o_rev_id": 754869525, "in": [], "out": [ @@ -23251,7 +23161,7 @@ }, { "str": "sup", - "token_id": 2683, + "token_id": 2675, "o_rev_id": 754869525, "in": [], "out": [ @@ -23260,7 +23170,7 @@ }, { "str": ">", - "token_id": 2684, + "token_id": 2676, "o_rev_id": 754869525, "in": [], "out": [ @@ -23269,7 +23179,7 @@ }, { "str": "]]", - "token_id": 2685, + "token_id": 2677, "o_rev_id": 754869525, "in": [], "out": [ @@ -23278,21 +23188,21 @@ }, { "str": "=", - "token_id": 2686, + "token_id": 2678, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2687, + "token_id": 2679, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2688, + "token_id": 2680, "o_rev_id": 754869525, "in": [ 754870604 @@ -23304,7 +23214,7 @@ }, { "str": "'", - "token_id": 2689, + "token_id": 2681, "o_rev_id": 754869525, "in": [ 754870604 @@ -23316,7 +23226,7 @@ }, { "str": "'", - "token_id": 2690, + "token_id": 2682, "o_rev_id": 754869525, "in": [ 754870604 @@ -23328,14 +23238,14 @@ }, { "str": "installations", - "token_id": 2691, + "token_id": 2683, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2692, + "token_id": 2684, "o_rev_id": 754869525, "in": [ 754870604 @@ -23347,7 +23257,7 @@ }, { "str": "'", - "token_id": 2693, + "token_id": 2685, "o_rev_id": 754869525, "in": [ 754870604 @@ -23359,7 +23269,7 @@ }, { "str": "'", - "token_id": 2694, + "token_id": 2686, "o_rev_id": 754869525, "in": [ 754870604 @@ -23371,14 +23281,14 @@ }, { "str": "=", - "token_id": 2695, + "token_id": 2687, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2696, + "token_id": 2688, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23389,126 +23299,126 @@ }, { "str": "in", - "token_id": 2697, + "token_id": 2689, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "addition", - "token_id": 2698, + "token_id": 2690, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2699, + "token_id": 2691, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "his", - "token_id": 2700, + "token_id": 2692, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "street", - "token_id": 2701, + "token_id": 2693, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "and", - "token_id": 2702, + "token_id": 2694, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "canvas", - "token_id": 2703, + "token_id": 2695, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "art", - "token_id": 2704, + "token_id": 2696, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2705, + "token_id": 2697, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "created", - "token_id": 2706, + "token_id": 2698, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "several", - "token_id": 2707, + "token_id": 2699, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "interactive", - "token_id": 2708, + "token_id": 2700, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "installations", - "token_id": 2709, + "token_id": 2701, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "meant", - "token_id": 2710, + "token_id": 2702, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2711, + "token_id": 2703, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "engage", - "token_id": 2712, + "token_id": 2704, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "his", - "token_id": 2713, + "token_id": 2705, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "audience", - "token_id": 2714, + "token_id": 2706, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23519,7 +23429,7 @@ }, { "str": "in", - "token_id": 2715, + "token_id": 2707, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23530,7 +23440,7 @@ }, { "str": "innovative", - "token_id": 2716, + "token_id": 2708, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23541,7 +23451,7 @@ }, { "str": "participatory", - "token_id": 2717, + "token_id": 2709, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23552,7 +23462,7 @@ }, { "str": "ways", - "token_id": 2718, + "token_id": 2710, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23563,7 +23473,7 @@ }, { "str": ".", - "token_id": 2719, + "token_id": 2711, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23574,7 +23484,7 @@ }, { "str": "=", - "token_id": 2720, + "token_id": 2712, "o_rev_id": 754869525, "in": [], "out": [ @@ -23583,7 +23493,7 @@ }, { "str": "=", - "token_id": 2721, + "token_id": 2713, "o_rev_id": 754869525, "in": [], "out": [ @@ -23592,7 +23502,7 @@ }, { "str": "=", - "token_id": 2722, + "token_id": 2714, "o_rev_id": 754869525, "in": [], "out": [ @@ -23601,7 +23511,7 @@ }, { "str": "'", - "token_id": 2723, + "token_id": 2715, "o_rev_id": 754869525, "in": [], "out": [ @@ -23610,7 +23520,7 @@ }, { "str": "'", - "token_id": 2724, + "token_id": 2716, "o_rev_id": 754869525, "in": [], "out": [ @@ -23619,7 +23529,7 @@ }, { "str": "'", - "token_id": 2725, + "token_id": 2717, "o_rev_id": 754869525, "in": [], "out": [ @@ -23628,7 +23538,7 @@ }, { "str": "best", - "token_id": 2726, + "token_id": 2718, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23639,7 +23549,7 @@ }, { "str": "of", - "token_id": 2727, + "token_id": 2719, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23650,7 +23560,7 @@ }, { "str": "the", - "token_id": 2728, + "token_id": 2720, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23661,7 +23571,7 @@ }, { "str": "worst", - "token_id": 2729, + "token_id": 2721, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23672,7 +23582,7 @@ }, { "str": "(", - "token_id": 2730, + "token_id": 2722, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23683,7 +23593,7 @@ }, { "str": "2014", - "token_id": 2731, + "token_id": 2723, "o_rev_id": 754869525, "in": [], "out": [ @@ -23692,7 +23602,7 @@ }, { "str": ")", - "token_id": 2732, + "token_id": 2724, "o_rev_id": 754869525, "in": [ 1163557612 @@ -23703,7 +23613,7 @@ }, { "str": "'", - "token_id": 2733, + "token_id": 2725, "o_rev_id": 754869525, "in": [], "out": [ @@ -23712,7 +23622,7 @@ }, { "str": "'", - "token_id": 2734, + "token_id": 2726, "o_rev_id": 754869525, "in": [], "out": [ @@ -23721,7 +23631,7 @@ }, { "str": "'", - "token_id": 2735, + "token_id": 2727, "o_rev_id": 754869525, "in": [], "out": [ @@ -23730,7 +23640,7 @@ }, { "str": "=", - "token_id": 2736, + "token_id": 2728, "o_rev_id": 754869525, "in": [], "out": [ @@ -23739,7 +23649,7 @@ }, { "str": "=", - "token_id": 2737, + "token_id": 2729, "o_rev_id": 754869525, "in": [], "out": [ @@ -23748,7 +23658,7 @@ }, { "str": "=", - "token_id": 2738, + "token_id": 2730, "o_rev_id": 754869525, "in": [], "out": [ @@ -23757,14 +23667,14 @@ }, { "str": "in", - "token_id": 2739, + "token_id": 2731, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "2014", - "token_id": 2740, + "token_id": 2732, "o_rev_id": 754869525, "in": [], "out": [ @@ -23773,238 +23683,238 @@ }, { "str": ",", - "token_id": 2741, + "token_id": 2733, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2742, + "token_id": 2734, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "mounted", - "token_id": 2743, + "token_id": 2735, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "an", - "token_id": 2744, + "token_id": 2736, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "interactive", - "token_id": 2745, + "token_id": 2737, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 2746, + "token_id": 2738, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "entitled", - "token_id": 2747, + "token_id": 2739, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2748, + "token_id": 2740, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2749, + "token_id": 2741, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "best", - "token_id": 2750, + "token_id": 2742, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2751, + "token_id": 2743, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2752, + "token_id": 2744, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "worst", - "token_id": 2753, + "token_id": 2745, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2754, + "token_id": 2746, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2755, + "token_id": 2747, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "that", - "token_id": 2756, + "token_id": 2748, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "featured", - "token_id": 2757, + "token_id": 2749, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "some", - "token_id": 2758, + "token_id": 2750, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2759, + "token_id": 2751, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "pun", - "token_id": 2760, + "token_id": 2752, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "pieces", - "token_id": 2761, + "token_id": 2753, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2762, + "token_id": 2754, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "including", - "token_id": 2763, + "token_id": 2755, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "portraits", - "token_id": 2764, + "token_id": 2756, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2765, + "token_id": 2757, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "bill", - "token_id": 2766, + "token_id": 2758, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "murrito", - "token_id": 2767, + "token_id": 2759, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2768, + "token_id": 2760, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hamuel", - "token_id": 2769, + "token_id": 2761, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "l", - "token_id": 2770, + "token_id": 2762, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "jackson", - "token_id": 2771, + "token_id": 2763, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "kanye", - "token_id": 2772, + "token_id": 2764, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "brest", - "token_id": 2773, + "token_id": 2765, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "traylor", - "token_id": 2774, + "token_id": 2766, "o_rev_id": 754869525, "in": [ 754871338 @@ -24015,91 +23925,91 @@ }, { "str": "swift", - "token_id": 2775, + "token_id": 2767, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2776, + "token_id": 2768, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "pikajew", - "token_id": 2777, + "token_id": 2769, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2778, + "token_id": 2770, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "drak", - "token_id": 2779, + "token_id": 2771, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2780, + "token_id": 2772, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "o", - "token_id": 2781, + "token_id": 2773, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "malfoy", - "token_id": 2782, + "token_id": 2774, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "and", - "token_id": 2783, + "token_id": 2775, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "mile", - "token_id": 2784, + "token_id": 2776, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "e", - "token_id": 2785, + "token_id": 2777, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "coyote", - "token_id": 2786, + "token_id": 2778, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "nowiki", - "token_id": 2787, + "token_id": 2779, "o_rev_id": 754869525, "in": [], "out": [ @@ -24108,63 +24018,63 @@ }, { "str": "2015", - "token_id": 2788, + "token_id": 2780, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "03", - "token_id": 2789, + "token_id": 2781, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "29", - "token_id": 2790, + "token_id": 2782, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2791, + "token_id": 2783, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "best", - "token_id": 2792, + "token_id": 2784, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2793, + "token_id": 2785, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2794, + "token_id": 2786, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "worst", - "token_id": 2795, + "token_id": 2787, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "#", - "token_id": 2796, + "token_id": 2788, "o_rev_id": 754869525, "in": [], "out": [ @@ -24173,7 +24083,7 @@ }, { "str": "photo", - "token_id": 2797, + "token_id": 2789, "o_rev_id": 754869525, "in": [], "out": [ @@ -24182,7 +24092,7 @@ }, { "str": "-", - "token_id": 2798, + "token_id": 2790, "o_rev_id": 754869525, "in": [], "out": [ @@ -24191,7 +24101,7 @@ }, { "str": "1", - "token_id": 2799, + "token_id": 2791, "o_rev_id": 754869525, "in": [], "out": [ @@ -24200,7 +24110,7 @@ }, { "str": "<", - "token_id": 2800, + "token_id": 2792, "o_rev_id": 754869525, "in": [], "out": [ @@ -24209,7 +24119,7 @@ }, { "str": "/", - "token_id": 2801, + "token_id": 2793, "o_rev_id": 754869525, "in": [], "out": [ @@ -24218,7 +24128,7 @@ }, { "str": "nowiki", - "token_id": 2802, + "token_id": 2794, "o_rev_id": 754869525, "in": [], "out": [ @@ -24227,7 +24137,7 @@ }, { "str": ">", - "token_id": 2803, + "token_id": 2795, "o_rev_id": 754869525, "in": [], "out": [ @@ -24236,175 +24146,175 @@ }, { "str": "in", - "token_id": 2804, + "token_id": 2796, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "addition", - "token_id": 2805, + "token_id": 2797, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2806, + "token_id": 2798, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "exhibiting", - "token_id": 2807, + "token_id": 2799, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "his", - "token_id": 2808, + "token_id": 2800, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "own", - "token_id": 2809, + "token_id": 2801, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "work", - "token_id": 2810, + "token_id": 2802, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2811, + "token_id": 2803, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2812, + "token_id": 2804, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "showcased", - "token_id": 2813, + "token_id": 2805, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "pieces", - "token_id": 2814, + "token_id": 2806, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "by", - "token_id": 2815, + "token_id": 2807, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "fellow", - "token_id": 2816, + "token_id": 2808, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "street", - "token_id": 2817, + "token_id": 2809, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "artists", - "token_id": 2818, + "token_id": 2810, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2819, + "token_id": 2811, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "built", - "token_id": 2820, + "token_id": 2812, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "a", - "token_id": 2821, + "token_id": 2813, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "functional", - "token_id": 2822, + "token_id": 2814, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "skateboarding", - "token_id": 2823, + "token_id": 2815, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "ramp", - "token_id": 2824, + "token_id": 2816, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2825, + "token_id": 2817, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "included", - "token_id": 2826, + "token_id": 2818, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "a", - "token_id": 2827, + "token_id": 2819, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "photobooth", - "token_id": 2828, + "token_id": 2820, "o_rev_id": 754869525, "in": [ 754871338 @@ -24416,154 +24326,154 @@ }, { "str": ",", - "token_id": 2829, + "token_id": 2821, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "arcade", - "token_id": 2830, + "token_id": 2822, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "games", - "token_id": 2831, + "token_id": 2823, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2832, + "token_id": 2824, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "balloon", - "token_id": 2833, + "token_id": 2825, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "artist", - "token_id": 2834, + "token_id": 2826, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "and", - "token_id": 2835, + "token_id": 2827, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "a", - "token_id": 2836, + "token_id": 2828, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "live", - "token_id": 2837, + "token_id": 2829, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2838, + "token_id": 2830, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "dj", - "token_id": 2839, + "token_id": 2831, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2840, + "token_id": 2832, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "<", - "token_id": 2841, + "token_id": 2833, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "ref", - "token_id": 2842, + "token_id": 2834, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ">", - "token_id": 2843, + "token_id": 2835, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "{{", - "token_id": 2844, + "token_id": 2836, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "cite", - "token_id": 2845, + "token_id": 2837, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "news", - "token_id": 2846, + "token_id": 2838, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 2847, + "token_id": 2839, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "url", - "token_id": 2848, + "token_id": 2840, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2849, + "token_id": 2841, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "http", - "token_id": 2850, + "token_id": 2842, "o_rev_id": 754869525, "in": [], "out": [ @@ -24572,21 +24482,21 @@ }, { "str": ":", - "token_id": 2851, + "token_id": 2843, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2852, + "token_id": 2844, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 2853, + "token_id": 2845, "o_rev_id": 754869525, "in": [], "out": [ @@ -24595,7 +24505,7 @@ }, { "str": ".", - "token_id": 2854, + "token_id": 2846, "o_rev_id": 754869525, "in": [], "out": [ @@ -24604,7 +24514,7 @@ }, { "str": "com", - "token_id": 2855, + "token_id": 2847, "o_rev_id": 754869525, "in": [], "out": [ @@ -24613,7 +24523,7 @@ }, { "str": "/", - "token_id": 2856, + "token_id": 2848, "o_rev_id": 754869525, "in": [], "out": [ @@ -24622,7 +24532,7 @@ }, { "str": "/", - "token_id": 2857, + "token_id": 2849, "o_rev_id": 754869525, "in": [], "out": [ @@ -24631,7 +24541,7 @@ }, { "str": "03", - "token_id": 2858, + "token_id": 2850, "o_rev_id": 754869525, "in": [], "out": [ @@ -24640,7 +24550,7 @@ }, { "str": "/", - "token_id": 2859, + "token_id": 2851, "o_rev_id": 754869525, "in": [], "out": [ @@ -24649,7 +24559,7 @@ }, { "str": "29", - "token_id": 2860, + "token_id": 2852, "o_rev_id": 754869525, "in": [], "out": [ @@ -24658,7 +24568,7 @@ }, { "str": "/", - "token_id": 2861, + "token_id": 2853, "o_rev_id": 754869525, "in": [], "out": [ @@ -24667,7 +24577,7 @@ }, { "str": "hanksy", - "token_id": 2862, + "token_id": 2854, "o_rev_id": 754869525, "in": [], "out": [ @@ -24676,7 +24586,7 @@ }, { "str": "_", - "token_id": 2863, + "token_id": 2855, "o_rev_id": 754869525, "in": [], "out": [ @@ -24685,7 +24595,7 @@ }, { "str": "best", - "token_id": 2864, + "token_id": 2856, "o_rev_id": 754869525, "in": [], "out": [ @@ -24694,7 +24604,7 @@ }, { "str": "_", - "token_id": 2865, + "token_id": 2857, "o_rev_id": 754869525, "in": [], "out": [ @@ -24703,7 +24613,7 @@ }, { "str": "of", - "token_id": 2866, + "token_id": 2858, "o_rev_id": 754869525, "in": [], "out": [ @@ -24712,7 +24622,7 @@ }, { "str": "_", - "token_id": 2867, + "token_id": 2859, "o_rev_id": 754869525, "in": [], "out": [ @@ -24721,7 +24631,7 @@ }, { "str": "the", - "token_id": 2868, + "token_id": 2860, "o_rev_id": 754869525, "in": [], "out": [ @@ -24730,7 +24640,7 @@ }, { "str": "_", - "token_id": 2869, + "token_id": 2861, "o_rev_id": 754869525, "in": [], "out": [ @@ -24739,7 +24649,7 @@ }, { "str": "worst", - "token_id": 2870, + "token_id": 2862, "o_rev_id": 754869525, "in": [], "out": [ @@ -24748,7 +24658,7 @@ }, { "str": ".", - "token_id": 2871, + "token_id": 2863, "o_rev_id": 754869525, "in": [], "out": [ @@ -24757,7 +24667,7 @@ }, { "str": "php", - "token_id": 2872, + "token_id": 2864, "o_rev_id": 754869525, "in": [], "out": [ @@ -24766,7 +24676,7 @@ }, { "str": "#", - "token_id": 2873, + "token_id": 2865, "o_rev_id": 754869525, "in": [], "out": [ @@ -24775,7 +24685,7 @@ }, { "str": "photo", - "token_id": 2874, + "token_id": 2866, "o_rev_id": 754869525, "in": [], "out": [ @@ -24784,7 +24694,7 @@ }, { "str": "1", - "token_id": 2875, + "token_id": 2867, "o_rev_id": 754869525, "in": [], "out": [ @@ -24793,7 +24703,7 @@ }, { "str": "|", - "token_id": 2876, + "token_id": 2868, "o_rev_id": 754869525, "in": [], "out": [ @@ -24802,462 +24712,462 @@ }, { "str": "title", - "token_id": 2877, + "token_id": 2869, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2878, + "token_id": 2870, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2879, + "token_id": 2871, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "brings", - "token_id": 2880, + "token_id": 2872, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "his", - "token_id": 2881, + "token_id": 2873, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "\"", - "token_id": 2882, + "token_id": 2874, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "best", - "token_id": 2883, + "token_id": 2875, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2884, + "token_id": 2876, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2885, + "token_id": 2877, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "worst", - "token_id": 2886, + "token_id": 2878, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "\"", - "token_id": 2887, + "token_id": 2879, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2888, + "token_id": 2880, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "old", - "token_id": 2889, + "token_id": 2881, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "les", - "token_id": 2890, + "token_id": 2882, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "chase", - "token_id": 2891, + "token_id": 2883, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "bank", - "token_id": 2892, + "token_id": 2884, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 2893, + "token_id": 2885, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "newspaper", - "token_id": 2894, + "token_id": 2886, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2895, + "token_id": 2887, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "gothamist", - "token_id": 2896, + "token_id": 2888, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 2897, + "token_id": 2889, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "language", - "token_id": 2898, + "token_id": 2890, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2899, + "token_id": 2891, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "en", - "token_id": 2900, + "token_id": 2892, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "us", - "token_id": 2901, + "token_id": 2893, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 2902, + "token_id": 2894, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "access", - "token_id": 2903, + "token_id": 2895, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2904, + "token_id": 2896, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "date", - "token_id": 2905, + "token_id": 2897, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 2906, + "token_id": 2898, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "2016", - "token_id": 2907, + "token_id": 2899, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2908, + "token_id": 2900, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "12", - "token_id": 2909, + "token_id": 2901, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 2910, + "token_id": 2902, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "14", - "token_id": 2911, + "token_id": 2903, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "}}", - "token_id": 2912, + "token_id": 2904, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2913, + "token_id": 2905, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "generate", - "token_id": 2914, + "token_id": 2906, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "awareness", - "token_id": 2915, + "token_id": 2907, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2916, + "token_id": 2908, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2917, + "token_id": 2909, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 2918, + "token_id": 2910, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "and", - "token_id": 2919, + "token_id": 2911, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "active", - "token_id": 2920, + "token_id": 2912, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "interest", - "token_id": 2921, + "token_id": 2913, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "in", - "token_id": 2922, + "token_id": 2914, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "attending", - "token_id": 2923, + "token_id": 2915, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2924, + "token_id": 2916, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 2925, + "token_id": 2917, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "created", - "token_id": 2926, + "token_id": 2918, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "golden", - "token_id": 2927, + "token_id": 2919, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "tickets", - "token_id": 2928, + "token_id": 2920, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "that", - "token_id": 2929, + "token_id": 2921, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "he", - "token_id": 2930, + "token_id": 2922, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hid", - "token_id": 2931, + "token_id": 2923, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "throughout", - "token_id": 2932, + "token_id": 2924, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "manhattan", - "token_id": 2933, + "token_id": 2925, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2934, + "token_id": 2926, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "teasing", - "token_id": 2935, + "token_id": 2927, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "their", - "token_id": 2936, + "token_id": 2928, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "location", - "token_id": 2937, + "token_id": 2929, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "on", - "token_id": 2938, + "token_id": 2930, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "social", - "token_id": 2939, + "token_id": 2931, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "media", - "token_id": 2940, + "token_id": 2932, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2941, + "token_id": 2933, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "an", - "token_id": 2942, + "token_id": 2934, "o_rev_id": 754869525, "in": [], "out": [ @@ -25266,77 +25176,77 @@ }, { "str": "homage", - "token_id": 2943, + "token_id": 2935, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "to", - "token_id": 2944, + "token_id": 2936, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2945, + "token_id": 2937, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "1971", - "token_id": 2946, + "token_id": 2938, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "fantasy", - "token_id": 2947, + "token_id": 2939, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "film", - "token_id": 2948, + "token_id": 2940, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2949, + "token_id": 2941, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2950, + "token_id": 2942, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2951, + "token_id": 2943, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "willy", - "token_id": 2952, + "token_id": 2944, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "wonk", - "token_id": 2953, + "token_id": 2945, "o_rev_id": 754869525, "in": [], "out": [ @@ -25345,777 +25255,777 @@ }, { "str": "and", - "token_id": 2954, + "token_id": 2946, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2955, + "token_id": 2947, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "chocolate", - "token_id": 2956, + "token_id": 2948, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "factory", - "token_id": 2957, + "token_id": 2949, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 2958, + "token_id": 2950, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2959, + "token_id": 2951, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 2960, + "token_id": 2952, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "these", - "token_id": 2961, + "token_id": 2953, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "tickets", - "token_id": 2962, + "token_id": 2954, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "introduced", - "token_id": 2963, + "token_id": 2955, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2964, + "token_id": 2956, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "interactive", - "token_id": 2965, + "token_id": 2957, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "nature", - "token_id": 2966, + "token_id": 2958, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 2967, + "token_id": 2959, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2968, + "token_id": 2960, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "event", - "token_id": 2969, + "token_id": 2961, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "but", - "token_id": 2970, + "token_id": 2962, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "also", - "token_id": 2971, + "token_id": 2963, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "could", - "token_id": 2972, + "token_id": 2964, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "be", - "token_id": 2973, + "token_id": 2965, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "traded", - "token_id": 2974, + "token_id": 2966, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "in", - "token_id": 2975, + "token_id": 2967, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "for", - "token_id": 2976, + "token_id": 2968, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "limited", - "token_id": 2977, + "token_id": 2969, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "edition", - "token_id": 2978, + "token_id": 2970, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "work", - "token_id": 2979, + "token_id": 2971, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "by", - "token_id": 2980, + "token_id": 2972, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2981, + "token_id": 2973, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "artist", - "token_id": 2982, + "token_id": 2974, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2983, + "token_id": 2975, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2984, + "token_id": 2976, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 2985, + "token_id": 2977, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "itself", - "token_id": 2986, + "token_id": 2978, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "at", - "token_id": 2987, + "token_id": 2979, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "a", - "token_id": 2988, + "token_id": 2980, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "former", - "token_id": 2989, + "token_id": 2981, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "chase", - "token_id": 2990, + "token_id": 2982, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "bank", - "token_id": 2991, + "token_id": 2983, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "on", - "token_id": 2992, + "token_id": 2984, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "the", - "token_id": 2993, + "token_id": 2985, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "lower", - "token_id": 2994, + "token_id": 2986, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "east", - "token_id": 2995, + "token_id": 2987, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "side", - "token_id": 2996, + "token_id": 2988, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 2997, + "token_id": 2989, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "<", - "token_id": 2998, + "token_id": 2990, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "ref", - "token_id": 2999, + "token_id": 2991, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ">", - "token_id": 3000, + "token_id": 2992, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "{{", - "token_id": 3001, + "token_id": 2993, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "cite", - "token_id": 3002, + "token_id": 2994, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "news", - "token_id": 3003, + "token_id": 2995, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 3004, + "token_id": 2996, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "url", - "token_id": 3005, + "token_id": 2997, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 3006, + "token_id": 2998, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "http", - "token_id": 3007, + "token_id": 2999, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ":", - "token_id": 3008, + "token_id": 3000, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 3009, + "token_id": 3001, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 3010, + "token_id": 3002, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "gothamist", - "token_id": 3011, + "token_id": 3003, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 3012, + "token_id": 3004, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "com", - "token_id": 3013, + "token_id": 3005, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 3014, + "token_id": 3006, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 3015, + "token_id": 3007, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "03", - "token_id": 3016, + "token_id": 3008, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 3017, + "token_id": 3009, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "18", - "token_id": 3018, + "token_id": 3010, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 3019, + "token_id": 3011, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 3020, + "token_id": 3012, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "_", - "token_id": 3021, + "token_id": 3013, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "golden", - "token_id": 3022, + "token_id": 3014, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "_", - "token_id": 3023, + "token_id": 3015, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "ticket", - "token_id": 3024, + "token_id": 3016, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "php", - "token_id": 3025, + "token_id": 3017, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 3026, + "token_id": 3018, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "title", - "token_id": 3027, + "token_id": 3019, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 3028, + "token_id": 3020, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "we", - "token_id": 3029, + "token_id": 3021, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "'", - "token_id": 3030, + "token_id": 3022, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "re", - "token_id": 3031, + "token_id": 3023, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hiding", - "token_id": 3032, + "token_id": 3024, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "golden", - "token_id": 3033, + "token_id": 3025, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "tickets", - "token_id": 3034, + "token_id": 3026, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "around", - "token_id": 3035, + "token_id": 3027, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "nyc", - "token_id": 3036, + "token_id": 3028, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "with", - "token_id": 3037, + "token_id": 3029, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 3038, + "token_id": 3030, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 3039, + "token_id": 3031, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "newspaper", - "token_id": 3040, + "token_id": 3032, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 3041, + "token_id": 3033, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "gothamist", - "token_id": 3042, + "token_id": 3034, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 3043, + "token_id": 3035, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "language", - "token_id": 3044, + "token_id": 3036, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 3045, + "token_id": 3037, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "en", - "token_id": 3046, + "token_id": 3038, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 3047, + "token_id": 3039, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "us", - "token_id": 3048, + "token_id": 3040, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "|", - "token_id": 3049, + "token_id": 3041, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "access", - "token_id": 3050, + "token_id": 3042, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 3051, + "token_id": 3043, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "date", - "token_id": 3052, + "token_id": 3044, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 3053, + "token_id": 3045, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "2016", - "token_id": 3054, + "token_id": 3046, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 3055, + "token_id": 3047, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "12", - "token_id": 3056, + "token_id": 3048, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 3057, + "token_id": 3049, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "14", - "token_id": 3058, + "token_id": 3050, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "}}", - "token_id": 3059, + "token_id": 3051, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "<", - "token_id": 3060, + "token_id": 3052, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "/", - "token_id": 3061, + "token_id": 3053, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "ref", - "token_id": 3062, + "token_id": 3054, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ">", - "token_id": 3063, + "token_id": 3055, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "=", - "token_id": 3064, + "token_id": 3056, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26126,7 +26036,7 @@ }, { "str": "=", - "token_id": 3065, + "token_id": 3057, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26137,7 +26047,7 @@ }, { "str": "=", - "token_id": 3066, + "token_id": 3058, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26148,7 +26058,7 @@ }, { "str": "'", - "token_id": 3067, + "token_id": 3059, "o_rev_id": 754869525, "in": [], "out": [ @@ -26157,7 +26067,7 @@ }, { "str": "(", - "token_id": 3068, + "token_id": 3060, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26168,7 +26078,7 @@ }, { "str": "2014", - "token_id": 3069, + "token_id": 3061, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26179,7 +26089,7 @@ }, { "str": "-", - "token_id": 3070, + "token_id": 3062, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26190,7 +26100,7 @@ }, { "str": "ongoing", - "token_id": 3071, + "token_id": 3063, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26201,7 +26111,7 @@ }, { "str": ")", - "token_id": 3072, + "token_id": 3064, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26212,7 +26122,7 @@ }, { "str": "'", - "token_id": 3073, + "token_id": 3065, "o_rev_id": 754869525, "in": [], "out": [ @@ -26221,7 +26131,7 @@ }, { "str": "=", - "token_id": 3074, + "token_id": 3066, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26232,7 +26142,7 @@ }, { "str": "=", - "token_id": 3075, + "token_id": 3067, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26243,7 +26153,7 @@ }, { "str": "=", - "token_id": 3076, + "token_id": 3068, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26254,7 +26164,7 @@ }, { "str": "sparked", - "token_id": 3077, + "token_id": 3069, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26265,6 +26175,94 @@ }, { "str": "by", + "token_id": 3070, + "o_rev_id": 754869525, + "in": [ + 1163557612 + ], + "out": [ + 1163557557 + ] + }, + { + "str": "the", + "token_id": 3071, + "o_rev_id": 754869525, + "in": [ + 1163557612 + ], + "out": [ + 1163557557 + ] + }, + { + "str": "success", + "token_id": 3072, + "o_rev_id": 754869525, + "in": [ + 1163557612 + ], + "out": [ + 1163557557 + ] + }, + { + "str": "of", + "token_id": 3073, + "o_rev_id": 754869525, + "in": [ + 1163557612 + ], + "out": [ + 1163557557 + ] + }, + { + "str": "the", + "token_id": 3074, + "o_rev_id": 754869525, + "in": [ + 1163557612 + ], + "out": [ + 1163557557 + ] + }, + { + "str": "'", + "token_id": 3075, + "o_rev_id": 754869525, + "in": [ + 1163557612 + ], + "out": [ + 1163557557 + ] + }, + { + "str": "'", + "token_id": 3076, + "o_rev_id": 754869525, + "in": [ + 1163557612 + ], + "out": [ + 1163557557 + ] + }, + { + "str": "best", + "token_id": 3077, + "o_rev_id": 754869525, + "in": [ + 1163557612 + ], + "out": [ + 1163557557 + ] + }, + { + "str": "of", "token_id": 3078, "o_rev_id": 754869525, "in": [ @@ -26286,7 +26284,7 @@ ] }, { - "str": "success", + "str": "worst", "token_id": 3080, "o_rev_id": 754869525, "in": [ @@ -26297,7 +26295,7 @@ ] }, { - "str": "of", + "str": "'", "token_id": 3081, "o_rev_id": 754869525, "in": [ @@ -26308,7 +26306,7 @@ ] }, { - "str": "the", + "str": "'", "token_id": 3082, "o_rev_id": 754869525, "in": [ @@ -26319,7 +26317,7 @@ ] }, { - "str": "'", + "str": "installation", "token_id": 3083, "o_rev_id": 754869525, "in": [ @@ -26330,7 +26328,7 @@ ] }, { - "str": "'", + "str": ",", "token_id": 3084, "o_rev_id": 754869525, "in": [ @@ -26341,7 +26339,7 @@ ] }, { - "str": "best", + "str": "hanksy", "token_id": 3085, "o_rev_id": 754869525, "in": [ @@ -26352,7 +26350,7 @@ ] }, { - "str": "of", + "str": "began", "token_id": 3086, "o_rev_id": 754869525, "in": [ @@ -26363,7 +26361,7 @@ ] }, { - "str": "the", + "str": "his", "token_id": 3087, "o_rev_id": 754869525, "in": [ @@ -26374,7 +26372,7 @@ ] }, { - "str": "worst", + "str": "'", "token_id": 3088, "o_rev_id": 754869525, "in": [ @@ -26395,97 +26393,9 @@ 1163557557 ] }, - { - "str": "'", - "token_id": 3090, - "o_rev_id": 754869525, - "in": [ - 1163557612 - ], - "out": [ - 1163557557 - ] - }, - { - "str": "installation", - "token_id": 3091, - "o_rev_id": 754869525, - "in": [ - 1163557612 - ], - "out": [ - 1163557557 - ] - }, - { - "str": ",", - "token_id": 3092, - "o_rev_id": 754869525, - "in": [ - 1163557612 - ], - "out": [ - 1163557557 - ] - }, - { - "str": "hanksy", - "token_id": 3093, - "o_rev_id": 754869525, - "in": [ - 1163557612 - ], - "out": [ - 1163557557 - ] - }, - { - "str": "began", - "token_id": 3094, - "o_rev_id": 754869525, - "in": [ - 1163557612 - ], - "out": [ - 1163557557 - ] - }, - { - "str": "his", - "token_id": 3095, - "o_rev_id": 754869525, - "in": [ - 1163557612 - ], - "out": [ - 1163557557 - ] - }, - { - "str": "'", - "token_id": 3096, - "o_rev_id": 754869525, - "in": [ - 1163557612 - ], - "out": [ - 1163557557 - ] - }, - { - "str": "'", - "token_id": 3097, - "o_rev_id": 754869525, - "in": [ - 1163557612 - ], - "out": [ - 1163557557 - ] - }, { "str": "surplus", - "token_id": 3098, + "token_id": 3090, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26496,7 +26406,7 @@ }, { "str": "candy", - "token_id": 3099, + "token_id": 3091, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26507,7 +26417,7 @@ }, { "str": "'", - "token_id": 3100, + "token_id": 3092, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26518,7 +26428,7 @@ }, { "str": "'", - "token_id": 3101, + "token_id": 3093, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26529,7 +26439,7 @@ }, { "str": "initiative", - "token_id": 3102, + "token_id": 3094, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26540,7 +26450,7 @@ }, { "str": "—", - "token_id": 3103, + "token_id": 3095, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26551,7 +26461,7 @@ }, { "str": "highly", - "token_id": 3104, + "token_id": 3096, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26562,7 +26472,7 @@ }, { "str": "interactive", - "token_id": 3105, + "token_id": 3097, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26573,7 +26483,7 @@ }, { "str": "events", - "token_id": 3106, + "token_id": 3098, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26584,7 +26494,7 @@ }, { "str": "that", - "token_id": 3107, + "token_id": 3099, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26595,7 +26505,7 @@ }, { "str": "he", - "token_id": 3108, + "token_id": 3100, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26606,7 +26516,7 @@ }, { "str": "has", - "token_id": 3109, + "token_id": 3101, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26617,7 +26527,7 @@ }, { "str": "hosted", - "token_id": 3110, + "token_id": 3102, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26628,7 +26538,7 @@ }, { "str": "in", - "token_id": 3111, + "token_id": 3103, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26639,7 +26549,7 @@ }, { "str": "multiple", - "token_id": 3112, + "token_id": 3104, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26650,7 +26560,7 @@ }, { "str": "cities", - "token_id": 3113, + "token_id": 3105, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26661,7 +26571,7 @@ }, { "str": "including", - "token_id": 3114, + "token_id": 3106, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26672,7 +26582,7 @@ }, { "str": "new", - "token_id": 3115, + "token_id": 3107, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26683,7 +26593,7 @@ }, { "str": "york", - "token_id": 3116, + "token_id": 3108, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26694,7 +26604,7 @@ }, { "str": "city", - "token_id": 3117, + "token_id": 3109, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26705,7 +26615,7 @@ }, { "str": "and", - "token_id": 3118, + "token_id": 3110, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26716,7 +26626,7 @@ }, { "str": "los", - "token_id": 3119, + "token_id": 3111, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26727,7 +26637,7 @@ }, { "str": "angeles", - "token_id": 3120, + "token_id": 3112, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26738,7 +26648,7 @@ }, { "str": ".", - "token_id": 3121, + "token_id": 3113, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26749,7 +26659,7 @@ }, { "str": "in", - "token_id": 3122, + "token_id": 3114, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26760,7 +26670,7 @@ }, { "str": "each", - "token_id": 3123, + "token_id": 3115, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26771,7 +26681,7 @@ }, { "str": "installment", - "token_id": 3124, + "token_id": 3116, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26782,7 +26692,7 @@ }, { "str": ",", - "token_id": 3125, + "token_id": 3117, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26793,7 +26703,7 @@ }, { "str": "hanksy", - "token_id": 3126, + "token_id": 3118, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26804,7 +26714,7 @@ }, { "str": "secures", - "token_id": 3127, + "token_id": 3119, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26815,7 +26725,7 @@ }, { "str": "an", - "token_id": 3128, + "token_id": 3120, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26826,7 +26736,7 @@ }, { "str": "abandoned", - "token_id": 3129, + "token_id": 3121, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26837,7 +26747,7 @@ }, { "str": "space", - "token_id": 3130, + "token_id": 3122, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26848,7 +26758,7 @@ }, { "str": ",", - "token_id": 3131, + "token_id": 3123, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26859,7 +26769,7 @@ }, { "str": "transforming", - "token_id": 3132, + "token_id": 3124, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26870,7 +26780,7 @@ }, { "str": "it", - "token_id": 3133, + "token_id": 3125, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26881,7 +26791,7 @@ }, { "str": "with", - "token_id": 3134, + "token_id": 3126, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26892,7 +26802,7 @@ }, { "str": "art", - "token_id": 3135, + "token_id": 3127, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26903,7 +26813,7 @@ }, { "str": "and", - "token_id": 3136, + "token_id": 3128, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26914,7 +26824,7 @@ }, { "str": "activity", - "token_id": 3137, + "token_id": 3129, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26925,7 +26835,7 @@ }, { "str": ",", - "token_id": 3138, + "token_id": 3130, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26936,7 +26846,7 @@ }, { "str": "then", - "token_id": 3139, + "token_id": 3131, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26947,7 +26857,7 @@ }, { "str": "opens", - "token_id": 3140, + "token_id": 3132, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26958,7 +26868,7 @@ }, { "str": "that", - "token_id": 3141, + "token_id": 3133, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26969,7 +26879,7 @@ }, { "str": "space", - "token_id": 3142, + "token_id": 3134, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26980,7 +26890,7 @@ }, { "str": "up", - "token_id": 3143, + "token_id": 3135, "o_rev_id": 754869525, "in": [ 1163557612 @@ -26991,7 +26901,7 @@ }, { "str": "to", - "token_id": 3144, + "token_id": 3136, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27002,7 +26912,7 @@ }, { "str": "the", - "token_id": 3145, + "token_id": 3137, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27013,7 +26923,7 @@ }, { "str": "public", - "token_id": 3146, + "token_id": 3138, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27024,7 +26934,7 @@ }, { "str": "couple", - "token_id": 3147, + "token_id": 3139, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27035,7 +26945,7 @@ }, { "str": "of", - "token_id": 3148, + "token_id": 3140, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27046,7 +26956,7 @@ }, { "str": "hours", - "token_id": 3149, + "token_id": 3141, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27057,7 +26967,7 @@ }, { "str": "before", - "token_id": 3150, + "token_id": 3142, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27068,7 +26978,7 @@ }, { "str": "taking", - "token_id": 3151, + "token_id": 3143, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27079,7 +26989,7 @@ }, { "str": "it", - "token_id": 3152, + "token_id": 3144, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27090,7 +27000,7 @@ }, { "str": "down", - "token_id": 3153, + "token_id": 3145, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27101,7 +27011,7 @@ }, { "str": "<", - "token_id": 3154, + "token_id": 3146, "o_rev_id": 754869525, "in": [ 755162424 @@ -27112,7 +27022,7 @@ }, { "str": "ref", - "token_id": 3155, + "token_id": 3147, "o_rev_id": 754869525, "in": [ 755162424 @@ -27123,7 +27033,7 @@ }, { "str": ">", - "token_id": 3156, + "token_id": 3148, "o_rev_id": 754869525, "in": [ 755162424 @@ -27134,7 +27044,7 @@ }, { "str": "{{", - "token_id": 3157, + "token_id": 3149, "o_rev_id": 754869525, "in": [ 755162424 @@ -27145,7 +27055,7 @@ }, { "str": "cite", - "token_id": 3158, + "token_id": 3150, "o_rev_id": 754869525, "in": [ 755162424 @@ -27156,7 +27066,7 @@ }, { "str": "news", - "token_id": 3159, + "token_id": 3151, "o_rev_id": 754869525, "in": [ 755162424 @@ -27167,7 +27077,7 @@ }, { "str": "|", - "token_id": 3160, + "token_id": 3152, "o_rev_id": 754869525, "in": [ 755162424 @@ -27178,7 +27088,7 @@ }, { "str": "url", - "token_id": 3161, + "token_id": 3153, "o_rev_id": 754869525, "in": [ 755162424 @@ -27189,7 +27099,7 @@ }, { "str": "=", - "token_id": 3162, + "token_id": 3154, "o_rev_id": 754869525, "in": [ 755162424 @@ -27200,7 +27110,7 @@ }, { "str": "ovationtv", - "token_id": 3163, + "token_id": 3155, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27211,7 +27121,7 @@ }, { "str": "ovation", - "token_id": 3164, + "token_id": 3156, "o_rev_id": 754869525, "in": [], "out": [ @@ -27220,7 +27130,7 @@ }, { "str": "to", - "token_id": 3165, + "token_id": 3157, "o_rev_id": 754869525, "in": [], "out": [ @@ -27229,7 +27139,7 @@ }, { "str": "-", - "token_id": 3166, + "token_id": 3158, "o_rev_id": 754869525, "in": [], "out": [ @@ -27238,7 +27148,7 @@ }, { "str": "premiere", - "token_id": 3167, + "token_id": 3159, "o_rev_id": 754869525, "in": [], "out": [ @@ -27247,7 +27157,7 @@ }, { "str": "presents", - "token_id": 3168, + "token_id": 3160, "o_rev_id": 754869525, "in": [], "out": [ @@ -27256,7 +27166,7 @@ }, { "str": "surplus", - "token_id": 3169, + "token_id": 3161, "o_rev_id": 754869525, "in": [], "out": [ @@ -27265,7 +27175,7 @@ }, { "str": "candy", - "token_id": 3170, + "token_id": 3162, "o_rev_id": 754869525, "in": [], "out": [ @@ -27274,7 +27184,7 @@ }, { "str": "across", - "token_id": 3171, + "token_id": 3163, "o_rev_id": 754869525, "in": [], "out": [ @@ -27283,7 +27193,7 @@ }, { "str": "linear", - "token_id": 3172, + "token_id": 3164, "o_rev_id": 754869525, "in": [], "out": [ @@ -27292,7 +27202,7 @@ }, { "str": "digital", - "token_id": 3173, + "token_id": 3165, "o_rev_id": 754869525, "in": [], "out": [ @@ -27301,7 +27211,7 @@ }, { "str": "social", - "token_id": 3174, + "token_id": 3166, "o_rev_id": 754869525, "in": [], "out": [ @@ -27310,7 +27220,7 @@ }, { "str": "-", - "token_id": 3175, + "token_id": 3167, "o_rev_id": 754869525, "in": [], "out": [ @@ -27319,7 +27229,7 @@ }, { "str": "platforms", - "token_id": 3176, + "token_id": 3168, "o_rev_id": 754869525, "in": [], "out": [ @@ -27328,7 +27238,7 @@ }, { "str": "-", - "token_id": 3177, + "token_id": 3169, "o_rev_id": 754869525, "in": [], "out": [ @@ -27337,7 +27247,7 @@ }, { "str": "on", - "token_id": 3178, + "token_id": 3170, "o_rev_id": 754869525, "in": [], "out": [ @@ -27346,7 +27256,7 @@ }, { "str": "-", - "token_id": 3179, + "token_id": 3171, "o_rev_id": 754869525, "in": [], "out": [ @@ -27355,7 +27265,7 @@ }, { "str": "june", - "token_id": 3180, + "token_id": 3172, "o_rev_id": 754869525, "in": [], "out": [ @@ -27364,7 +27274,7 @@ }, { "str": "-", - "token_id": 3181, + "token_id": 3173, "o_rev_id": 754869525, "in": [], "out": [ @@ -27373,7 +27283,7 @@ }, { "str": "26", - "token_id": 3182, + "token_id": 3174, "o_rev_id": 754869525, "in": [], "out": [ @@ -27382,7 +27292,7 @@ }, { "str": "|", - "token_id": 3183, + "token_id": 3175, "o_rev_id": 754869525, "in": [], "out": [ @@ -27391,7 +27301,7 @@ }, { "str": "=", - "token_id": 3184, + "token_id": 3176, "o_rev_id": 754869525, "in": [], "out": [ @@ -27400,7 +27310,7 @@ }, { "str": "ovation", - "token_id": 3185, + "token_id": 3177, "o_rev_id": 754869525, "in": [], "out": [ @@ -27409,7 +27319,7 @@ }, { "str": "to", - "token_id": 3186, + "token_id": 3178, "o_rev_id": 754869525, "in": [], "out": [ @@ -27418,7 +27328,7 @@ }, { "str": "premiere", - "token_id": 3187, + "token_id": 3179, "o_rev_id": 754869525, "in": [], "out": [ @@ -27427,7 +27337,7 @@ }, { "str": "‘hanksy", - "token_id": 3188, + "token_id": 3180, "o_rev_id": 754869525, "in": [], "out": [ @@ -27436,7 +27346,7 @@ }, { "str": "presents", - "token_id": 3189, + "token_id": 3181, "o_rev_id": 754869525, "in": [], "out": [ @@ -27445,7 +27355,7 @@ }, { "str": ":", - "token_id": 3190, + "token_id": 3182, "o_rev_id": 754869525, "in": [], "out": [ @@ -27454,7 +27364,7 @@ }, { "str": "surplus", - "token_id": 3191, + "token_id": 3183, "o_rev_id": 754869525, "in": [], "out": [ @@ -27463,7 +27373,7 @@ }, { "str": "candy", - "token_id": 3192, + "token_id": 3184, "o_rev_id": 754869525, "in": [], "out": [ @@ -27472,7 +27382,7 @@ }, { "str": "’", - "token_id": 3193, + "token_id": 3185, "o_rev_id": 754869525, "in": [], "out": [ @@ -27481,7 +27391,7 @@ }, { "str": "across", - "token_id": 3194, + "token_id": 3186, "o_rev_id": 754869525, "in": [], "out": [ @@ -27490,7 +27400,7 @@ }, { "str": "linear", - "token_id": 3195, + "token_id": 3187, "o_rev_id": 754869525, "in": [], "out": [ @@ -27499,7 +27409,7 @@ }, { "str": "digital", - "token_id": 3196, + "token_id": 3188, "o_rev_id": 754869525, "in": [], "out": [ @@ -27508,7 +27418,7 @@ }, { "str": "&", - "token_id": 3197, + "token_id": 3189, "o_rev_id": 754869525, "in": [], "out": [ @@ -27517,7 +27427,7 @@ }, { "str": "social", - "token_id": 3198, + "token_id": 3190, "o_rev_id": 754869525, "in": [], "out": [ @@ -27526,7 +27436,7 @@ }, { "str": "platforms", - "token_id": 3199, + "token_id": 3191, "o_rev_id": 754869525, "in": [], "out": [ @@ -27535,7 +27445,7 @@ }, { "str": "on", - "token_id": 3200, + "token_id": 3192, "o_rev_id": 754869525, "in": [], "out": [ @@ -27544,7 +27454,7 @@ }, { "str": "june", - "token_id": 3201, + "token_id": 3193, "o_rev_id": 754869525, "in": [], "out": [ @@ -27553,7 +27463,7 @@ }, { "str": "26", - "token_id": 3202, + "token_id": 3194, "o_rev_id": 754869525, "in": [], "out": [ @@ -27562,7 +27472,7 @@ }, { "str": "|", - "token_id": 3203, + "token_id": 3195, "o_rev_id": 754869525, "in": [], "out": [ @@ -27571,7 +27481,7 @@ }, { "str": "date", - "token_id": 3204, + "token_id": 3196, "o_rev_id": 754869525, "in": [], "out": [ @@ -27580,7 +27490,7 @@ }, { "str": "=", - "token_id": 3205, + "token_id": 3197, "o_rev_id": 754869525, "in": [], "out": [ @@ -27589,7 +27499,7 @@ }, { "str": "2016", - "token_id": 3206, + "token_id": 3198, "o_rev_id": 754869525, "in": [], "out": [ @@ -27598,7 +27508,7 @@ }, { "str": "-", - "token_id": 3207, + "token_id": 3199, "o_rev_id": 754869525, "in": [], "out": [ @@ -27607,7 +27517,7 @@ }, { "str": "05", - "token_id": 3208, + "token_id": 3200, "o_rev_id": 754869525, "in": [], "out": [ @@ -27616,7 +27526,7 @@ }, { "str": "-", - "token_id": 3209, + "token_id": 3201, "o_rev_id": 754869525, "in": [], "out": [ @@ -27625,7 +27535,7 @@ }, { "str": "24", - "token_id": 3210, + "token_id": 3202, "o_rev_id": 754869525, "in": [], "out": [ @@ -27634,7 +27544,7 @@ }, { "str": "|", - "token_id": 3211, + "token_id": 3203, "o_rev_id": 754869525, "in": [], "out": [ @@ -27643,7 +27553,7 @@ }, { "str": "newspaper", - "token_id": 3212, + "token_id": 3204, "o_rev_id": 754869525, "in": [], "out": [ @@ -27652,7 +27562,7 @@ }, { "str": "=", - "token_id": 3213, + "token_id": 3205, "o_rev_id": 754869525, "in": [], "out": [ @@ -27661,7 +27571,7 @@ }, { "str": "art", - "token_id": 3214, + "token_id": 3206, "o_rev_id": 754869525, "in": [], "out": [ @@ -27670,7 +27580,7 @@ }, { "str": "culture", - "token_id": 3215, + "token_id": 3207, "o_rev_id": 754869525, "in": [], "out": [ @@ -27679,7 +27589,7 @@ }, { "str": ",", - "token_id": 3216, + "token_id": 3208, "o_rev_id": 754869525, "in": [], "out": [ @@ -27688,7 +27598,7 @@ }, { "str": "film", - "token_id": 3217, + "token_id": 3209, "o_rev_id": 754869525, "in": [], "out": [ @@ -27697,7 +27607,7 @@ }, { "str": ",", - "token_id": 3218, + "token_id": 3210, "o_rev_id": 754869525, "in": [], "out": [ @@ -27706,7 +27616,7 @@ }, { "str": "music", - "token_id": 3219, + "token_id": 3211, "o_rev_id": 754869525, "in": [], "out": [ @@ -27715,7 +27625,7 @@ }, { "str": ",", - "token_id": 3220, + "token_id": 3212, "o_rev_id": 754869525, "in": [], "out": [ @@ -27724,7 +27634,7 @@ }, { "str": "fashion", - "token_id": 3221, + "token_id": 3213, "o_rev_id": 754869525, "in": [], "out": [ @@ -27733,7 +27643,7 @@ }, { "str": ",", - "token_id": 3222, + "token_id": 3214, "o_rev_id": 754869525, "in": [], "out": [ @@ -27742,7 +27652,7 @@ }, { "str": "arts", - "token_id": 3223, + "token_id": 3215, "o_rev_id": 754869525, "in": [], "out": [ @@ -27751,7 +27661,7 @@ }, { "str": "advocacy", - "token_id": 3224, + "token_id": 3216, "o_rev_id": 754869525, "in": [], "out": [ @@ -27760,7 +27670,7 @@ }, { "str": "tv", - "token_id": 3225, + "token_id": 3217, "o_rev_id": 754869525, "in": [], "out": [ @@ -27769,7 +27679,7 @@ }, { "str": "{{", - "token_id": 3226, + "token_id": 3218, "o_rev_id": 754869525, "in": [], "out": [ @@ -27778,7 +27688,7 @@ }, { "str": "!", - "token_id": 3227, + "token_id": 3219, "o_rev_id": 754869525, "in": [], "out": [ @@ -27787,7 +27697,7 @@ }, { "str": "}}", - "token_id": 3228, + "token_id": 3220, "o_rev_id": 754869525, "in": [], "out": [ @@ -27796,7 +27706,7 @@ }, { "str": "ovation", - "token_id": 3229, + "token_id": 3221, "o_rev_id": 754869525, "in": [], "out": [ @@ -27805,7 +27715,7 @@ }, { "str": "official", - "token_id": 3230, + "token_id": 3222, "o_rev_id": 754869525, "in": [], "out": [ @@ -27814,7 +27724,7 @@ }, { "str": "site", - "token_id": 3231, + "token_id": 3223, "o_rev_id": 754869525, "in": [], "out": [ @@ -27823,7 +27733,7 @@ }, { "str": "|", - "token_id": 3232, + "token_id": 3224, "o_rev_id": 754869525, "in": [], "out": [ @@ -27832,7 +27742,7 @@ }, { "str": "language", - "token_id": 3233, + "token_id": 3225, "o_rev_id": 754869525, "in": [], "out": [ @@ -27841,7 +27751,7 @@ }, { "str": "=", - "token_id": 3234, + "token_id": 3226, "o_rev_id": 754869525, "in": [], "out": [ @@ -27850,7 +27760,7 @@ }, { "str": "en", - "token_id": 3235, + "token_id": 3227, "o_rev_id": 754869525, "in": [], "out": [ @@ -27859,7 +27769,7 @@ }, { "str": "-", - "token_id": 3236, + "token_id": 3228, "o_rev_id": 754869525, "in": [], "out": [ @@ -27868,7 +27778,7 @@ }, { "str": "us", - "token_id": 3237, + "token_id": 3229, "o_rev_id": 754869525, "in": [], "out": [ @@ -27877,7 +27787,7 @@ }, { "str": "|", - "token_id": 3238, + "token_id": 3230, "o_rev_id": 754869525, "in": [], "out": [ @@ -27886,7 +27796,7 @@ }, { "str": "access", - "token_id": 3239, + "token_id": 3231, "o_rev_id": 754869525, "in": [], "out": [ @@ -27895,7 +27805,7 @@ }, { "str": "-", - "token_id": 3240, + "token_id": 3232, "o_rev_id": 754869525, "in": [], "out": [ @@ -27904,7 +27814,7 @@ }, { "str": "=", - "token_id": 3241, + "token_id": 3233, "o_rev_id": 754869525, "in": [], "out": [ @@ -27913,7 +27823,7 @@ }, { "str": "-", - "token_id": 3242, + "token_id": 3234, "o_rev_id": 754869525, "in": [], "out": [ @@ -27922,7 +27832,7 @@ }, { "str": "12", - "token_id": 3243, + "token_id": 3235, "o_rev_id": 754869525, "in": [], "out": [ @@ -27931,7 +27841,7 @@ }, { "str": "-", - "token_id": 3244, + "token_id": 3236, "o_rev_id": 754869525, "in": [], "out": [ @@ -27940,7 +27850,7 @@ }, { "str": "14", - "token_id": 3245, + "token_id": 3237, "o_rev_id": 754869525, "in": [], "out": [ @@ -27949,7 +27859,7 @@ }, { "str": "}}", - "token_id": 3246, + "token_id": 3238, "o_rev_id": 754869525, "in": [], "out": [ @@ -27958,7 +27868,7 @@ }, { "str": "in", - "token_id": 3247, + "token_id": 3239, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27969,7 +27879,7 @@ }, { "str": "2014", - "token_id": 3248, + "token_id": 3240, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27980,7 +27890,7 @@ }, { "str": ",", - "token_id": 3249, + "token_id": 3241, "o_rev_id": 754869525, "in": [ 1163557612 @@ -27991,7 +27901,7 @@ }, { "str": "when", - "token_id": 3250, + "token_id": 3242, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28002,7 +27912,7 @@ }, { "str": "he", - "token_id": 3251, + "token_id": 3243, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28013,7 +27923,7 @@ }, { "str": "first", - "token_id": 3252, + "token_id": 3244, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28024,7 +27934,7 @@ }, { "str": "hosted", - "token_id": 3253, + "token_id": 3245, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28035,7 +27945,7 @@ }, { "str": "'", - "token_id": 3254, + "token_id": 3246, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28046,7 +27956,7 @@ }, { "str": "'", - "token_id": 3255, + "token_id": 3247, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28057,7 +27967,7 @@ }, { "str": "surplus", - "token_id": 3256, + "token_id": 3248, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28068,7 +27978,7 @@ }, { "str": "candy", - "token_id": 3257, + "token_id": 3249, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28079,7 +27989,7 @@ }, { "str": "'", - "token_id": 3258, + "token_id": 3250, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28090,7 +28000,7 @@ }, { "str": "'", - "token_id": 3259, + "token_id": 3251, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28101,7 +28011,7 @@ }, { "str": "in", - "token_id": 3260, + "token_id": 3252, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28112,7 +28022,7 @@ }, { "str": "manhattan", - "token_id": 3261, + "token_id": 3253, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28123,7 +28033,7 @@ }, { "str": ",", - "token_id": 3262, + "token_id": 3254, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28134,7 +28044,7 @@ }, { "str": "hanksy", - "token_id": 3263, + "token_id": 3255, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28145,7 +28055,7 @@ }, { "str": "included", - "token_id": 3264, + "token_id": 3256, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28156,7 +28066,7 @@ }, { "str": "twenty", - "token_id": 3265, + "token_id": 3257, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28167,7 +28077,7 @@ }, { "str": "other", - "token_id": 3266, + "token_id": 3258, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28178,7 +28088,7 @@ }, { "str": "artists", - "token_id": 3267, + "token_id": 3259, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28189,7 +28099,7 @@ }, { "str": ".", - "token_id": 3268, + "token_id": 3260, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28200,7 +28110,7 @@ }, { "str": "[[", - "token_id": 3269, + "token_id": 3261, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28212,7 +28122,7 @@ }, { "str": "hanksy", - "token_id": 3270, + "token_id": 3262, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28223,7 +28133,7 @@ }, { "str": "#", - "token_id": 3271, + "token_id": 3263, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28234,7 +28144,7 @@ }, { "str": "cite", - "token_id": 3272, + "token_id": 3264, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28245,7 +28155,7 @@ }, { "str": "note", - "token_id": 3273, + "token_id": 3265, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28257,7 +28167,7 @@ }, { "str": "-", - "token_id": 3274, + "token_id": 3266, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28269,7 +28179,7 @@ }, { "str": "6", - "token_id": 3275, + "token_id": 3267, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28281,7 +28191,7 @@ }, { "str": "|", - "token_id": 3276, + "token_id": 3268, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28293,7 +28203,7 @@ }, { "str": "<", - "token_id": 3277, + "token_id": 3269, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28305,7 +28215,7 @@ }, { "str": "sup", - "token_id": 3278, + "token_id": 3270, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28317,7 +28227,7 @@ }, { "str": ">", - "token_id": 3279, + "token_id": 3271, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28329,7 +28239,7 @@ }, { "str": "[", - "token_id": 3280, + "token_id": 3272, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28341,7 +28251,7 @@ }, { "str": "6", - "token_id": 3281, + "token_id": 3273, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28353,7 +28263,7 @@ }, { "str": "]", - "token_id": 3282, + "token_id": 3274, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28365,7 +28275,7 @@ }, { "str": "<", - "token_id": 3283, + "token_id": 3275, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28376,7 +28286,7 @@ }, { "str": "/", - "token_id": 3284, + "token_id": 3276, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28387,7 +28297,7 @@ }, { "str": "sup", - "token_id": 3285, + "token_id": 3277, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28399,7 +28309,7 @@ }, { "str": ">", - "token_id": 3286, + "token_id": 3278, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28410,7 +28320,7 @@ }, { "str": "]]", - "token_id": 3287, + "token_id": 3279, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28422,7 +28332,7 @@ }, { "str": " in", - "token_id": 3288, + "token_id": 3280, "o_rev_id": 754869525, "in": [], "out": [ @@ -28431,7 +28341,7 @@ }, { "str": "2015", - "token_id": 3289, + "token_id": 3281, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28442,7 +28352,7 @@ }, { "str": ",", - "token_id": 3290, + "token_id": 3282, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28453,7 +28363,7 @@ }, { "str": "when", - "token_id": 3291, + "token_id": 3283, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28464,7 +28374,7 @@ }, { "str": "he", - "token_id": 3292, + "token_id": 3284, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28475,7 +28385,7 @@ }, { "str": "installed", - "token_id": 3293, + "token_id": 3285, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28486,7 +28396,7 @@ }, { "str": "the", - "token_id": 3294, + "token_id": 3286, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28497,7 +28407,7 @@ }, { "str": "show", - "token_id": 3295, + "token_id": 3287, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28508,7 +28418,7 @@ }, { "str": "in", - "token_id": 3296, + "token_id": 3288, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28519,7 +28429,7 @@ }, { "str": "a", - "token_id": 3297, + "token_id": 3289, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28530,7 +28440,7 @@ }, { "str": "dilapidated", - "token_id": 3298, + "token_id": 3290, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28541,7 +28451,7 @@ }, { "str": "mansion", - "token_id": 3299, + "token_id": 3291, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28552,7 +28462,7 @@ }, { "str": "in", - "token_id": 3300, + "token_id": 3292, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28563,7 +28473,7 @@ }, { "str": "the", - "token_id": 3301, + "token_id": 3293, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28574,7 +28484,7 @@ }, { "str": "historic", - "token_id": 3302, + "token_id": 3294, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28585,7 +28495,7 @@ }, { "str": "west", - "token_id": 3303, + "token_id": 3295, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28596,7 +28506,7 @@ }, { "str": "adams", - "token_id": 3304, + "token_id": 3296, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28607,7 +28517,7 @@ }, { "str": "district", - "token_id": 3305, + "token_id": 3297, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28618,7 +28528,7 @@ }, { "str": "in", - "token_id": 3306, + "token_id": 3298, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28629,7 +28539,7 @@ }, { "str": "los", - "token_id": 3307, + "token_id": 3299, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28640,7 +28550,7 @@ }, { "str": "angeles", - "token_id": 3308, + "token_id": 3300, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28651,7 +28561,7 @@ }, { "str": ",", - "token_id": 3309, + "token_id": 3301, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28662,7 +28572,7 @@ }, { "str": ".", - "token_id": 3310, + "token_id": 3302, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28673,7 +28583,7 @@ }, { "str": "<", - "token_id": 3311, + "token_id": 3303, "o_rev_id": 754869525, "in": [], "out": [ @@ -28682,7 +28592,7 @@ }, { "str": "ref", - "token_id": 3312, + "token_id": 3304, "o_rev_id": 754869525, "in": [], "out": [ @@ -28691,7 +28601,7 @@ }, { "str": ">", - "token_id": 3313, + "token_id": 3305, "o_rev_id": 754869525, "in": [], "out": [ @@ -28700,7 +28610,7 @@ }, { "str": "{{", - "token_id": 3314, + "token_id": 3306, "o_rev_id": 754869525, "in": [], "out": [ @@ -28709,7 +28619,7 @@ }, { "str": "cite", - "token_id": 3315, + "token_id": 3307, "o_rev_id": 754869525, "in": [], "out": [ @@ -28718,7 +28628,7 @@ }, { "str": "news", - "token_id": 3316, + "token_id": 3308, "o_rev_id": 754869525, "in": [], "out": [ @@ -28727,7 +28637,7 @@ }, { "str": "|", - "token_id": 3317, + "token_id": 3309, "o_rev_id": 754869525, "in": [], "out": [ @@ -28736,7 +28646,7 @@ }, { "str": "url", - "token_id": 3318, + "token_id": 3310, "o_rev_id": 754869525, "in": [], "out": [ @@ -28745,7 +28655,7 @@ }, { "str": "=", - "token_id": 3319, + "token_id": 3311, "o_rev_id": 754869525, "in": [], "out": [ @@ -28754,7 +28664,7 @@ }, { "str": "http", - "token_id": 3320, + "token_id": 3312, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28765,7 +28675,7 @@ }, { "str": ":", - "token_id": 3321, + "token_id": 3313, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28776,7 +28686,7 @@ }, { "str": "/", - "token_id": 3322, + "token_id": 3314, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28787,7 +28697,7 @@ }, { "str": "/", - "token_id": 3323, + "token_id": 3315, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28798,7 +28708,7 @@ }, { "str": "laist", - "token_id": 3324, + "token_id": 3316, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28809,7 +28719,7 @@ }, { "str": ".", - "token_id": 3325, + "token_id": 3317, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28820,7 +28730,7 @@ }, { "str": "com", - "token_id": 3326, + "token_id": 3318, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28831,7 +28741,7 @@ }, { "str": "/", - "token_id": 3327, + "token_id": 3319, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28842,7 +28752,7 @@ }, { "str": "2015", - "token_id": 3328, + "token_id": 3320, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28853,7 +28763,7 @@ }, { "str": "/", - "token_id": 3329, + "token_id": 3321, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28864,7 +28774,7 @@ }, { "str": "10", - "token_id": 3330, + "token_id": 3322, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28875,7 +28785,7 @@ }, { "str": "/", - "token_id": 3331, + "token_id": 3323, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28886,7 +28796,7 @@ }, { "str": "05", - "token_id": 3332, + "token_id": 3324, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28897,7 +28807,7 @@ }, { "str": "/", - "token_id": 3333, + "token_id": 3325, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28908,7 +28818,7 @@ }, { "str": "street", - "token_id": 3334, + "token_id": 3326, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28919,7 +28829,7 @@ }, { "str": "_", - "token_id": 3335, + "token_id": 3327, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28930,7 +28840,7 @@ }, { "str": "artist", - "token_id": 3336, + "token_id": 3328, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28941,7 +28851,7 @@ }, { "str": "_", - "token_id": 3337, + "token_id": 3329, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28952,7 +28862,7 @@ }, { "str": "hanksy", - "token_id": 3338, + "token_id": 3330, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28963,7 +28873,7 @@ }, { "str": "_", - "token_id": 3339, + "token_id": 3331, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28974,7 +28884,7 @@ }, { "str": "is", - "token_id": 3340, + "token_id": 3332, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28985,7 +28895,7 @@ }, { "str": "_", - "token_id": 3341, + "token_id": 3333, "o_rev_id": 754869525, "in": [ 1163557612 @@ -28996,7 +28906,7 @@ }, { "str": "taking", - "token_id": 3342, + "token_id": 3334, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29007,7 +28917,7 @@ }, { "str": "_", - "token_id": 3343, + "token_id": 3335, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29018,7 +28928,7 @@ }, { "str": "over", - "token_id": 3344, + "token_id": 3336, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29029,7 +28939,7 @@ }, { "str": ".", - "token_id": 3345, + "token_id": 3337, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29040,7 +28950,7 @@ }, { "str": "php", - "token_id": 3346, + "token_id": 3338, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29051,7 +28961,7 @@ }, { "str": "|", - "token_id": 3347, + "token_id": 3339, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29062,7 +28972,7 @@ }, { "str": "title", - "token_id": 3348, + "token_id": 3340, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29073,7 +28983,7 @@ }, { "str": "=", - "token_id": 3349, + "token_id": 3341, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29084,7 +28994,7 @@ }, { "str": "street", - "token_id": 3350, + "token_id": 3342, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29095,7 +29005,7 @@ }, { "str": "artist", - "token_id": 3351, + "token_id": 3343, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29106,7 +29016,7 @@ }, { "str": "hanksy", - "token_id": 3352, + "token_id": 3344, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29117,7 +29027,7 @@ }, { "str": "is", - "token_id": 3353, + "token_id": 3345, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29128,7 +29038,7 @@ }, { "str": "taking", - "token_id": 3354, + "token_id": 3346, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29139,7 +29049,7 @@ }, { "str": "over", - "token_id": 3355, + "token_id": 3347, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29150,7 +29060,7 @@ }, { "str": "a", - "token_id": 3356, + "token_id": 3348, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29161,7 +29071,7 @@ }, { "str": "'", - "token_id": 3357, + "token_id": 3349, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29172,7 +29082,7 @@ }, { "str": "massive", - "token_id": 3358, + "token_id": 3350, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29183,7 +29093,7 @@ }, { "str": ",", - "token_id": 3359, + "token_id": 3351, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29194,7 +29104,7 @@ }, { "str": "historic", - "token_id": 3360, + "token_id": 3352, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29205,7 +29115,7 @@ }, { "str": "'", - "token_id": 3361, + "token_id": 3353, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29216,7 +29126,7 @@ }, { "str": "mansion", - "token_id": 3362, + "token_id": 3354, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29227,7 +29137,7 @@ }, { "str": "|", - "token_id": 3363, + "token_id": 3355, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29238,7 +29148,7 @@ }, { "str": "newspaper", - "token_id": 3364, + "token_id": 3356, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29249,7 +29159,7 @@ }, { "str": "=", - "token_id": 3365, + "token_id": 3357, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29260,7 +29170,7 @@ }, { "str": "laist", - "token_id": 3366, + "token_id": 3358, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29271,7 +29181,7 @@ }, { "str": "|", - "token_id": 3367, + "token_id": 3359, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29282,7 +29192,7 @@ }, { "str": "language", - "token_id": 3368, + "token_id": 3360, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29293,7 +29203,7 @@ }, { "str": "=", - "token_id": 3369, + "token_id": 3361, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29304,7 +29214,7 @@ }, { "str": "en", - "token_id": 3370, + "token_id": 3362, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29315,7 +29225,7 @@ }, { "str": "-", - "token_id": 3371, + "token_id": 3363, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29326,7 +29236,7 @@ }, { "str": "us", - "token_id": 3372, + "token_id": 3364, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29337,7 +29247,7 @@ }, { "str": "|", - "token_id": 3373, + "token_id": 3365, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29348,7 +29258,7 @@ }, { "str": "access", - "token_id": 3374, + "token_id": 3366, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29359,7 +29269,7 @@ }, { "str": "-", - "token_id": 3375, + "token_id": 3367, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29370,7 +29280,7 @@ }, { "str": "date", - "token_id": 3376, + "token_id": 3368, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29381,7 +29291,7 @@ }, { "str": "=", - "token_id": 3377, + "token_id": 3369, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29392,7 +29302,7 @@ }, { "str": "2016", - "token_id": 3378, + "token_id": 3370, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29403,7 +29313,7 @@ }, { "str": "-", - "token_id": 3379, + "token_id": 3371, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29414,7 +29324,7 @@ }, { "str": "12", - "token_id": 3380, + "token_id": 3372, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29425,7 +29335,7 @@ }, { "str": "-", - "token_id": 3381, + "token_id": 3373, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29436,7 +29346,7 @@ }, { "str": "14", - "token_id": 3382, + "token_id": 3374, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29447,7 +29357,7 @@ }, { "str": "}}", - "token_id": 3383, + "token_id": 3375, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29458,7 +29368,7 @@ }, { "str": "<", - "token_id": 3384, + "token_id": 3376, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29469,7 +29379,7 @@ }, { "str": "/", - "token_id": 3385, + "token_id": 3377, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29480,7 +29390,7 @@ }, { "str": "ref", - "token_id": 3386, + "token_id": 3378, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29491,7 +29401,7 @@ }, { "str": ">", - "token_id": 3387, + "token_id": 3379, "o_rev_id": 754869525, "in": [ 1163557612 @@ -29502,7 +29412,7 @@ }, { "str": "=", - "token_id": 3388, + "token_id": 3380, "o_rev_id": 754869525, "in": [], "out": [ @@ -29511,7 +29421,7 @@ }, { "str": "=", - "token_id": 3389, + "token_id": 3381, "o_rev_id": 754869525, "in": [], "out": [ @@ -29520,7 +29430,7 @@ }, { "str": "'", - "token_id": 3390, + "token_id": 3382, "o_rev_id": 754869525, "in": [ 754870604 @@ -29532,7 +29442,7 @@ }, { "str": "'", - "token_id": 3391, + "token_id": 3383, "o_rev_id": 754869525, "in": [ 754870604 @@ -29544,7 +29454,7 @@ }, { "str": "'", - "token_id": 3392, + "token_id": 3384, "o_rev_id": 754869525, "in": [ 754870604 @@ -29556,7 +29466,7 @@ }, { "str": "documentaries", - "token_id": 3393, + "token_id": 3385, "o_rev_id": 754869525, "in": [], "out": [ @@ -29565,7 +29475,7 @@ }, { "str": "'", - "token_id": 3394, + "token_id": 3386, "o_rev_id": 754869525, "in": [ 754870604 @@ -29577,7 +29487,7 @@ }, { "str": "'", - "token_id": 3395, + "token_id": 3387, "o_rev_id": 754869525, "in": [ 754870604 @@ -29589,7 +29499,7 @@ }, { "str": "'", - "token_id": 3396, + "token_id": 3388, "o_rev_id": 754869525, "in": [ 754870604 @@ -29601,7 +29511,7 @@ }, { "str": "=", - "token_id": 3397, + "token_id": 3389, "o_rev_id": 754869525, "in": [], "out": [ @@ -29610,7 +29520,7 @@ }, { "str": "=", - "token_id": 3398, + "token_id": 3390, "o_rev_id": 754869525, "in": [], "out": [ @@ -29619,7 +29529,7 @@ }, { "str": "=", - "token_id": 3399, + "token_id": 3391, "o_rev_id": 754869525, "in": [], "out": [ @@ -29628,7 +29538,7 @@ }, { "str": "=", - "token_id": 3400, + "token_id": 3392, "o_rev_id": 754869525, "in": [], "out": [ @@ -29637,7 +29547,7 @@ }, { "str": "=", - "token_id": 3401, + "token_id": 3393, "o_rev_id": 754869525, "in": [], "out": [ @@ -29646,7 +29556,7 @@ }, { "str": "'", - "token_id": 3402, + "token_id": 3394, "o_rev_id": 754869525, "in": [], "out": [ @@ -29655,7 +29565,7 @@ }, { "str": "'", - "token_id": 3403, + "token_id": 3395, "o_rev_id": 754869525, "in": [], "out": [ @@ -29664,7 +29574,7 @@ }, { "str": "'", - "token_id": 3404, + "token_id": 3396, "o_rev_id": 754869525, "in": [], "out": [ @@ -29673,7 +29583,7 @@ }, { "str": "ovation", - "token_id": 3405, + "token_id": 3397, "o_rev_id": 754869525, "in": [], "out": [ @@ -29682,7 +29592,7 @@ }, { "str": "tv", - "token_id": 3406, + "token_id": 3398, "o_rev_id": 754869525, "in": [], "out": [ @@ -29691,7 +29601,7 @@ }, { "str": ",", - "token_id": 3407, + "token_id": 3399, "o_rev_id": 754869525, "in": [], "out": [ @@ -29700,7 +29610,7 @@ }, { "str": "“hanksy", - "token_id": 3408, + "token_id": 3400, "o_rev_id": 754869525, "in": [], "out": [ @@ -29709,7 +29619,7 @@ }, { "str": "presents", - "token_id": 3409, + "token_id": 3401, "o_rev_id": 754869525, "in": [], "out": [ @@ -29718,7 +29628,7 @@ }, { "str": ":", - "token_id": 3410, + "token_id": 3402, "o_rev_id": 754869525, "in": [], "out": [ @@ -29727,7 +29637,7 @@ }, { "str": "surplus", - "token_id": 3411, + "token_id": 3403, "o_rev_id": 754869525, "in": [], "out": [ @@ -29736,7 +29646,7 @@ }, { "str": "candy", - "token_id": 3412, + "token_id": 3404, "o_rev_id": 754869525, "in": [], "out": [ @@ -29745,7 +29655,7 @@ }, { "str": ".", - "token_id": 3413, + "token_id": 3405, "o_rev_id": 754869525, "in": [], "out": [ @@ -29754,7 +29664,7 @@ }, { "str": "”", - "token_id": 3414, + "token_id": 3406, "o_rev_id": 754869525, "in": [], "out": [ @@ -29763,7 +29673,7 @@ }, { "str": "'", - "token_id": 3415, + "token_id": 3407, "o_rev_id": 754869525, "in": [], "out": [ @@ -29772,7 +29682,7 @@ }, { "str": "'", - "token_id": 3416, + "token_id": 3408, "o_rev_id": 754869525, "in": [], "out": [ @@ -29781,7 +29691,7 @@ }, { "str": "'", - "token_id": 3417, + "token_id": 3409, "o_rev_id": 754869525, "in": [], "out": [ @@ -29790,7 +29700,7 @@ }, { "str": "=", - "token_id": 3418, + "token_id": 3410, "o_rev_id": 754869525, "in": [], "out": [ @@ -29799,7 +29709,7 @@ }, { "str": "=", - "token_id": 3419, + "token_id": 3411, "o_rev_id": 754869525, "in": [], "out": [ @@ -29808,7 +29718,7 @@ }, { "str": "=", - "token_id": 3420, + "token_id": 3412, "o_rev_id": 754869525, "in": [], "out": [ @@ -29817,49 +29727,49 @@ }, { "str": "to", - "token_id": 3421, + "token_id": 3413, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "preserve", - "token_id": 3422, + "token_id": 3414, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "a", - "token_id": 3423, + "token_id": 3415, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "record", - "token_id": 3424, + "token_id": 3416, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "of", - "token_id": 3425, + "token_id": 3417, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 3426, + "token_id": 3418, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "’", - "token_id": 3427, + "token_id": 3419, "o_rev_id": 754869525, "in": [ 754871338 @@ -29871,14 +29781,14 @@ }, { "str": "s", - "token_id": 3428, + "token_id": 3420, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "otherwise", - "token_id": 3429, + "token_id": 3421, "o_rev_id": 754869525, "in": [], "out": [ @@ -29887,91 +29797,91 @@ }, { "str": "temporary", - "token_id": 3430, + "token_id": 3422, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "installations", - "token_id": 3431, + "token_id": 3423, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ",", - "token_id": 3432, + "token_id": 3424, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "ovation", - "token_id": 3433, + "token_id": 3425, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "tv", - "token_id": 3434, + "token_id": 3426, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "launched", - "token_id": 3435, + "token_id": 3427, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "a", - "token_id": 3436, + "token_id": 3428, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "six", - "token_id": 3437, + "token_id": 3429, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "-", - "token_id": 3438, + "token_id": 3430, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "episode", - "token_id": 3439, + "token_id": 3431, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "series", - "token_id": 3440, + "token_id": 3432, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "called", - "token_id": 3441, + "token_id": 3433, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "“hanksy", - "token_id": 3442, + "token_id": 3434, "o_rev_id": 754869525, "in": [ 754871338 @@ -29983,42 +29893,42 @@ }, { "str": "presents", - "token_id": 3443, + "token_id": 3435, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ":", - "token_id": 3444, + "token_id": 3436, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "surplus", - "token_id": 3445, + "token_id": 3437, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "candy", - "token_id": 3446, + "token_id": 3438, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": ".", - "token_id": 3447, + "token_id": 3439, "o_rev_id": 754869525, "in": [], "out": [] }, { "str": "”", - "token_id": 3448, + "token_id": 3440, "o_rev_id": 754869525, "in": [ 754871338 @@ -30028,9 +29938,27 @@ 754871652 ] }, + { + "str": "[[", + "token_id": 3441, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, { "str": "file", - "token_id": 3449, + "token_id": 3442, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": ":", + "token_id": 3443, "o_rev_id": 754869826, "in": [], "out": [ @@ -30039,7 +29967,7 @@ }, { "str": "tronald", - "token_id": 3450, + "token_id": 3444, "o_rev_id": 754869826, "in": [], "out": [ @@ -30048,7 +29976,16 @@ }, { "str": "dump", - "token_id": 3451, + "token_id": 3445, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": ".", + "token_id": 3446, "o_rev_id": 754869826, "in": [], "out": [ @@ -30057,7 +29994,16 @@ }, { "str": "jpg", - "token_id": 3452, + "token_id": 3447, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "|", + "token_id": 3448, "o_rev_id": 754869826, "in": [], "out": [ @@ -30066,6 +30012,42 @@ }, { "str": "thumb", + "token_id": 3449, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "|", + "token_id": 3450, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "2015", + "token_id": 3451, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "mural", + "token_id": 3452, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "in", "token_id": 3453, "o_rev_id": 754869826, "in": [], @@ -30074,7 +30056,7 @@ ] }, { - "str": "manhattan", + "str": "[[", "token_id": 3454, "o_rev_id": 754869826, "in": [], @@ -30083,7 +30065,7 @@ ] }, { - "str": "s", + "str": "manhattan", "token_id": 3455, "o_rev_id": 754869826, "in": [], @@ -30092,7 +30074,7 @@ ] }, { - "str": "lower", + "str": "]]", "token_id": 3456, "o_rev_id": 754869826, "in": [], @@ -30101,7 +30083,7 @@ ] }, { - "str": "east", + "str": "'", "token_id": 3457, "o_rev_id": 754869826, "in": [], @@ -30110,7 +30092,7 @@ ] }, { - "str": "side", + "str": "s", "token_id": 3458, "o_rev_id": 754869826, "in": [], @@ -30119,50 +30101,104 @@ ] }, { - "str": "{{", + "str": "[[", "token_id": 3459, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "lower", + "token_id": 3460, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "east", + "token_id": 3461, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "side", + "token_id": 3462, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "]]", + "token_id": 3463, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "]]", + "token_id": 3464, + "o_rev_id": 754869826, + "in": [], + "out": [ + 797537354 + ] + }, + { + "str": "{{", + "token_id": 3465, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "infobox", - "token_id": 3460, + "token_id": 3466, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "artist", - "token_id": 3461, + "token_id": 3467, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "|", - "token_id": 3462, + "token_id": 3468, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "name", - "token_id": 3463, + "token_id": 3469, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "=", - "token_id": 3464, + "token_id": 3470, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 3465, + "token_id": 3471, "o_rev_id": 754870462, "in": [ 1163557773 @@ -30174,7 +30210,7 @@ }, { "str": "|", - "token_id": 3466, + "token_id": 3472, "o_rev_id": 754870462, "in": [], "out": [ @@ -30183,7 +30219,7 @@ }, { "str": "nationality", - "token_id": 3467, + "token_id": 3473, "o_rev_id": 754870462, "in": [], "out": [ @@ -30192,7 +30228,7 @@ }, { "str": "=", - "token_id": 3468, + "token_id": 3474, "o_rev_id": 754870462, "in": [], "out": [ @@ -30201,7 +30237,7 @@ }, { "str": "american", - "token_id": 3469, + "token_id": 3475, "o_rev_id": 754870462, "in": [], "out": [ @@ -30210,42 +30246,42 @@ }, { "str": "|", - "token_id": 3470, + "token_id": 3476, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "known", - "token_id": 3471, + "token_id": 3477, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "_", - "token_id": 3472, + "token_id": 3478, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "for", - "token_id": 3473, + "token_id": 3479, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "=", - "token_id": 3474, + "token_id": 3480, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "graffiti", - "token_id": 3475, + "token_id": 3481, "o_rev_id": 754870462, "in": [], "out": [ @@ -30254,7 +30290,7 @@ }, { "str": ",", - "token_id": 3476, + "token_id": 3482, "o_rev_id": 754870462, "in": [], "out": [ @@ -30263,7 +30299,7 @@ }, { "str": "street", - "token_id": 3477, + "token_id": 3483, "o_rev_id": 754870462, "in": [], "out": [ @@ -30272,7 +30308,7 @@ }, { "str": "art", - "token_id": 3478, + "token_id": 3484, "o_rev_id": 754870462, "in": [], "out": [ @@ -30281,7 +30317,7 @@ }, { "str": "|", - "token_id": 3479, + "token_id": 3485, "o_rev_id": 754870462, "in": [], "out": [ @@ -30290,7 +30326,7 @@ }, { "str": "movement", - "token_id": 3480, + "token_id": 3486, "o_rev_id": 754870462, "in": [], "out": [ @@ -30299,7 +30335,7 @@ }, { "str": "=", - "token_id": 3481, + "token_id": 3487, "o_rev_id": 754870462, "in": [], "out": [ @@ -30308,7 +30344,7 @@ }, { "str": "[[", - "token_id": 3482, + "token_id": 3488, "o_rev_id": 754870462, "in": [], "out": [ @@ -30317,7 +30353,7 @@ }, { "str": "graffiti", - "token_id": 3483, + "token_id": 3489, "o_rev_id": 754870462, "in": [], "out": [ @@ -30326,7 +30362,7 @@ }, { "str": "]]", - "token_id": 3484, + "token_id": 3490, "o_rev_id": 754870462, "in": [], "out": [ @@ -30335,7 +30371,7 @@ }, { "str": ",", - "token_id": 3485, + "token_id": 3491, "o_rev_id": 754870462, "in": [], "out": [ @@ -30344,56 +30380,56 @@ }, { "str": "[[", - "token_id": 3486, + "token_id": 3492, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "street", - "token_id": 3487, + "token_id": 3493, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "art", - "token_id": 3488, + "token_id": 3494, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "]]", - "token_id": 3489, + "token_id": 3495, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "|", - "token_id": 3490, + "token_id": 3496, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "website", - "token_id": 3491, + "token_id": 3497, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "=", - "token_id": 3492, + "token_id": 3498, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "", - "token_id": 3504, + "token_id": 3510, "o_rev_id": 754870462, "in": [], "out": [ @@ -30501,14 +30537,14 @@ }, { "str": "}}", - "token_id": 3505, + "token_id": 3511, "o_rev_id": 754870462, "in": [], "out": [] }, { "str": "\"", - "token_id": 3506, + "token_id": 3512, "o_rev_id": 754870595, "in": [], "out": [ @@ -30517,7 +30553,7 @@ }, { "str": "hanksy", - "token_id": 3507, + "token_id": 3513, "o_rev_id": 754870595, "in": [], "out": [ @@ -30526,7 +30562,7 @@ }, { "str": "\"", - "token_id": 3508, + "token_id": 3514, "o_rev_id": 754870595, "in": [], "out": [ @@ -30535,7 +30571,7 @@ }, { "str": "{{", - "token_id": 3509, + "token_id": 3515, "o_rev_id": 754870604, "in": [], "out": [ @@ -30544,7 +30580,7 @@ }, { "str": "url", - "token_id": 3510, + "token_id": 3516, "o_rev_id": 754870604, "in": [], "out": [ @@ -30553,7 +30589,7 @@ }, { "str": "|", - "token_id": 3511, + "token_id": 3517, "o_rev_id": 754870604, "in": [], "out": [ @@ -30562,7 +30598,7 @@ }, { "str": ":", - "token_id": 3512, + "token_id": 3518, "o_rev_id": 754870604, "in": [], "out": [ @@ -30571,7 +30607,7 @@ }, { "str": "/", - "token_id": 3513, + "token_id": 3519, "o_rev_id": 754870604, "in": [], "out": [ @@ -30580,7 +30616,7 @@ }, { "str": "}}", - "token_id": 3514, + "token_id": 3520, "o_rev_id": 754870604, "in": [], "out": [ @@ -30589,28 +30625,28 @@ }, { "str": "|", - "token_id": 3515, + "token_id": 3521, "o_rev_id": 754871023, "in": [], "out": [] }, { "str": "<", - "token_id": 3516, + "token_id": 3522, "o_rev_id": 754871023, "in": [], "out": [] }, { "str": "ref", - "token_id": 3517, + "token_id": 3523, "o_rev_id": 754871023, "in": [], "out": [] }, { "str": ">", - "token_id": 3518, + "token_id": 3524, "o_rev_id": 754871023, "in": [], "out": [ @@ -30619,7 +30655,7 @@ }, { "str": "{{", - "token_id": 3519, + "token_id": 3525, "o_rev_id": 754871023, "in": [], "out": [ @@ -30628,7 +30664,7 @@ }, { "str": "cite", - "token_id": 3520, + "token_id": 3526, "o_rev_id": 754871023, "in": [], "out": [ @@ -30637,7 +30673,7 @@ }, { "str": "news", - "token_id": 3521, + "token_id": 3527, "o_rev_id": 754871023, "in": [], "out": [ @@ -30646,7 +30682,7 @@ }, { "str": "|", - "token_id": 3522, + "token_id": 3528, "o_rev_id": 754871023, "in": [], "out": [ @@ -30655,7 +30691,7 @@ }, { "str": "url", - "token_id": 3523, + "token_id": 3529, "o_rev_id": 754871023, "in": [], "out": [ @@ -30664,7 +30700,7 @@ }, { "str": "=", - "token_id": 3524, + "token_id": 3530, "o_rev_id": 754871023, "in": [], "out": [ @@ -30673,7 +30709,7 @@ }, { "str": "title", - "token_id": 3525, + "token_id": 3531, "o_rev_id": 754871023, "in": [], "out": [ @@ -30682,7 +30718,7 @@ }, { "str": "=", - "token_id": 3526, + "token_id": 3532, "o_rev_id": 754871023, "in": [], "out": [ @@ -30691,7 +30727,7 @@ }, { "str": "hanksy", - "token_id": 3527, + "token_id": 3533, "o_rev_id": 754871023, "in": [], "out": [ @@ -30700,7 +30736,7 @@ }, { "str": "brings", - "token_id": 3528, + "token_id": 3534, "o_rev_id": 754871023, "in": [], "out": [ @@ -30709,7 +30745,7 @@ }, { "str": "his", - "token_id": 3529, + "token_id": 3535, "o_rev_id": 754871023, "in": [], "out": [ @@ -30718,7 +30754,7 @@ }, { "str": "\"", - "token_id": 3530, + "token_id": 3536, "o_rev_id": 754871023, "in": [], "out": [ @@ -30727,7 +30763,7 @@ }, { "str": "best", - "token_id": 3531, + "token_id": 3537, "o_rev_id": 754871023, "in": [], "out": [ @@ -30736,7 +30772,7 @@ }, { "str": "of", - "token_id": 3532, + "token_id": 3538, "o_rev_id": 754871023, "in": [], "out": [ @@ -30745,7 +30781,7 @@ }, { "str": "the", - "token_id": 3533, + "token_id": 3539, "o_rev_id": 754871023, "in": [], "out": [ @@ -30754,7 +30790,7 @@ }, { "str": "worst", - "token_id": 3534, + "token_id": 3540, "o_rev_id": 754871023, "in": [], "out": [ @@ -30763,7 +30799,7 @@ }, { "str": "\"", - "token_id": 3535, + "token_id": 3541, "o_rev_id": 754871023, "in": [], "out": [ @@ -30772,7 +30808,7 @@ }, { "str": "to", - "token_id": 3536, + "token_id": 3542, "o_rev_id": 754871023, "in": [], "out": [ @@ -30781,7 +30817,7 @@ }, { "str": "old", - "token_id": 3537, + "token_id": 3543, "o_rev_id": 754871023, "in": [], "out": [ @@ -30790,7 +30826,7 @@ }, { "str": "les", - "token_id": 3538, + "token_id": 3544, "o_rev_id": 754871023, "in": [], "out": [ @@ -30799,7 +30835,7 @@ }, { "str": "chase", - "token_id": 3539, + "token_id": 3545, "o_rev_id": 754871023, "in": [], "out": [ @@ -30808,7 +30844,7 @@ }, { "str": "bank", - "token_id": 3540, + "token_id": 3546, "o_rev_id": 754871023, "in": [], "out": [ @@ -30817,7 +30853,7 @@ }, { "str": "|", - "token_id": 3541, + "token_id": 3547, "o_rev_id": 754871023, "in": [], "out": [ @@ -30826,7 +30862,7 @@ }, { "str": "newspaper", - "token_id": 3542, + "token_id": 3548, "o_rev_id": 754871023, "in": [], "out": [ @@ -30835,7 +30871,7 @@ }, { "str": "=", - "token_id": 3543, + "token_id": 3549, "o_rev_id": 754871023, "in": [], "out": [ @@ -30844,7 +30880,7 @@ }, { "str": "gothamist", - "token_id": 3544, + "token_id": 3550, "o_rev_id": 754871023, "in": [], "out": [ @@ -30853,7 +30889,7 @@ }, { "str": "|", - "token_id": 3545, + "token_id": 3551, "o_rev_id": 754871023, "in": [], "out": [ @@ -30862,7 +30898,7 @@ }, { "str": "language", - "token_id": 3546, + "token_id": 3552, "o_rev_id": 754871023, "in": [], "out": [ @@ -30871,7 +30907,7 @@ }, { "str": "=", - "token_id": 3547, + "token_id": 3553, "o_rev_id": 754871023, "in": [], "out": [ @@ -30880,7 +30916,7 @@ }, { "str": "en", - "token_id": 3548, + "token_id": 3554, "o_rev_id": 754871023, "in": [], "out": [ @@ -30889,7 +30925,7 @@ }, { "str": "-", - "token_id": 3549, + "token_id": 3555, "o_rev_id": 754871023, "in": [], "out": [ @@ -30898,7 +30934,7 @@ }, { "str": "us", - "token_id": 3550, + "token_id": 3556, "o_rev_id": 754871023, "in": [], "out": [ @@ -30907,7 +30943,7 @@ }, { "str": "|", - "token_id": 3551, + "token_id": 3557, "o_rev_id": 754871023, "in": [], "out": [ @@ -30916,7 +30952,7 @@ }, { "str": "access", - "token_id": 3552, + "token_id": 3558, "o_rev_id": 754871023, "in": [], "out": [ @@ -30925,7 +30961,7 @@ }, { "str": "-", - "token_id": 3553, + "token_id": 3559, "o_rev_id": 754871023, "in": [], "out": [ @@ -30934,7 +30970,7 @@ }, { "str": "date", - "token_id": 3554, + "token_id": 3560, "o_rev_id": 754871023, "in": [], "out": [ @@ -30943,7 +30979,7 @@ }, { "str": "=", - "token_id": 3555, + "token_id": 3561, "o_rev_id": 754871023, "in": [], "out": [ @@ -30952,7 +30988,7 @@ }, { "str": "2016", - "token_id": 3556, + "token_id": 3562, "o_rev_id": 754871023, "in": [], "out": [ @@ -30961,7 +30997,7 @@ }, { "str": "-", - "token_id": 3557, + "token_id": 3563, "o_rev_id": 754871023, "in": [], "out": [ @@ -30970,7 +31006,7 @@ }, { "str": "12", - "token_id": 3558, + "token_id": 3564, "o_rev_id": 754871023, "in": [], "out": [ @@ -30979,7 +31015,7 @@ }, { "str": "-", - "token_id": 3559, + "token_id": 3565, "o_rev_id": 754871023, "in": [], "out": [ @@ -30988,7 +31024,7 @@ }, { "str": "14", - "token_id": 3560, + "token_id": 3566, "o_rev_id": 754871023, "in": [], "out": [ @@ -30997,7 +31033,7 @@ }, { "str": "}}", - "token_id": 3561, + "token_id": 3567, "o_rev_id": 754871023, "in": [], "out": [ @@ -31006,7 +31042,7 @@ }, { "str": "<", - "token_id": 3562, + "token_id": 3568, "o_rev_id": 754871023, "in": [], "out": [ @@ -31015,7 +31051,7 @@ }, { "str": "/", - "token_id": 3563, + "token_id": 3569, "o_rev_id": 754871023, "in": [], "out": [ @@ -31024,7 +31060,7 @@ }, { "str": "ref", - "token_id": 3564, + "token_id": 3570, "o_rev_id": 754871023, "in": [], "out": [ @@ -31033,14 +31069,14 @@ }, { "str": ">", - "token_id": 3565, + "token_id": 3571, "o_rev_id": 754871023, "in": [], "out": [] }, { "str": "'", - "token_id": 3566, + "token_id": 3572, "o_rev_id": 754871172, "in": [ 754872353, @@ -31055,7 +31091,7 @@ }, { "str": "'", - "token_id": 3567, + "token_id": 3573, "o_rev_id": 754871172, "in": [], "out": [ @@ -31064,7 +31100,7 @@ }, { "str": "taylor", - "token_id": 3568, + "token_id": 3574, "o_rev_id": 754871172, "in": [], "out": [ @@ -31073,7 +31109,7 @@ }, { "str": "photo", - "token_id": 3569, + "token_id": 3575, "o_rev_id": 754871172, "in": [ 754871949 @@ -31084,7 +31120,7 @@ }, { "str": "booth", - "token_id": 3570, + "token_id": 3576, "o_rev_id": 754871172, "in": [ 754871949 @@ -31095,7 +31131,7 @@ }, { "str": "'", - "token_id": 3571, + "token_id": 3577, "o_rev_id": 754871172, "in": [ 754871949 @@ -31106,7 +31142,7 @@ }, { "str": "\"", - "token_id": 3572, + "token_id": 3578, "o_rev_id": 754871172, "in": [ 754871949 @@ -31117,7 +31153,7 @@ }, { "str": "hanksy", - "token_id": 3573, + "token_id": 3579, "o_rev_id": 754871172, "in": [ 754871949 @@ -31128,7 +31164,7 @@ }, { "str": "\"", - "token_id": 3574, + "token_id": 3580, "o_rev_id": 754871172, "in": [ 754871652 @@ -31139,7 +31175,7 @@ }, { "str": "{{", - "token_id": 3575, + "token_id": 3581, "o_rev_id": 754871338, "in": [], "out": [ @@ -31148,7 +31184,7 @@ }, { "str": "external", - "token_id": 3576, + "token_id": 3582, "o_rev_id": 754871338, "in": [], "out": [ @@ -31157,7 +31193,7 @@ }, { "str": "links", - "token_id": 3577, + "token_id": 3583, "o_rev_id": 754871338, "in": [], "out": [ @@ -31166,7 +31202,7 @@ }, { "str": "|", - "token_id": 3578, + "token_id": 3584, "o_rev_id": 754871338, "in": [], "out": [ @@ -31175,7 +31211,7 @@ }, { "str": "date", - "token_id": 3579, + "token_id": 3585, "o_rev_id": 754871338, "in": [], "out": [ @@ -31184,7 +31220,7 @@ }, { "str": "=", - "token_id": 3580, + "token_id": 3586, "o_rev_id": 754871338, "in": [], "out": [ @@ -31193,7 +31229,7 @@ }, { "str": "june", - "token_id": 3581, + "token_id": 3587, "o_rev_id": 754871338, "in": [], "out": [ @@ -31202,7 +31238,7 @@ }, { "str": "2016", - "token_id": 3582, + "token_id": 3588, "o_rev_id": 754871338, "in": [], "out": [ @@ -31211,7 +31247,7 @@ }, { "str": "}}", - "token_id": 3583, + "token_id": 3589, "o_rev_id": 754871338, "in": [], "out": [ @@ -31220,7 +31256,7 @@ }, { "str": "*", - "token_id": 3584, + "token_id": 3590, "o_rev_id": 754871338, "in": [], "out": [ @@ -31229,7 +31265,7 @@ }, { "str": "http", - "token_id": 3585, + "token_id": 3591, "o_rev_id": 754871338, "in": [], "out": [ @@ -31238,7 +31274,7 @@ }, { "str": ":", - "token_id": 3586, + "token_id": 3592, "o_rev_id": 754871338, "in": [], "out": [ @@ -31247,7 +31283,7 @@ }, { "str": "/", - "token_id": 3587, + "token_id": 3593, "o_rev_id": 754871338, "in": [], "out": [ @@ -31256,7 +31292,7 @@ }, { "str": "/", - "token_id": 3588, + "token_id": 3594, "o_rev_id": 754871338, "in": [], "out": [ @@ -31265,7 +31301,7 @@ }, { "str": ".", - "token_id": 3589, + "token_id": 3595, "o_rev_id": 754871338, "in": [], "out": [ @@ -31274,7 +31310,7 @@ }, { "str": "com", - "token_id": 3590, + "token_id": 3596, "o_rev_id": 754871338, "in": [], "out": [ @@ -31283,7 +31319,7 @@ }, { "str": "/", - "token_id": 3591, + "token_id": 3597, "o_rev_id": 754871338, "in": [], "out": [ @@ -31292,7 +31328,7 @@ }, { "str": "(", - "token_id": 3592, + "token_id": 3598, "o_rev_id": 754871338, "in": [], "out": [ @@ -31301,7 +31337,7 @@ }, { "str": "website", - "token_id": 3593, + "token_id": 3599, "o_rev_id": 754871338, "in": [], "out": [ @@ -31310,7 +31346,7 @@ }, { "str": ")", - "token_id": 3594, + "token_id": 3600, "o_rev_id": 754871338, "in": [], "out": [ @@ -31319,7 +31355,7 @@ }, { "str": "*", - "token_id": 3595, + "token_id": 3601, "o_rev_id": 754871338, "in": [], "out": [ @@ -31328,7 +31364,7 @@ }, { "str": "http", - "token_id": 3596, + "token_id": 3602, "o_rev_id": 754871338, "in": [], "out": [ @@ -31337,7 +31373,7 @@ }, { "str": ":", - "token_id": 3597, + "token_id": 3603, "o_rev_id": 754871338, "in": [], "out": [ @@ -31346,7 +31382,7 @@ }, { "str": "/", - "token_id": 3598, + "token_id": 3604, "o_rev_id": 754871338, "in": [], "out": [ @@ -31355,7 +31391,7 @@ }, { "str": "/", - "token_id": 3599, + "token_id": 3605, "o_rev_id": 754871338, "in": [], "out": [ @@ -31364,7 +31400,7 @@ }, { "str": "http", - "token_id": 3600, + "token_id": 3606, "o_rev_id": 754871338, "in": [], "out": [ @@ -31373,7 +31409,7 @@ }, { "str": ":", - "token_id": 3601, + "token_id": 3607, "o_rev_id": 754871338, "in": [], "out": [ @@ -31382,7 +31418,7 @@ }, { "str": "/", - "token_id": 3602, + "token_id": 3608, "o_rev_id": 754871338, "in": [], "out": [ @@ -31391,7 +31427,7 @@ }, { "str": "/", - "token_id": 3603, + "token_id": 3609, "o_rev_id": 754871338, "in": [], "out": [ @@ -31400,7 +31436,7 @@ }, { "str": "www", - "token_id": 3604, + "token_id": 3610, "o_rev_id": 754871338, "in": [], "out": [ @@ -31409,7 +31445,7 @@ }, { "str": ".", - "token_id": 3605, + "token_id": 3611, "o_rev_id": 754871338, "in": [], "out": [ @@ -31418,7 +31454,7 @@ }, { "str": "ovationtv", - "token_id": 3606, + "token_id": 3612, "o_rev_id": 754871338, "in": [], "out": [ @@ -31427,7 +31463,7 @@ }, { "str": ".", - "token_id": 3607, + "token_id": 3613, "o_rev_id": 754871338, "in": [], "out": [ @@ -31436,7 +31472,7 @@ }, { "str": "com", - "token_id": 3608, + "token_id": 3614, "o_rev_id": 754871338, "in": [], "out": [ @@ -31445,7 +31481,7 @@ }, { "str": "/", - "token_id": 3609, + "token_id": 3615, "o_rev_id": 754871338, "in": [], "out": [ @@ -31454,7 +31490,7 @@ }, { "str": "series", - "token_id": 3610, + "token_id": 3616, "o_rev_id": 754871338, "in": [], "out": [ @@ -31463,7 +31499,7 @@ }, { "str": "/", - "token_id": 3611, + "token_id": 3617, "o_rev_id": 754871338, "in": [], "out": [ @@ -31472,7 +31508,7 @@ }, { "str": "hanksy", - "token_id": 3612, + "token_id": 3618, "o_rev_id": 754871338, "in": [], "out": [ @@ -31481,7 +31517,7 @@ }, { "str": "-", - "token_id": 3613, + "token_id": 3619, "o_rev_id": 754871338, "in": [], "out": [ @@ -31490,7 +31526,7 @@ }, { "str": "surplus", - "token_id": 3614, + "token_id": 3620, "o_rev_id": 754871338, "in": [], "out": [ @@ -31499,7 +31535,7 @@ }, { "str": "-", - "token_id": 3615, + "token_id": 3621, "o_rev_id": 754871338, "in": [], "out": [ @@ -31508,7 +31544,7 @@ }, { "str": "candy", - "token_id": 3616, + "token_id": 3622, "o_rev_id": 754871338, "in": [], "out": [ @@ -31517,7 +31553,7 @@ }, { "str": "/", - "token_id": 3617, + "token_id": 3623, "o_rev_id": 754871338, "in": [], "out": [ @@ -31526,7 +31562,7 @@ }, { "str": "/", - "token_id": 3618, + "token_id": 3624, "o_rev_id": 754871338, "in": [], "out": [ @@ -31535,7 +31571,7 @@ }, { "str": "(", - "token_id": 3619, + "token_id": 3625, "o_rev_id": 754871338, "in": [], "out": [ @@ -31544,7 +31580,7 @@ }, { "str": "ovation", - "token_id": 3620, + "token_id": 3626, "o_rev_id": 754871338, "in": [], "out": [ @@ -31553,7 +31589,7 @@ }, { "str": "tv", - "token_id": 3621, + "token_id": 3627, "o_rev_id": 754871338, "in": [], "out": [ @@ -31562,7 +31598,7 @@ }, { "str": ":", - "token_id": 3622, + "token_id": 3628, "o_rev_id": 754871338, "in": [], "out": [ @@ -31571,7 +31607,7 @@ }, { "str": "surplus", - "token_id": 3623, + "token_id": 3629, "o_rev_id": 754871338, "in": [], "out": [ @@ -31580,7 +31616,7 @@ }, { "str": "candy", - "token_id": 3624, + "token_id": 3630, "o_rev_id": 754871338, "in": [], "out": [ @@ -31589,7 +31625,7 @@ }, { "str": ")", - "token_id": 3625, + "token_id": 3631, "o_rev_id": 754871338, "in": [], "out": [ @@ -31598,7 +31634,7 @@ }, { "str": "\"", - "token_id": 3626, + "token_id": 3632, "o_rev_id": 754871652, "in": [], "out": [ @@ -31607,7 +31643,7 @@ }, { "str": "hanksy", - "token_id": 3627, + "token_id": 3633, "o_rev_id": 754871652, "in": [], "out": [ @@ -31616,142 +31652,88 @@ }, { "str": "[[", - "token_id": 3628, + "token_id": 3634, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "wonka", - "token_id": 3629, + "token_id": 3635, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "&", - "token_id": 3630, + "token_id": 3636, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "the", - "token_id": 3631, + "token_id": 3637, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "chocolate", - "token_id": 3632, + "token_id": 3638, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "factory", - "token_id": 3633, + "token_id": 3639, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "|", - "token_id": 3634, + "token_id": 3640, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "willy", - "token_id": 3635, + "token_id": 3641, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "wonka", - "token_id": 3636, + "token_id": 3642, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "]]", - "token_id": 3637, + "token_id": 3643, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "[[", - "token_id": 3638, + "token_id": 3644, "o_rev_id": 754871949, "in": [], "out": [] }, { "str": "]]", - "token_id": 3639, + "token_id": 3645, "o_rev_id": 754871949, "in": [], "out": [] }, - { - "str": "'", - "token_id": 3640, - "o_rev_id": 754872353, - "in": [], - "out": [ - 754872400 - ] - }, - { - "str": "'", - "token_id": 3641, - "o_rev_id": 754872353, - "in": [], - "out": [ - 754872400 - ] - }, - { - "str": "'", - "token_id": 3642, - "o_rev_id": 754872353, - "in": [], - "out": [ - 754872400 - ] - }, - { - "str": "'", - "token_id": 3643, - "o_rev_id": 754872353, - "in": [], - "out": [ - 754872400 - ] - }, - { - "str": "'", - "token_id": 3644, - "o_rev_id": 754872353, - "in": [], - "out": [ - 754872400 - ] - }, - { - "str": "'", - "token_id": 3645, - "o_rev_id": 754872353, - "in": [], - "out": [ - 754872400 - ] - }, { "str": "'", "token_id": 3646, @@ -31879,8 +31861,62 @@ ] }, { - "str": "[[", + "str": "'", "token_id": 3660, + "o_rev_id": 754872353, + "in": [], + "out": [ + 754872400 + ] + }, + { + "str": "'", + "token_id": 3661, + "o_rev_id": 754872353, + "in": [], + "out": [ + 754872400 + ] + }, + { + "str": "'", + "token_id": 3662, + "o_rev_id": 754872353, + "in": [], + "out": [ + 754872400 + ] + }, + { + "str": "'", + "token_id": 3663, + "o_rev_id": 754872353, + "in": [], + "out": [ + 754872400 + ] + }, + { + "str": "'", + "token_id": 3664, + "o_rev_id": 754872353, + "in": [], + "out": [ + 754872400 + ] + }, + { + "str": "'", + "token_id": 3665, + "o_rev_id": 754872353, + "in": [], + "out": [ + 754872400 + ] + }, + { + "str": "[[", + "token_id": 3666, "o_rev_id": 754872629, "in": [ 754873396 @@ -31892,7 +31928,7 @@ }, { "str": "]]", - "token_id": 3661, + "token_id": 3667, "o_rev_id": 754872629, "in": [ 754873396 @@ -31904,7 +31940,7 @@ }, { "str": "[[", - "token_id": 3662, + "token_id": 3668, "o_rev_id": 754872629, "in": [ 825656022 @@ -31916,7 +31952,7 @@ }, { "str": "]]", - "token_id": 3663, + "token_id": 3669, "o_rev_id": 754872629, "in": [ 825656022 @@ -31928,56 +31964,56 @@ }, { "str": "[[", - "token_id": 3664, + "token_id": 3670, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "banksy", - "token_id": 3665, + "token_id": 3671, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "]]", - "token_id": 3666, + "token_id": 3672, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "'", - "token_id": 3667, + "token_id": 3673, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "[[", - "token_id": 3668, + "token_id": 3674, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "]]", - "token_id": 3669, + "token_id": 3675, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "[[", - "token_id": 3670, + "token_id": 3676, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "]]", - "token_id": 3671, + "token_id": 3677, "o_rev_id": 754872629, "in": [], "out": [ @@ -31986,14 +32022,14 @@ }, { "str": "[[", - "token_id": 3672, + "token_id": 3678, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "]]", - "token_id": 3673, + "token_id": 3679, "o_rev_id": 754872629, "in": [], "out": [ @@ -32002,49 +32038,49 @@ }, { "str": ",", - "token_id": 3674, + "token_id": 3680, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "[[", - "token_id": 3675, + "token_id": 3681, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "los", - "token_id": 3676, + "token_id": 3682, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "angeles", - "token_id": 3677, + "token_id": 3683, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "(", - "token_id": 3678, + "token_id": 3684, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": ")", - "token_id": 3679, + "token_id": 3685, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "|", - "token_id": 3680, + "token_id": 3686, "o_rev_id": 754872629, "in": [], "out": [ @@ -32053,21 +32089,21 @@ }, { "str": "]]", - "token_id": 3681, + "token_id": 3687, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "[[", - "token_id": 3682, + "token_id": 3688, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "]]", - "token_id": 3683, + "token_id": 3689, "o_rev_id": 754872629, "in": [], "out": [ @@ -32076,35 +32112,35 @@ }, { "str": "'", - "token_id": 3684, + "token_id": 3690, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "'", - "token_id": 3685, + "token_id": 3691, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "'", - "token_id": 3686, + "token_id": 3692, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "'", - "token_id": 3687, + "token_id": 3693, "o_rev_id": 754872629, "in": [], "out": [] }, { "str": "[[", - "token_id": 3688, + "token_id": 3694, "o_rev_id": 754872629, "in": [], "out": [ @@ -32113,7 +32149,7 @@ }, { "str": "ovation", - "token_id": 3689, + "token_id": 3695, "o_rev_id": 754872629, "in": [], "out": [ @@ -32122,7 +32158,7 @@ }, { "str": "(", - "token_id": 3690, + "token_id": 3696, "o_rev_id": 754872629, "in": [], "out": [ @@ -32131,7 +32167,7 @@ }, { "str": "disambiguation", - "token_id": 3691, + "token_id": 3697, "o_rev_id": 754872629, "in": [], "out": [ @@ -32140,7 +32176,7 @@ }, { "str": ")", - "token_id": 3692, + "token_id": 3698, "o_rev_id": 754872629, "in": [], "out": [ @@ -32149,7 +32185,7 @@ }, { "str": "|", - "token_id": 3693, + "token_id": 3699, "o_rev_id": 754872629, "in": [], "out": [ @@ -32158,7 +32194,7 @@ }, { "str": "]]", - "token_id": 3694, + "token_id": 3700, "o_rev_id": 754872629, "in": [], "out": [ @@ -32167,7 +32203,7 @@ }, { "str": "[[", - "token_id": 3695, + "token_id": 3701, "o_rev_id": 754872913, "in": [], "out": [ @@ -32176,7 +32212,7 @@ }, { "str": "]]", - "token_id": 3696, + "token_id": 3702, "o_rev_id": 754872913, "in": [], "out": [ @@ -32185,35 +32221,35 @@ }, { "str": "[[", - "token_id": 3697, + "token_id": 3703, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "]]", - "token_id": 3698, + "token_id": 3704, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "[[", - "token_id": 3699, + "token_id": 3705, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "]]", - "token_id": 3700, + "token_id": 3706, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "[[", - "token_id": 3701, + "token_id": 3707, "o_rev_id": 754872913, "in": [], "out": [ @@ -32222,7 +32258,7 @@ }, { "str": "political", - "token_id": 3702, + "token_id": 3708, "o_rev_id": 754872913, "in": [], "out": [ @@ -32231,7 +32267,7 @@ }, { "str": "criticism", - "token_id": 3703, + "token_id": 3709, "o_rev_id": 754872913, "in": [], "out": [ @@ -32240,7 +32276,7 @@ }, { "str": "|", - "token_id": 3704, + "token_id": 3710, "o_rev_id": 754872913, "in": [], "out": [ @@ -32249,7 +32285,7 @@ }, { "str": "]]", - "token_id": 3705, + "token_id": 3711, "o_rev_id": 754872913, "in": [], "out": [ @@ -32258,42 +32294,42 @@ }, { "str": "[[", - "token_id": 3706, + "token_id": 3712, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "]]", - "token_id": 3707, + "token_id": 3713, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "[[", - "token_id": 3708, + "token_id": 3714, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "]]", - "token_id": 3709, + "token_id": 3715, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "[[", - "token_id": 3710, + "token_id": 3716, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "|", - "token_id": 3711, + "token_id": 3717, "o_rev_id": 754872913, "in": [], "out": [ @@ -32302,21 +32338,21 @@ }, { "str": "'", - "token_id": 3712, + "token_id": 3718, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "'", - "token_id": 3713, + "token_id": 3719, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "the", - "token_id": 3714, + "token_id": 3720, "o_rev_id": 754872913, "in": [], "out": [ @@ -32325,7 +32361,7 @@ }, { "str": "huffington", - "token_id": 3715, + "token_id": 3721, "o_rev_id": 754872913, "in": [], "out": [ @@ -32334,7 +32370,7 @@ }, { "str": "post", - "token_id": 3716, + "token_id": 3722, "o_rev_id": 754872913, "in": [], "out": [ @@ -32343,7 +32379,7 @@ }, { "str": "'", - "token_id": 3717, + "token_id": 3723, "o_rev_id": 754872913, "in": [], "out": [ @@ -32352,7 +32388,7 @@ }, { "str": "'", - "token_id": 3718, + "token_id": 3724, "o_rev_id": 754872913, "in": [], "out": [ @@ -32361,7 +32397,7 @@ }, { "str": "]]", - "token_id": 3719, + "token_id": 3725, "o_rev_id": 754872913, "in": [], "out": [ @@ -32370,21 +32406,21 @@ }, { "str": "[[", - "token_id": 3720, + "token_id": 3726, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "]]", - "token_id": 3721, + "token_id": 3727, "o_rev_id": 754872913, "in": [], "out": [] }, { "str": "[[", - "token_id": 3722, + "token_id": 3728, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32395,7 +32431,7 @@ }, { "str": "]]", - "token_id": 3723, + "token_id": 3729, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32406,7 +32442,7 @@ }, { "str": "[[", - "token_id": 3724, + "token_id": 3730, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32417,7 +32453,7 @@ }, { "str": "]]", - "token_id": 3725, + "token_id": 3731, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32428,7 +32464,7 @@ }, { "str": "[[", - "token_id": 3726, + "token_id": 3732, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32439,7 +32475,7 @@ }, { "str": ",", - "token_id": 3727, + "token_id": 3733, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32450,7 +32486,7 @@ }, { "str": "los", - "token_id": 3728, + "token_id": 3734, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32461,7 +32497,7 @@ }, { "str": "angeles", - "token_id": 3729, + "token_id": 3735, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32472,7 +32508,7 @@ }, { "str": "|", - "token_id": 3730, + "token_id": 3736, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32483,7 +32519,7 @@ }, { "str": "west", - "token_id": 3731, + "token_id": 3737, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32494,7 +32530,7 @@ }, { "str": "adams", - "token_id": 3732, + "token_id": 3738, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32505,7 +32541,7 @@ }, { "str": "]]", - "token_id": 3733, + "token_id": 3739, "o_rev_id": 754872913, "in": [ 1163557612 @@ -32516,7 +32552,7 @@ }, { "str": "[[", - "token_id": 3734, + "token_id": 3740, "o_rev_id": 754872913, "in": [], "out": [ @@ -32525,7 +32561,7 @@ }, { "str": "ovation", - "token_id": 3735, + "token_id": 3741, "o_rev_id": 754872913, "in": [], "out": [ @@ -32534,7 +32570,7 @@ }, { "str": "(", - "token_id": 3736, + "token_id": 3742, "o_rev_id": 754872913, "in": [], "out": [ @@ -32543,7 +32579,7 @@ }, { "str": "disambiguation", - "token_id": 3737, + "token_id": 3743, "o_rev_id": 754872913, "in": [], "out": [ @@ -32552,7 +32588,7 @@ }, { "str": ")", - "token_id": 3738, + "token_id": 3744, "o_rev_id": 754872913, "in": [], "out": [ @@ -32561,7 +32597,7 @@ }, { "str": "|", - "token_id": 3739, + "token_id": 3745, "o_rev_id": 754872913, "in": [], "out": [ @@ -32570,7 +32606,7 @@ }, { "str": "]]", - "token_id": 3740, + "token_id": 3746, "o_rev_id": 754872913, "in": [], "out": [ @@ -32579,7 +32615,7 @@ }, { "str": "[[", - "token_id": 3741, + "token_id": 3747, "o_rev_id": 754872941, "in": [ 754874216 @@ -32591,7 +32627,7 @@ }, { "str": "anonymity", - "token_id": 3742, + "token_id": 3748, "o_rev_id": 754872941, "in": [ 754874216 @@ -32603,7 +32639,7 @@ }, { "str": "|", - "token_id": 3743, + "token_id": 3749, "o_rev_id": 754872941, "in": [ 754874216 @@ -32615,7 +32651,7 @@ }, { "str": "]]", - "token_id": 3744, + "token_id": 3750, "o_rev_id": 754872941, "in": [ 754874216 @@ -32627,56 +32663,6 @@ }, { "str": "|", - "token_id": 3745, - "o_rev_id": 754872941, - "in": [], - "out": [ - 754920833 - ] - }, - { - "str": "'", - "token_id": 3746, - "o_rev_id": 754872941, - "in": [], - "out": [] - }, - { - "str": "'", - "token_id": 3747, - "o_rev_id": 754872941, - "in": [], - "out": [] - }, - { - "str": "the", - "token_id": 3748, - "o_rev_id": 754872941, - "in": [], - "out": [ - 754920833 - ] - }, - { - "str": "new", - "token_id": 3749, - "o_rev_id": 754872941, - "in": [], - "out": [ - 754920833 - ] - }, - { - "str": "york", - "token_id": 3750, - "o_rev_id": 754872941, - "in": [], - "out": [ - 754920833 - ] - }, - { - "str": "times", "token_id": 3751, "o_rev_id": 754872941, "in": [], @@ -32699,7 +32685,7 @@ "out": [] }, { - "str": "|", + "str": "the", "token_id": 3754, "o_rev_id": 754872941, "in": [], @@ -32708,22 +32694,72 @@ ] }, { - "str": "'", + "str": "new", "token_id": 3755, "o_rev_id": 754872941, "in": [], + "out": [ + 754920833 + ] + }, + { + "str": "york", + "token_id": 3756, + "o_rev_id": 754872941, + "in": [], + "out": [ + 754920833 + ] + }, + { + "str": "times", + "token_id": 3757, + "o_rev_id": 754872941, + "in": [], + "out": [ + 754920833 + ] + }, + { + "str": "'", + "token_id": 3758, + "o_rev_id": 754872941, + "in": [], "out": [] }, { "str": "'", - "token_id": 3756, + "token_id": 3759, + "o_rev_id": 754872941, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3760, + "o_rev_id": 754872941, + "in": [], + "out": [ + 754920833 + ] + }, + { + "str": "'", + "token_id": 3761, + "o_rev_id": 754872941, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3762, "o_rev_id": 754872941, "in": [], "out": [] }, { "str": "rolling", - "token_id": 3757, + "token_id": 3763, "o_rev_id": 754872941, "in": [], "out": [ @@ -32732,7 +32768,7 @@ }, { "str": "stone", - "token_id": 3758, + "token_id": 3764, "o_rev_id": 754872941, "in": [], "out": [ @@ -32741,7 +32777,7 @@ }, { "str": "'", - "token_id": 3759, + "token_id": 3765, "o_rev_id": 754872941, "in": [], "out": [ @@ -32750,7 +32786,7 @@ }, { "str": "'", - "token_id": 3760, + "token_id": 3766, "o_rev_id": 754872941, "in": [], "out": [ @@ -32759,42 +32795,42 @@ }, { "str": "|", - "token_id": 3761, + "token_id": 3767, "o_rev_id": 754872941, "in": [], "out": [] }, { "str": "'", - "token_id": 3762, + "token_id": 3768, "o_rev_id": 754872941, "in": [], "out": [] }, { "str": "'", - "token_id": 3763, + "token_id": 3769, "o_rev_id": 754872941, "in": [], "out": [] }, { "str": "'", - "token_id": 3764, + "token_id": 3770, "o_rev_id": 754872941, "in": [], "out": [] }, { "str": "'", - "token_id": 3765, + "token_id": 3771, "o_rev_id": 754872941, "in": [], "out": [] }, { "str": "|", - "token_id": 3766, + "token_id": 3772, "o_rev_id": 754872941, "in": [], "out": [ @@ -32803,21 +32839,21 @@ }, { "str": "'", - "token_id": 3767, + "token_id": 3773, "o_rev_id": 754872941, "in": [], "out": [] }, { "str": "'", - "token_id": 3768, + "token_id": 3774, "o_rev_id": 754872941, "in": [], "out": [] }, { "str": "the", - "token_id": 3769, + "token_id": 3775, "o_rev_id": 754872941, "in": [], "out": [ @@ -32826,7 +32862,7 @@ }, { "str": "washington", - "token_id": 3770, + "token_id": 3776, "o_rev_id": 754872941, "in": [], "out": [ @@ -32835,7 +32871,7 @@ }, { "str": "post", - "token_id": 3771, + "token_id": 3777, "o_rev_id": 754872941, "in": [], "out": [ @@ -32844,7 +32880,7 @@ }, { "str": "'", - "token_id": 3772, + "token_id": 3778, "o_rev_id": 754872941, "in": [], "out": [ @@ -32853,7 +32889,7 @@ }, { "str": "'", - "token_id": 3773, + "token_id": 3779, "o_rev_id": 754872941, "in": [], "out": [ @@ -32862,7 +32898,7 @@ }, { "str": "'", - "token_id": 3774, + "token_id": 3780, "o_rev_id": 754873335, "in": [], "out": [ @@ -32871,7 +32907,7 @@ }, { "str": "[[", - "token_id": 3775, + "token_id": 3781, "o_rev_id": 754873396, "in": [], "out": [ @@ -32880,21 +32916,21 @@ }, { "str": "ovation", - "token_id": 3776, + "token_id": 3782, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "(", - "token_id": 3777, + "token_id": 3783, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "disambiguation", - "token_id": 3778, + "token_id": 3784, "o_rev_id": 754873396, "in": [], "out": [ @@ -32903,14 +32939,14 @@ }, { "str": ")", - "token_id": 3779, + "token_id": 3785, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 3780, + "token_id": 3786, "o_rev_id": 754873396, "in": [], "out": [ @@ -32919,7 +32955,7 @@ }, { "str": "]]", - "token_id": 3781, + "token_id": 3787, "o_rev_id": 754873396, "in": [], "out": [ @@ -32928,70 +32964,70 @@ }, { "str": "<", - "token_id": 3782, + "token_id": 3788, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "ref", - "token_id": 3783, + "token_id": 3789, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ">", - "token_id": 3784, + "token_id": 3790, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "{{", - "token_id": 3785, + "token_id": 3791, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "cite", - "token_id": 3786, + "token_id": 3792, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "web", - "token_id": 3787, + "token_id": 3793, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 3788, + "token_id": 3794, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "url", - "token_id": 3789, + "token_id": 3795, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "=", - "token_id": 3790, + "token_id": 3796, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "http", - "token_id": 3791, + "token_id": 3797, "o_rev_id": 754873396, "in": [], "out": [ @@ -33000,7 +33036,7 @@ }, { "str": ":", - "token_id": 3792, + "token_id": 3798, "o_rev_id": 754873396, "in": [], "out": [ @@ -33009,7 +33045,7 @@ }, { "str": "/", - "token_id": 3793, + "token_id": 3799, "o_rev_id": 754873396, "in": [], "out": [ @@ -33018,7 +33054,7 @@ }, { "str": "/", - "token_id": 3794, + "token_id": 3800, "o_rev_id": 754873396, "in": [], "out": [ @@ -33027,7 +33063,7 @@ }, { "str": "www", - "token_id": 3795, + "token_id": 3801, "o_rev_id": 754873396, "in": [], "out": [ @@ -33036,7 +33072,7 @@ }, { "str": ".", - "token_id": 3796, + "token_id": 3802, "o_rev_id": 754873396, "in": [], "out": [ @@ -33045,35 +33081,35 @@ }, { "str": "artnet", - "token_id": 3797, + "token_id": 3803, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 3798, + "token_id": 3804, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "com", - "token_id": 3799, + "token_id": 3805, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 3800, + "token_id": 3806, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "magazineus", - "token_id": 3801, + "token_id": 3807, "o_rev_id": 754873396, "in": [], "out": [ @@ -33082,7 +33118,7 @@ }, { "str": "/", - "token_id": 3802, + "token_id": 3808, "o_rev_id": 754873396, "in": [], "out": [ @@ -33091,7 +33127,7 @@ }, { "str": "features", - "token_id": 3803, + "token_id": 3809, "o_rev_id": 754873396, "in": [], "out": [ @@ -33100,7 +33136,7 @@ }, { "str": "/", - "token_id": 3804, + "token_id": 3810, "o_rev_id": 754873396, "in": [], "out": [ @@ -33109,7 +33145,7 @@ }, { "str": "jen", - "token_id": 3805, + "token_id": 3811, "o_rev_id": 754873396, "in": [], "out": [ @@ -33118,7 +33154,7 @@ }, { "str": "/", - "token_id": 3806, + "token_id": 3812, "o_rev_id": 754873396, "in": [], "out": [ @@ -33127,7 +33163,7 @@ }, { "str": "reverend", - "token_id": 3807, + "token_id": 3813, "o_rev_id": 754873396, "in": [], "out": [ @@ -33136,7 +33172,7 @@ }, { "str": "-", - "token_id": 3808, + "token_id": 3814, "o_rev_id": 754873396, "in": [], "out": [ @@ -33145,7 +33181,7 @@ }, { "str": "jen", - "token_id": 3809, + "token_id": 3815, "o_rev_id": 754873396, "in": [], "out": [ @@ -33154,7 +33190,7 @@ }, { "str": "-", - "token_id": 3810, + "token_id": 3816, "o_rev_id": 754873396, "in": [], "out": [ @@ -33163,7 +33199,7 @@ }, { "str": "art", - "token_id": 3811, + "token_id": 3817, "o_rev_id": 754873396, "in": [], "out": [ @@ -33172,7 +33208,7 @@ }, { "str": "-", - "token_id": 3812, + "token_id": 3818, "o_rev_id": 754873396, "in": [], "out": [ @@ -33181,7 +33217,7 @@ }, { "str": "show", - "token_id": 3813, + "token_id": 3819, "o_rev_id": 754873396, "in": [], "out": [ @@ -33190,7 +33226,7 @@ }, { "str": "-", - "token_id": 3814, + "token_id": 3820, "o_rev_id": 754873396, "in": [], "out": [ @@ -33199,7 +33235,7 @@ }, { "str": "1", - "token_id": 3815, + "token_id": 3821, "o_rev_id": 754873396, "in": [], "out": [ @@ -33208,7 +33244,7 @@ }, { "str": "-", - "token_id": 3816, + "token_id": 3822, "o_rev_id": 754873396, "in": [], "out": [ @@ -33217,7 +33253,7 @@ }, { "str": "17", - "token_id": 3817, + "token_id": 3823, "o_rev_id": 754873396, "in": [], "out": [ @@ -33226,7 +33262,7 @@ }, { "str": "-", - "token_id": 3818, + "token_id": 3824, "o_rev_id": 754873396, "in": [], "out": [ @@ -33235,7 +33271,7 @@ }, { "str": "12", - "token_id": 3819, + "token_id": 3825, "o_rev_id": 754873396, "in": [], "out": [ @@ -33244,7 +33280,7 @@ }, { "str": ".", - "token_id": 3820, + "token_id": 3826, "o_rev_id": 754873396, "in": [], "out": [ @@ -33253,7 +33289,7 @@ }, { "str": "asp", - "token_id": 3821, + "token_id": 3827, "o_rev_id": 754873396, "in": [], "out": [ @@ -33262,7 +33298,7 @@ }, { "str": "|", - "token_id": 3822, + "token_id": 3828, "o_rev_id": 754873396, "in": [], "out": [ @@ -33271,7 +33307,7 @@ }, { "str": "title", - "token_id": 3823, + "token_id": 3829, "o_rev_id": 754873396, "in": [], "out": [ @@ -33280,7 +33316,7 @@ }, { "str": "=", - "token_id": 3824, + "token_id": 3830, "o_rev_id": 754873396, "in": [], "out": [ @@ -33289,7 +33325,7 @@ }, { "str": "reverend", - "token_id": 3825, + "token_id": 3831, "o_rev_id": 754873396, "in": [], "out": [ @@ -33298,7 +33334,7 @@ }, { "str": "jen", - "token_id": 3826, + "token_id": 3832, "o_rev_id": 754873396, "in": [], "out": [ @@ -33307,7 +33343,7 @@ }, { "str": "exclusive", - "token_id": 3827, + "token_id": 3833, "o_rev_id": 754873396, "in": [], "out": [ @@ -33316,7 +33352,7 @@ }, { "str": "on", - "token_id": 3828, + "token_id": 3834, "o_rev_id": 754873396, "in": [], "out": [ @@ -33325,7 +33361,7 @@ }, { "str": "hanksy", - "token_id": 3829, + "token_id": 3835, "o_rev_id": 754873396, "in": [], "out": [ @@ -33334,7 +33370,7 @@ }, { "str": ",", - "token_id": 3830, + "token_id": 3836, "o_rev_id": 754873396, "in": [], "out": [ @@ -33343,7 +33379,7 @@ }, { "str": "the", - "token_id": 3831, + "token_id": 3837, "o_rev_id": 754873396, "in": [], "out": [ @@ -33352,7 +33388,7 @@ }, { "str": "tom", - "token_id": 3832, + "token_id": 3838, "o_rev_id": 754873396, "in": [], "out": [ @@ -33361,7 +33397,7 @@ }, { "str": "hanks", - "token_id": 3833, + "token_id": 3839, "o_rev_id": 754873396, "in": [], "out": [ @@ -33370,7 +33406,7 @@ }, { "str": "-", - "token_id": 3834, + "token_id": 3840, "o_rev_id": 754873396, "in": [], "out": [ @@ -33379,7 +33415,7 @@ }, { "str": "banksy", - "token_id": 3835, + "token_id": 3841, "o_rev_id": 754873396, "in": [], "out": [ @@ -33388,7 +33424,7 @@ }, { "str": "mashup", - "token_id": 3836, + "token_id": 3842, "o_rev_id": 754873396, "in": [], "out": [ @@ -33397,7 +33433,7 @@ }, { "str": "artist", - "token_id": 3837, + "token_id": 3843, "o_rev_id": 754873396, "in": [], "out": [ @@ -33406,7 +33442,7 @@ }, { "str": "-", - "token_id": 3838, + "token_id": 3844, "o_rev_id": 754873396, "in": [], "out": [ @@ -33415,7 +33451,7 @@ }, { "str": "artnet", - "token_id": 3839, + "token_id": 3845, "o_rev_id": 754873396, "in": [], "out": [ @@ -33424,7 +33460,7 @@ }, { "str": "magazine", - "token_id": 3840, + "token_id": 3846, "o_rev_id": 754873396, "in": [], "out": [ @@ -33433,7 +33469,7 @@ }, { "str": "|", - "token_id": 3841, + "token_id": 3847, "o_rev_id": 754873396, "in": [], "out": [ @@ -33442,7 +33478,7 @@ }, { "str": "website", - "token_id": 3842, + "token_id": 3848, "o_rev_id": 754873396, "in": [], "out": [ @@ -33451,7 +33487,7 @@ }, { "str": "=", - "token_id": 3843, + "token_id": 3849, "o_rev_id": 754873396, "in": [], "out": [ @@ -33460,7 +33496,7 @@ }, { "str": "www", - "token_id": 3844, + "token_id": 3850, "o_rev_id": 754873396, "in": [], "out": [ @@ -33469,7 +33505,7 @@ }, { "str": ".", - "token_id": 3845, + "token_id": 3851, "o_rev_id": 754873396, "in": [], "out": [ @@ -33478,7 +33514,7 @@ }, { "str": "artnet", - "token_id": 3846, + "token_id": 3852, "o_rev_id": 754873396, "in": [], "out": [ @@ -33487,7 +33523,7 @@ }, { "str": ".", - "token_id": 3847, + "token_id": 3853, "o_rev_id": 754873396, "in": [], "out": [ @@ -33496,7 +33532,7 @@ }, { "str": "com", - "token_id": 3848, + "token_id": 3854, "o_rev_id": 754873396, "in": [], "out": [ @@ -33505,7 +33541,7 @@ }, { "str": "|", - "token_id": 3849, + "token_id": 3855, "o_rev_id": 754873396, "in": [], "out": [ @@ -33514,7 +33550,7 @@ }, { "str": "access", - "token_id": 3850, + "token_id": 3856, "o_rev_id": 754873396, "in": [], "out": [ @@ -33523,7 +33559,7 @@ }, { "str": "-", - "token_id": 3851, + "token_id": 3857, "o_rev_id": 754873396, "in": [], "out": [ @@ -33532,7 +33568,7 @@ }, { "str": "date", - "token_id": 3852, + "token_id": 3858, "o_rev_id": 754873396, "in": [], "out": [ @@ -33541,7 +33577,7 @@ }, { "str": "=", - "token_id": 3853, + "token_id": 3859, "o_rev_id": 754873396, "in": [], "out": [ @@ -33550,7 +33586,7 @@ }, { "str": "2016", - "token_id": 3854, + "token_id": 3860, "o_rev_id": 754873396, "in": [], "out": [ @@ -33559,7 +33595,7 @@ }, { "str": "-", - "token_id": 3855, + "token_id": 3861, "o_rev_id": 754873396, "in": [], "out": [ @@ -33568,7 +33604,7 @@ }, { "str": "12", - "token_id": 3856, + "token_id": 3862, "o_rev_id": 754873396, "in": [], "out": [ @@ -33577,7 +33613,7 @@ }, { "str": "-", - "token_id": 3857, + "token_id": 3863, "o_rev_id": 754873396, "in": [], "out": [ @@ -33586,7 +33622,7 @@ }, { "str": "14", - "token_id": 3858, + "token_id": 3864, "o_rev_id": 754873396, "in": [], "out": [ @@ -33595,7 +33631,7 @@ }, { "str": "}}", - "token_id": 3859, + "token_id": 3865, "o_rev_id": 754873396, "in": [], "out": [ @@ -33604,7 +33640,7 @@ }, { "str": "ref", - "token_id": 3860, + "token_id": 3866, "o_rev_id": 754873396, "in": [], "out": [ @@ -33613,7 +33649,7 @@ }, { "str": "<", - "token_id": 3861, + "token_id": 3867, "o_rev_id": 754873396, "in": [ 1163557612 @@ -33624,7 +33660,7 @@ }, { "str": "ref", - "token_id": 3862, + "token_id": 3868, "o_rev_id": 754873396, "in": [ 1163557612 @@ -33635,7 +33671,7 @@ }, { "str": ">", - "token_id": 3863, + "token_id": 3869, "o_rev_id": 754873396, "in": [], "out": [ @@ -33644,7 +33680,7 @@ }, { "str": "{{", - "token_id": 3864, + "token_id": 3870, "o_rev_id": 754873396, "in": [], "out": [ @@ -33653,7 +33689,7 @@ }, { "str": "web", - "token_id": 3865, + "token_id": 3871, "o_rev_id": 754873396, "in": [], "out": [ @@ -33662,7 +33698,7 @@ }, { "str": "|", - "token_id": 3866, + "token_id": 3872, "o_rev_id": 754873396, "in": [], "out": [ @@ -33671,7 +33707,7 @@ }, { "str": "url", - "token_id": 3867, + "token_id": 3873, "o_rev_id": 754873396, "in": [], "out": [ @@ -33680,7 +33716,7 @@ }, { "str": "=", - "token_id": 3868, + "token_id": 3874, "o_rev_id": 754873396, "in": [], "out": [ @@ -33689,421 +33725,413 @@ }, { "str": "http", - "token_id": 3869, + "token_id": 3875, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ":", - "token_id": 3870, + "token_id": 3876, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 3871, + "token_id": 3877, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 3872, + "token_id": 3878, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "www", - "token_id": 3873, + "token_id": 3879, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 3874, + "token_id": 3880, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "huffingtonpost", - "token_id": 3875, + "token_id": 3881, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 3876, + "token_id": 3882, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "com", - "token_id": 3877, + "token_id": 3883, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 3878, + "token_id": 3884, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "entry", - "token_id": 3879, + "token_id": 3885, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 3880, + "token_id": 3886, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "donald", - "token_id": 3881, + "token_id": 3887, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "trump", - "token_id": 3882, + "token_id": 3888, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "is", - "token_id": 3883, + "token_id": 3889, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3884, + "token_id": 3890, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "a", - "token_id": 3885, + "token_id": 3891, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3886, + "token_id": 3892, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "steaming", - "token_id": 3887, + "token_id": 3893, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3888, + "token_id": 3894, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "pile", - "token_id": 3889, + "token_id": 3895, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3890, + "token_id": 3896, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "of", - "token_id": 3891, + "token_id": 3897, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3892, + "token_id": 3898, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "sht", - "token_id": 3893, + "token_id": 3899, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3894, + "token_id": 3900, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "according", - "token_id": 3895, + "token_id": 3901, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3896, + "token_id": 3902, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "to", - "token_id": 3897, + "token_id": 3903, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3898, + "token_id": 3904, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "street", - "token_id": 3899, + "token_id": 3905, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3900, + "token_id": 3906, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "artists", - "token_id": 3901, + "token_id": 3907, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3902, + "token_id": 3908, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "campaign", - "token_id": 3903, + "token_id": 3909, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "_", - "token_id": 3904, + "token_id": 3910, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "us", - "token_id": 3905, + "token_id": 3911, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "_", - "token_id": 3906, + "token_id": 3912, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "56d08be8e4b0bf0dab31e7cb", - "token_id": 3907, + "token_id": 3913, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 3908, + "token_id": 3914, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "title", - "token_id": 3909, + "token_id": 3915, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "=", - "token_id": 3910, + "token_id": 3916, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "'", - "token_id": 3911, + "token_id": 3917, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "dump", - "token_id": 3912, + "token_id": 3918, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "across", - "token_id": 3913, + "token_id": 3919, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "america", - "token_id": 3914, + "token_id": 3920, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "'", - "token_id": 3915, + "token_id": 3921, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ":", - "token_id": 3916, + "token_id": 3922, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "a", - "token_id": 3917, + "token_id": 3923, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "street", - "token_id": 3918, + "token_id": 3924, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "art", - "token_id": 3919, + "token_id": 3925, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "project", - "token_id": 3920, + "token_id": 3926, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "devoted", - "token_id": 3921, + "token_id": 3927, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "to", - "token_id": 3922, + "token_id": 3928, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "taking", - "token_id": 3923, + "token_id": 3929, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "down", - "token_id": 3924, + "token_id": 3930, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "trump", - "token_id": 3925, + "token_id": 3931, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 3926, + "token_id": 3932, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "last", - "token_id": 3927, + "token_id": 3933, "o_rev_id": 754873396, "in": [], "out": [ @@ -34112,30 +34140,28 @@ }, { "str": "=", - "token_id": 3928, + "token_id": 3934, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "writer", - "token_id": 3929, + "token_id": 3935, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "|", - "token_id": 3930, + "token_id": 3936, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "first", - "token_id": 3931, + "token_id": 3937, "o_rev_id": 754873396, "in": [], "out": [ @@ -34144,178 +34170,154 @@ }, { "str": "=", - "token_id": 3932, + "token_id": 3938, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "priscilla", - "token_id": 3933, + "token_id": 3939, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "frank", - "token_id": 3934, + "token_id": 3940, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "arts", - "token_id": 3935, + "token_id": 3941, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "|", - "token_id": 3936, + "token_id": 3942, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "last2", - "token_id": 3937, + "token_id": 3943, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "=", - "token_id": 3938, + "token_id": 3944, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "post", - "token_id": 3939, + "token_id": 3945, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "|", - "token_id": 3940, + "token_id": 3946, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "first2", - "token_id": 3941, + "token_id": 3947, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "=", - "token_id": 3942, + "token_id": 3948, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "the", - "token_id": 3943, + "token_id": 3949, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "huffington", - "token_id": 3944, + "token_id": 3950, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "|", - "token_id": 3945, + "token_id": 3951, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "date", - "token_id": 3946, + "token_id": 3952, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "=", - "token_id": 3947, + "token_id": 3953, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "2016", - "token_id": 3948, + "token_id": 3954, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "-", - "token_id": 3949, + "token_id": 3955, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "02", - "token_id": 3950, + "token_id": 3956, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "-", - "token_id": 3951, + "token_id": 3957, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "26", - "token_id": 3952, + "token_id": 3958, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "|", - "token_id": 3953, + "token_id": 3959, "o_rev_id": 754873396, "in": [], "out": [ @@ -34324,7 +34326,7 @@ }, { "str": "website", - "token_id": 3954, + "token_id": 3960, "o_rev_id": 754873396, "in": [], "out": [ @@ -34333,7 +34335,7 @@ }, { "str": "=", - "token_id": 3955, + "token_id": 3961, "o_rev_id": 754873396, "in": [], "out": [ @@ -34342,7 +34344,7 @@ }, { "str": "the", - "token_id": 3956, + "token_id": 3962, "o_rev_id": 754873396, "in": [], "out": [ @@ -34351,7 +34353,7 @@ }, { "str": "huffington", - "token_id": 3957, + "token_id": 3963, "o_rev_id": 754873396, "in": [], "out": [ @@ -34360,7 +34362,7 @@ }, { "str": "post", - "token_id": 3958, + "token_id": 3964, "o_rev_id": 754873396, "in": [], "out": [ @@ -34369,589 +34371,581 @@ }, { "str": "|", - "token_id": 3959, + "token_id": 3965, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "access", - "token_id": 3960, + "token_id": 3966, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3961, + "token_id": 3967, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "date", - "token_id": 3962, + "token_id": 3968, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "=", - "token_id": 3963, + "token_id": 3969, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "2016", - "token_id": 3964, + "token_id": 3970, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3965, + "token_id": 3971, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "12", - "token_id": 3966, + "token_id": 3972, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3967, + "token_id": 3973, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "14", - "token_id": 3968, + "token_id": 3974, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "}}", - "token_id": 3969, + "token_id": 3975, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "ref", - "token_id": 3970, + "token_id": 3976, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "<", - "token_id": 3971, + "token_id": 3977, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "ref", - "token_id": 3972, + "token_id": 3978, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ">", - "token_id": 3973, + "token_id": 3979, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "{{", - "token_id": 3974, + "token_id": 3980, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "news", - "token_id": 3975, + "token_id": 3981, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 3976, + "token_id": 3982, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "url", - "token_id": 3977, + "token_id": 3983, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "=", - "token_id": 3978, + "token_id": 3984, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "http", - "token_id": 3979, + "token_id": 3985, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ":", - "token_id": 3980, + "token_id": 3986, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 3981, + "token_id": 3987, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 3982, + "token_id": 3988, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "www", - "token_id": 3983, + "token_id": 3989, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 3984, + "token_id": 3990, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "businessinsider", - "token_id": 3985, + "token_id": 3991, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 3986, + "token_id": 3992, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "com", - "token_id": 3987, + "token_id": 3993, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 3988, + "token_id": 3994, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "why", - "token_id": 3989, + "token_id": 3995, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "a", - "token_id": 3990, + "token_id": 3996, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "street", - "token_id": 3991, + "token_id": 3997, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3992, + "token_id": 3998, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "artist", - "token_id": 3993, + "token_id": 3999, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3994, + "token_id": 4000, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "is", - "token_id": 3995, + "token_id": 4001, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3996, + "token_id": 4002, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "trolling", - "token_id": 3997, + "token_id": 4003, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 3998, + "token_id": 4004, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "trump", - "token_id": 3999, + "token_id": 4005, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4000, + "token_id": 4006, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "2016", - "token_id": 4001, + "token_id": 4007, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4002, + "token_id": 4008, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "2", - "token_id": 4003, + "token_id": 4009, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 4004, + "token_id": 4010, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "title", - "token_id": 4005, + "token_id": 4011, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "=", - "token_id": 4006, + "token_id": 4012, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "the", - "token_id": 4007, + "token_id": 4013, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "street", - "token_id": 4008, + "token_id": 4014, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "artist", - "token_id": 4009, + "token_id": 4015, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "who", - "token_id": 4010, + "token_id": 4016, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "painted", - "token_id": 4011, + "token_id": 4017, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "donald", - "token_id": 4012, + "token_id": 4018, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "trump", - "token_id": 4013, + "token_id": 4019, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "as", - "token_id": 4014, + "token_id": 4020, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "a", - "token_id": 4015, + "token_id": 4021, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "poop", - "token_id": 4016, + "token_id": 4022, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "emoji", - "token_id": 4017, + "token_id": 4023, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "tells", - "token_id": 4018, + "token_id": 4024, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "us", - "token_id": 4019, + "token_id": 4025, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "why", - "token_id": 4020, + "token_id": 4026, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "he", - "token_id": 4021, + "token_id": 4027, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "did", - "token_id": 4022, + "token_id": 4028, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "it", - "token_id": 4023, + "token_id": 4029, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 4024, + "token_id": 4030, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "newspaper", - "token_id": 4025, + "token_id": 4031, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "=", - "token_id": 4026, + "token_id": 4032, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "business", - "token_id": 4027, + "token_id": 4033, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "insider", - "token_id": 4028, + "token_id": 4034, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "|", - "token_id": 4029, + "token_id": 4035, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "access", - "token_id": 4030, + "token_id": 4036, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4031, + "token_id": 4037, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "date", - "token_id": 4032, + "token_id": 4038, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "=", - "token_id": 4033, + "token_id": 4039, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "2016", - "token_id": 4034, + "token_id": 4040, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4035, + "token_id": 4041, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "12", - "token_id": 4036, + "token_id": 4042, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4037, + "token_id": 4043, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "14", - "token_id": 4038, + "token_id": 4044, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "}}", - "token_id": 4039, + "token_id": 4045, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "ref", - "token_id": 4040, + "token_id": 4046, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "<", - "token_id": 4041, + "token_id": 4047, "o_rev_id": 754873396, "in": [], "out": [ @@ -34960,7 +34954,7 @@ }, { "str": "ref", - "token_id": 4042, + "token_id": 4048, "o_rev_id": 754873396, "in": [], "out": [ @@ -34969,7 +34963,7 @@ }, { "str": ">", - "token_id": 4043, + "token_id": 4049, "o_rev_id": 754873396, "in": [], "out": [ @@ -34978,7 +34972,7 @@ }, { "str": "{{", - "token_id": 4044, + "token_id": 4050, "o_rev_id": 754873396, "in": [], "out": [ @@ -34987,7 +34981,7 @@ }, { "str": "cite", - "token_id": 4045, + "token_id": 4051, "o_rev_id": 754873396, "in": [], "out": [ @@ -34996,7 +34990,7 @@ }, { "str": "news", - "token_id": 4046, + "token_id": 4052, "o_rev_id": 754873396, "in": [], "out": [ @@ -35005,7 +34999,7 @@ }, { "str": "|", - "token_id": 4047, + "token_id": 4053, "o_rev_id": 754873396, "in": [], "out": [ @@ -35014,7 +35008,7 @@ }, { "str": "url", - "token_id": 4048, + "token_id": 4054, "o_rev_id": 754873396, "in": [], "out": [ @@ -35023,7 +35017,7 @@ }, { "str": "=", - "token_id": 4049, + "token_id": 4055, "o_rev_id": 754873396, "in": [], "out": [ @@ -35032,7 +35026,7 @@ }, { "str": "http", - "token_id": 4050, + "token_id": 4056, "o_rev_id": 754873396, "in": [], "out": [ @@ -35041,523 +35035,511 @@ }, { "str": ":", - "token_id": 4051, + "token_id": 4057, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 4052, + "token_id": 4058, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 4053, + "token_id": 4059, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "www", - "token_id": 4054, + "token_id": 4060, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 4055, + "token_id": 4061, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "independent", - "token_id": 4056, + "token_id": 4062, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 4057, + "token_id": 4063, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "co", - "token_id": 4058, + "token_id": 4064, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 4059, + "token_id": 4065, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "uk", - "token_id": 4060, + "token_id": 4066, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 4061, + "token_id": 4067, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "news", - "token_id": 4062, + "token_id": 4068, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 4063, + "token_id": 4069, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "world", - "token_id": 4064, + "token_id": 4070, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 4065, + "token_id": 4071, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "americas", - "token_id": 4066, + "token_id": 4072, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 4067, + "token_id": 4073, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "us", - "token_id": 4068, + "token_id": 4074, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4069, + "token_id": 4075, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "elections", - "token_id": 4070, + "token_id": 4076, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "/", - "token_id": 4071, + "token_id": 4077, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "dump", - "token_id": 4072, + "token_id": 4078, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4073, + "token_id": 4079, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "donald", - "token_id": 4074, + "token_id": 4080, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4075, + "token_id": 4081, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "trump", - "token_id": 4076, + "token_id": 4082, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4077, + "token_id": 4083, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "artist", - "token_id": 4078, + "token_id": 4084, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4079, + "token_id": 4085, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "on", - "token_id": 4080, + "token_id": 4086, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "the", - "token_id": 4081, + "token_id": 4087, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4082, + "token_id": 4088, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "grassroots", - "token_id": 4083, + "token_id": 4089, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4084, + "token_id": 4090, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "bowel", - "token_id": 4085, + "token_id": 4091, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4086, + "token_id": 4092, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "movement", - "token_id": 4087, + "token_id": 4093, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4088, + "token_id": 4094, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "that", - "token_id": 4089, + "token_id": 4095, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4090, + "token_id": 4096, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "is", - "token_id": 4091, + "token_id": 4097, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4092, + "token_id": 4098, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "defining", - "token_id": 4093, + "token_id": 4099, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4094, + "token_id": 4100, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "the", - "token_id": 4095, + "token_id": 4101, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4096, + "token_id": 4102, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "2016", - "token_id": 4097, + "token_id": 4103, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4098, + "token_id": 4104, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "us", - "token_id": 4099, + "token_id": 4105, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4100, + "token_id": 4106, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "a6955676", - "token_id": 4101, + "token_id": 4107, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ".", - "token_id": 4102, + "token_id": 4108, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "html", - "token_id": 4103, + "token_id": 4109, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 4104, + "token_id": 4110, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "title", - "token_id": 4105, + "token_id": 4111, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "=", - "token_id": 4106, + "token_id": 4112, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "'", - "token_id": 4107, + "token_id": 4113, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "dump", - "token_id": 4108, + "token_id": 4114, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "trump", - "token_id": 4109, + "token_id": 4115, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "'", - "token_id": 4110, + "token_id": 4116, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": ":", - "token_id": 4111, + "token_id": 4117, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "artist", - "token_id": 4112, + "token_id": 4118, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 4113, + "token_id": 4119, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "on", - "token_id": 4114, + "token_id": 4120, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "a", - "token_id": 4115, + "token_id": 4121, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "'", - "token_id": 4116, + "token_id": 4122, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "grassroots", - "token_id": 4117, + "token_id": 4123, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "(", - "token_id": 4118, + "token_id": 4124, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "bowel", - "token_id": 4119, + "token_id": 4125, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": ")", - "token_id": 4120, + "token_id": 4126, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "movement", - "token_id": 4121, + "token_id": 4127, "o_rev_id": 754873396, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "'", - "token_id": 4122, + "token_id": 4128, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "|", - "token_id": 4123, + "token_id": 4129, "o_rev_id": 754873396, "in": [], "out": [ @@ -35566,7 +35548,7 @@ }, { "str": "date", - "token_id": 4124, + "token_id": 4130, "o_rev_id": 754873396, "in": [], "out": [ @@ -35575,7 +35557,7 @@ }, { "str": "=", - "token_id": 4125, + "token_id": 4131, "o_rev_id": 754873396, "in": [], "out": [ @@ -35584,7 +35566,7 @@ }, { "str": "2016", - "token_id": 4126, + "token_id": 4132, "o_rev_id": 754873396, "in": [], "out": [ @@ -35593,7 +35575,7 @@ }, { "str": "-", - "token_id": 4127, + "token_id": 4133, "o_rev_id": 754873396, "in": [], "out": [ @@ -35602,7 +35584,7 @@ }, { "str": "03", - "token_id": 4128, + "token_id": 4134, "o_rev_id": 754873396, "in": [], "out": [ @@ -35611,7 +35593,7 @@ }, { "str": "-", - "token_id": 4129, + "token_id": 4135, "o_rev_id": 754873396, "in": [], "out": [ @@ -35620,7 +35602,7 @@ }, { "str": "27", - "token_id": 4130, + "token_id": 4136, "o_rev_id": 754873396, "in": [], "out": [ @@ -35629,7 +35611,7 @@ }, { "str": "|", - "token_id": 4131, + "token_id": 4137, "o_rev_id": 754873396, "in": [], "out": [ @@ -35638,7 +35620,7 @@ }, { "str": "newspaper", - "token_id": 4132, + "token_id": 4138, "o_rev_id": 754873396, "in": [], "out": [ @@ -35647,7 +35629,7 @@ }, { "str": "=", - "token_id": 4133, + "token_id": 4139, "o_rev_id": 754873396, "in": [], "out": [ @@ -35656,7 +35638,7 @@ }, { "str": "the", - "token_id": 4134, + "token_id": 4140, "o_rev_id": 754873396, "in": [], "out": [ @@ -35665,7 +35647,7 @@ }, { "str": "independent", - "token_id": 4135, + "token_id": 4141, "o_rev_id": 754873396, "in": [], "out": [ @@ -35674,7 +35656,7 @@ }, { "str": "|", - "token_id": 4136, + "token_id": 4142, "o_rev_id": 754873396, "in": [], "out": [ @@ -35683,7 +35665,7 @@ }, { "str": "language", - "token_id": 4137, + "token_id": 4143, "o_rev_id": 754873396, "in": [], "out": [ @@ -35692,7 +35674,7 @@ }, { "str": "=", - "token_id": 4138, + "token_id": 4144, "o_rev_id": 754873396, "in": [], "out": [ @@ -35701,7 +35683,7 @@ }, { "str": "en", - "token_id": 4139, + "token_id": 4145, "o_rev_id": 754873396, "in": [], "out": [ @@ -35710,7 +35692,7 @@ }, { "str": "-", - "token_id": 4140, + "token_id": 4146, "o_rev_id": 754873396, "in": [], "out": [ @@ -35719,7 +35701,7 @@ }, { "str": "gb", - "token_id": 4141, + "token_id": 4147, "o_rev_id": 754873396, "in": [], "out": [ @@ -35728,140 +35710,140 @@ }, { "str": "|", - "token_id": 4142, + "token_id": 4148, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "access", - "token_id": 4143, + "token_id": 4149, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4144, + "token_id": 4150, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "date", - "token_id": 4145, + "token_id": 4151, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "=", - "token_id": 4146, + "token_id": 4152, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "2016", - "token_id": 4147, + "token_id": 4153, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4148, + "token_id": 4154, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "12", - "token_id": 4149, + "token_id": 4155, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "-", - "token_id": 4150, + "token_id": 4156, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "14", - "token_id": 4151, + "token_id": 4157, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "}}", - "token_id": 4152, + "token_id": 4158, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "ref", - "token_id": 4153, + "token_id": 4159, "o_rev_id": 754873396, "in": [], "out": [] }, { "str": "[[", - "token_id": 4154, + "token_id": 4160, "o_rev_id": 754874216, "in": [], "out": [] }, { "str": "u", - "token_id": 4155, + "token_id": 4161, "o_rev_id": 754874216, "in": [], "out": [] }, { "str": ".", - "token_id": 4156, + "token_id": 4162, "o_rev_id": 754874216, "in": [], "out": [] }, { "str": "s", - "token_id": 4157, + "token_id": 4163, "o_rev_id": 754874216, "in": [], "out": [] }, { "str": ".", - "token_id": 4158, + "token_id": 4164, "o_rev_id": 754874216, "in": [], "out": [] }, { "str": "tv", - "token_id": 4159, + "token_id": 4165, "o_rev_id": 754874216, "in": [], "out": [] }, { "str": "channel", - "token_id": 4160, + "token_id": 4166, "o_rev_id": 754874216, "in": [], "out": [] }, { "str": "|", - "token_id": 4161, + "token_id": 4167, "o_rev_id": 754874216, "in": [], "out": [ @@ -35870,294 +35852,294 @@ }, { "str": "]]", - "token_id": 4162, + "token_id": 4168, "o_rev_id": 754874216, "in": [], "out": [] }, { "str": "|", - "token_id": 4163, + "token_id": 4169, "o_rev_id": 754874291, "in": [], "out": [] }, { "str": "tv", - "token_id": 4164, + "token_id": 4170, "o_rev_id": 754874291, "in": [], "out": [] }, { "str": "name", - "token_id": 4165, + "token_id": 4171, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "=", - "token_id": 4166, + "token_id": 4172, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "\"", - "token_id": 4167, + "token_id": 4173, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": ":", - "token_id": 4168, + "token_id": 4174, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "2", - "token_id": 4169, + "token_id": 4175, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "\"", - "token_id": 4170, + "token_id": 4176, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "name", - "token_id": 4171, + "token_id": 4177, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "=", - "token_id": 4172, + "token_id": 4178, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "\"", - "token_id": 4173, + "token_id": 4179, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "2", - "token_id": 4174, + "token_id": 4180, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "\"", - "token_id": 4175, + "token_id": 4181, "o_rev_id": 754874942, "in": [], "out": [] }, { "str": "'", - "token_id": 4176, + "token_id": 4182, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "'", - "token_id": 4177, + "token_id": 4183, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "]]", - "token_id": 4178, + "token_id": 4184, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": ",", - "token_id": 4179, + "token_id": 4185, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "]]", - "token_id": 4180, + "token_id": 4186, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "'", - "token_id": 4181, + "token_id": 4187, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "'", - "token_id": 4182, + "token_id": 4188, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "]]", - "token_id": 4183, + "token_id": 4189, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "'", - "token_id": 4184, + "token_id": 4190, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "'", - "token_id": 4185, + "token_id": 4191, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "]]", - "token_id": 4186, + "token_id": 4192, "o_rev_id": 754920833, "in": [], "out": [] }, { "str": "<", - "token_id": 4187, + "token_id": 4193, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "ref", - "token_id": 4188, + "token_id": 4194, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "name", - "token_id": 4189, + "token_id": 4195, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "=", - "token_id": 4190, + "token_id": 4196, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "\"", - "token_id": 4191, + "token_id": 4197, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "ovationtv", - "token_id": 4192, + "token_id": 4198, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": ".", - "token_id": 4193, + "token_id": 4199, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "com", - "token_id": 4194, + "token_id": 4200, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "\"", - "token_id": 4195, + "token_id": 4201, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": ">", - "token_id": 4196, + "token_id": 4202, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "{{", - "token_id": 4197, + "token_id": 4203, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "cite", - "token_id": 4198, + "token_id": 4204, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "news", - "token_id": 4199, + "token_id": 4205, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "|", - "token_id": 4200, + "token_id": 4206, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "url", - "token_id": 4201, + "token_id": 4207, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "=", - "token_id": 4202, + "token_id": 4208, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "rather", - "token_id": 4203, + "token_id": 4209, "o_rev_id": 754921415, "in": [], "out": [ @@ -36166,98 +36148,98 @@ }, { "str": "name", - "token_id": 4204, + "token_id": 4210, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "=", - "token_id": 4205, + "token_id": 4211, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "\"", - "token_id": 4206, + "token_id": 4212, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "artnet", - "token_id": 4207, + "token_id": 4213, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": ".", - "token_id": 4208, + "token_id": 4214, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "com", - "token_id": 4209, + "token_id": 4215, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "\"", - "token_id": 4210, + "token_id": 4216, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "<", - "token_id": 4211, + "token_id": 4217, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "ref", - "token_id": 4212, + "token_id": 4218, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "name", - "token_id": 4213, + "token_id": 4219, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "=", - "token_id": 4214, + "token_id": 4220, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "\"", - "token_id": 4215, + "token_id": 4221, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "\"", - "token_id": 4216, + "token_id": 4222, "o_rev_id": 754921415, "in": [], "out": [] }, { "str": "name", - "token_id": 4217, + "token_id": 4223, "o_rev_id": 754921415, "in": [ 1163557612 @@ -36268,7 +36250,7 @@ }, { "str": "=", - "token_id": 4218, + "token_id": 4224, "o_rev_id": 754921415, "in": [ 1163557612 @@ -36279,7 +36261,7 @@ }, { "str": "\"", - "token_id": 4219, + "token_id": 4225, "o_rev_id": 754921415, "in": [ 1163557612 @@ -36290,7 +36272,7 @@ }, { "str": "\"", - "token_id": 4220, + "token_id": 4226, "o_rev_id": 754921415, "in": [ 1163557612 @@ -36301,7 +36283,7 @@ }, { "str": "in", - "token_id": 4221, + "token_id": 4227, "o_rev_id": 754921415, "in": [ 1163557612 @@ -36312,7 +36294,7 @@ }, { "str": "2015", - "token_id": 4222, + "token_id": 4228, "o_rev_id": 755005483, "in": [ 1163557612 @@ -36323,28 +36305,28 @@ }, { "str": "|", - "token_id": 4223, + "token_id": 4229, "o_rev_id": 755006248, "in": [], "out": [] }, { "str": "image", - "token_id": 4224, + "token_id": 4230, "o_rev_id": 755006248, "in": [], "out": [] }, { "str": "=", - "token_id": 4225, + "token_id": 4231, "o_rev_id": 755006248, "in": [], "out": [] }, { "str": "[[", - "token_id": 4226, + "token_id": 4232, "o_rev_id": 755006248, "in": [], "out": [ @@ -36353,7 +36335,7 @@ }, { "str": "file", - "token_id": 4227, + "token_id": 4233, "o_rev_id": 755006248, "in": [], "out": [ @@ -36362,7 +36344,7 @@ }, { "str": ":", - "token_id": 4228, + "token_id": 4234, "o_rev_id": 755006248, "in": [], "out": [ @@ -36371,7 +36353,7 @@ }, { "str": "artisthanksy", - "token_id": 4229, + "token_id": 4235, "o_rev_id": 755006248, "in": [], "out": [ @@ -36380,7 +36362,7 @@ }, { "str": ".", - "token_id": 4230, + "token_id": 4236, "o_rev_id": 755006248, "in": [], "out": [ @@ -36389,7 +36371,7 @@ }, { "str": "png", - "token_id": 4231, + "token_id": 4237, "o_rev_id": 755006248, "in": [], "out": [ @@ -36398,7 +36380,7 @@ }, { "str": "|", - "token_id": 4232, + "token_id": 4238, "o_rev_id": 755006248, "in": [], "out": [ @@ -36407,7 +36389,7 @@ }, { "str": "thumb", - "token_id": 4233, + "token_id": 4239, "o_rev_id": 755006248, "in": [], "out": [ @@ -36416,7 +36398,7 @@ }, { "str": "|", - "token_id": 4234, + "token_id": 4240, "o_rev_id": 755006248, "in": [], "out": [ @@ -36425,7 +36407,7 @@ }, { "str": "anonymous", - "token_id": 4235, + "token_id": 4241, "o_rev_id": 755006248, "in": [], "out": [ @@ -36434,7 +36416,7 @@ }, { "str": "street", - "token_id": 4236, + "token_id": 4242, "o_rev_id": 755006248, "in": [], "out": [ @@ -36443,7 +36425,7 @@ }, { "str": "artist", - "token_id": 4237, + "token_id": 4243, "o_rev_id": 755006248, "in": [], "out": [ @@ -36452,7 +36434,7 @@ }, { "str": ",", - "token_id": 4238, + "token_id": 4244, "o_rev_id": 755006248, "in": [], "out": [ @@ -36461,7 +36443,7 @@ }, { "str": "hanksy", - "token_id": 4239, + "token_id": 4245, "o_rev_id": 755006248, "in": [], "out": [ @@ -36470,7 +36452,7 @@ }, { "str": ",", - "token_id": 4240, + "token_id": 4246, "o_rev_id": 755006248, "in": [], "out": [ @@ -36479,7 +36461,7 @@ }, { "str": "with", - "token_id": 4241, + "token_id": 4247, "o_rev_id": 755006248, "in": [], "out": [ @@ -36488,7 +36470,7 @@ }, { "str": "his", - "token_id": 4242, + "token_id": 4248, "o_rev_id": 755006248, "in": [], "out": [ @@ -36497,7 +36479,7 @@ }, { "str": "signature", - "token_id": 4243, + "token_id": 4249, "o_rev_id": 755006248, "in": [], "out": [ @@ -36506,7 +36488,7 @@ }, { "str": "cartoon", - "token_id": 4244, + "token_id": 4250, "o_rev_id": 755006248, "in": [], "out": [ @@ -36515,7 +36497,7 @@ }, { "str": "of", - "token_id": 4245, + "token_id": 4251, "o_rev_id": 755006248, "in": [], "out": [ @@ -36524,7 +36506,7 @@ }, { "str": "tom", - "token_id": 4246, + "token_id": 4252, "o_rev_id": 755006248, "in": [], "out": [ @@ -36533,7 +36515,7 @@ }, { "str": "hanks", - "token_id": 4247, + "token_id": 4253, "o_rev_id": 755006248, "in": [], "out": [ @@ -36542,7 +36524,7 @@ }, { "str": "'", - "token_id": 4248, + "token_id": 4254, "o_rev_id": 755006248, "in": [], "out": [ @@ -36551,7 +36533,7 @@ }, { "str": "face", - "token_id": 4249, + "token_id": 4255, "o_rev_id": 755006248, "in": [], "out": [ @@ -36560,7 +36542,7 @@ }, { "str": "to", - "token_id": 4250, + "token_id": 4256, "o_rev_id": 755006248, "in": [], "out": [ @@ -36569,7 +36551,7 @@ }, { "str": "preserve", - "token_id": 4251, + "token_id": 4257, "o_rev_id": 755006248, "in": [], "out": [ @@ -36578,7 +36560,7 @@ }, { "str": "his", - "token_id": 4252, + "token_id": 4258, "o_rev_id": 755006248, "in": [], "out": [ @@ -36587,7 +36569,7 @@ }, { "str": "identity", - "token_id": 4253, + "token_id": 4259, "o_rev_id": 755006248, "in": [], "out": [ @@ -36596,7 +36578,7 @@ }, { "str": "]]", - "token_id": 4254, + "token_id": 4260, "o_rev_id": 755006248, "in": [], "out": [ @@ -36605,434 +36587,434 @@ }, { "str": "2015", - "token_id": 4255, + "token_id": 4261, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "that", - "token_id": 4256, + "token_id": 4262, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 4257, + "token_id": 4263, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "transformed", - "token_id": 4258, + "token_id": 4264, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "to", - "token_id": 4259, + "token_id": 4265, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "look", - "token_id": 4260, + "token_id": 4266, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "like", - "token_id": 4261, + "token_id": 4267, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "a", - "token_id": 4262, + "token_id": 4268, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "street", - "token_id": 4263, + "token_id": 4269, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "in", - "token_id": 4264, + "token_id": 4270, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "[[", - "token_id": 4265, + "token_id": 4271, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "chinatown", - "token_id": 4266, + "token_id": 4272, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": ",", - "token_id": 4267, + "token_id": 4273, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "manhattan", - "token_id": 4268, + "token_id": 4274, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "|", - "token_id": 4269, + "token_id": 4275, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "chinatown", - "token_id": 4270, + "token_id": 4276, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "]]", - "token_id": 4271, + "token_id": 4277, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "http", - "token_id": 4272, + "token_id": 4278, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": ":", - "token_id": 4273, + "token_id": 4279, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "/", - "token_id": 4274, + "token_id": 4280, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "/", - "token_id": 4275, + "token_id": 4281, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "www", - "token_id": 4276, + "token_id": 4282, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": ".", - "token_id": 4277, + "token_id": 4283, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "boweryboogie", - "token_id": 4278, + "token_id": 4284, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": ".", - "token_id": 4279, + "token_id": 4285, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "com", - "token_id": 4280, + "token_id": 4286, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "/", - "token_id": 4281, + "token_id": 4287, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "2015", - "token_id": 4282, + "token_id": 4288, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "/", - "token_id": 4283, + "token_id": 4289, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "03", - "token_id": 4284, + "token_id": 4290, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "/", - "token_id": 4285, + "token_id": 4291, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "recap", - "token_id": 4286, + "token_id": 4292, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4287, + "token_id": 4293, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 4288, + "token_id": 4294, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4289, + "token_id": 4295, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "transforms", - "token_id": 4290, + "token_id": 4296, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4291, + "token_id": 4297, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "chase", - "token_id": 4292, + "token_id": 4298, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4293, + "token_id": 4299, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "bank", - "token_id": 4294, + "token_id": 4300, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4295, + "token_id": 4301, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "for", - "token_id": 4296, + "token_id": 4302, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4297, + "token_id": 4303, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "best", - "token_id": 4298, + "token_id": 4304, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4299, + "token_id": 4305, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "of", - "token_id": 4300, + "token_id": 4306, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4301, + "token_id": 4307, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "the", - "token_id": 4302, + "token_id": 4308, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4303, + "token_id": 4309, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "worst", - "token_id": 4304, + "token_id": 4310, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "/", - "token_id": 4305, + "token_id": 4311, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "|", - "token_id": 4306, + "token_id": 4312, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "title", - "token_id": 4307, + "token_id": 4313, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "=", - "token_id": 4308, + "token_id": 4314, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "recap", - "token_id": 4309, + "token_id": 4315, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": ":", - "token_id": 4310, + "token_id": 4316, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 4311, + "token_id": 4317, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "transforms", - "token_id": 4312, + "token_id": 4318, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "chase", - "token_id": 4313, + "token_id": 4319, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "bank", - "token_id": 4314, + "token_id": 4320, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "for", - "token_id": 4315, + "token_id": 4321, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "‘best", - "token_id": 4316, + "token_id": 4322, "o_rev_id": 755162424, "in": [], "out": [ @@ -37041,28 +37023,28 @@ }, { "str": "of", - "token_id": 4317, + "token_id": 4323, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "the", - "token_id": 4318, + "token_id": 4324, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "worst", - "token_id": 4319, + "token_id": 4325, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "’", - "token_id": 4320, + "token_id": 4326, "o_rev_id": 755162424, "in": [], "out": [ @@ -37071,252 +37053,252 @@ }, { "str": "|", - "token_id": 4321, + "token_id": 4327, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "date", - "token_id": 4322, + "token_id": 4328, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "=", - "token_id": 4323, + "token_id": 4329, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "2015", - "token_id": 4324, + "token_id": 4330, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4325, + "token_id": 4331, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "03", - "token_id": 4326, + "token_id": 4332, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4327, + "token_id": 4333, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "30", - "token_id": 4328, + "token_id": 4334, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "|", - "token_id": 4329, + "token_id": 4335, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "newspaper", - "token_id": 4330, + "token_id": 4336, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "=", - "token_id": 4331, + "token_id": 4337, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "bowery", - "token_id": 4332, + "token_id": 4338, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "boogie", - "token_id": 4333, + "token_id": 4339, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "|", - "token_id": 4334, + "token_id": 4340, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "language", - "token_id": 4335, + "token_id": 4341, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "=", - "token_id": 4336, + "token_id": 4342, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "en", - "token_id": 4337, + "token_id": 4343, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4338, + "token_id": 4344, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "us", - "token_id": 4339, + "token_id": 4345, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "|", - "token_id": 4340, + "token_id": 4346, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "access", - "token_id": 4341, + "token_id": 4347, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4342, + "token_id": 4348, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "date", - "token_id": 4343, + "token_id": 4349, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "=", - "token_id": 4344, + "token_id": 4350, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "2016", - "token_id": 4345, + "token_id": 4351, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4346, + "token_id": 4352, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "12", - "token_id": 4347, + "token_id": 4353, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "-", - "token_id": 4348, + "token_id": 4354, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "16", - "token_id": 4349, + "token_id": 4355, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "}}", - "token_id": 4350, + "token_id": 4356, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "<", - "token_id": 4351, + "token_id": 4357, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "/", - "token_id": 4352, + "token_id": 4358, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "ref", - "token_id": 4353, + "token_id": 4359, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": ">", - "token_id": 4354, + "token_id": 4360, "o_rev_id": 755162424, "in": [], "out": [] }, { "str": "depicted", - "token_id": 4355, + "token_id": 4361, "o_rev_id": 758848831, "in": [], "out": [] }, { "str": "[[", - "token_id": 4356, + "token_id": 4362, "o_rev_id": 760157698, "in": [], "out": [ @@ -37325,21 +37307,21 @@ }, { "str": "category", - "token_id": 4357, + "token_id": 4363, "o_rev_id": 760157698, "in": [], "out": [] }, { "str": ":", - "token_id": 4358, + "token_id": 4364, "o_rev_id": 760157698, "in": [], "out": [] }, { "str": "year", - "token_id": 4359, + "token_id": 4365, "o_rev_id": 760157698, "in": [], "out": [ @@ -37348,7 +37330,7 @@ }, { "str": "of", - "token_id": 4360, + "token_id": 4366, "o_rev_id": 760157698, "in": [], "out": [ @@ -37357,7 +37339,7 @@ }, { "str": "birth", - "token_id": 4361, + "token_id": 4367, "o_rev_id": 760157698, "in": [], "out": [ @@ -37366,7 +37348,7 @@ }, { "str": "missing", - "token_id": 4362, + "token_id": 4368, "o_rev_id": 760157698, "in": [], "out": [ @@ -37375,7 +37357,7 @@ }, { "str": "(", - "token_id": 4363, + "token_id": 4369, "o_rev_id": 760157698, "in": [], "out": [ @@ -37384,7 +37366,7 @@ }, { "str": "living", - "token_id": 4364, + "token_id": 4370, "o_rev_id": 760157698, "in": [], "out": [ @@ -37393,7 +37375,7 @@ }, { "str": "people", - "token_id": 4365, + "token_id": 4371, "o_rev_id": 760157698, "in": [], "out": [ @@ -37402,7 +37384,7 @@ }, { "str": ")", - "token_id": 4366, + "token_id": 4372, "o_rev_id": 760157698, "in": [], "out": [ @@ -37411,7 +37393,7 @@ }, { "str": "]]", - "token_id": 4367, + "token_id": 4373, "o_rev_id": 760157698, "in": [], "out": [ @@ -37420,35 +37402,35 @@ }, { "str": "https", - "token_id": 4368, + "token_id": 4374, "o_rev_id": 767656880, "in": [], "out": [] }, { "str": "|", - "token_id": 4369, + "token_id": 4375, "o_rev_id": 769696868, "in": [], "out": [] }, { "str": "movement", - "token_id": 4370, + "token_id": 4376, "o_rev_id": 769696868, "in": [], "out": [] }, { "str": "=", - "token_id": 4371, + "token_id": 4377, "o_rev_id": 769696868, "in": [], "out": [] }, { "str": "graffiti", - "token_id": 4372, + "token_id": 4378, "o_rev_id": 769696868, "in": [], "out": [ @@ -37457,7 +37439,7 @@ }, { "str": ",", - "token_id": 4373, + "token_id": 4379, "o_rev_id": 769696868, "in": [], "out": [ @@ -37466,7 +37448,7 @@ }, { "str": "street", - "token_id": 4374, + "token_id": 4380, "o_rev_id": 769696868, "in": [], "out": [ @@ -37475,7 +37457,7 @@ }, { "str": "art", - "token_id": 4375, + "token_id": 4381, "o_rev_id": 769696868, "in": [], "out": [ @@ -37484,14 +37466,14 @@ }, { "str": "a", - "token_id": 4376, + "token_id": 4382, "o_rev_id": 776324255, "in": [], "out": [] }, { "str": "of", - "token_id": 4377, + "token_id": 4383, "o_rev_id": 797537354, "in": [], "out": [ @@ -37500,7 +37482,7 @@ }, { "str": "at", - "token_id": 4378, + "token_id": 4384, "o_rev_id": 797537354, "in": [], "out": [ @@ -37509,14 +37491,14 @@ }, { "str": "in", - "token_id": 4379, + "token_id": 4385, "o_rev_id": 797537354, "in": [], "out": [] }, { "str": "to", - "token_id": 4380, + "token_id": 4386, "o_rev_id": 797537354, "in": [], "out": [ @@ -37525,14 +37507,14 @@ }, { "str": "of", - "token_id": 4381, + "token_id": 4387, "o_rev_id": 797537354, "in": [], "out": [] }, { "str": "to", - "token_id": 4382, + "token_id": 4388, "o_rev_id": 797537354, "in": [], "out": [ @@ -37541,28 +37523,28 @@ }, { "str": "of", - "token_id": 4383, + "token_id": 4389, "o_rev_id": 797537354, "in": [], "out": [] }, { "str": "https", - "token_id": 4384, + "token_id": 4390, "o_rev_id": 797807956, "in": [], "out": [] }, { "str": "https", - "token_id": 4385, + "token_id": 4391, "o_rev_id": 797807956, "in": [], "out": [] }, { "str": "we", - "token_id": 4386, + "token_id": 4392, "o_rev_id": 800367317, "in": [], "out": [ @@ -37571,7 +37553,7 @@ }, { "str": "don", - "token_id": 4387, + "token_id": 4393, "o_rev_id": 800367317, "in": [], "out": [ @@ -37580,7 +37562,7 @@ }, { "str": "'", - "token_id": 4388, + "token_id": 4394, "o_rev_id": 800367317, "in": [], "out": [ @@ -37589,7 +37571,7 @@ }, { "str": "t", - "token_id": 4389, + "token_id": 4395, "o_rev_id": 800367317, "in": [], "out": [ @@ -37598,7 +37580,7 @@ }, { "str": "blame", - "token_id": 4390, + "token_id": 4396, "o_rev_id": 800367317, "in": [], "out": [ @@ -37607,7 +37589,7 @@ }, { "str": "him", - "token_id": 4391, + "token_id": 4397, "o_rev_id": 800367317, "in": [], "out": [ @@ -37616,7 +37598,7 @@ }, { "str": "for", - "token_id": 4392, + "token_id": 4398, "o_rev_id": 800367317, "in": [], "out": [ @@ -37625,7 +37607,7 @@ }, { "str": "going", - "token_id": 4393, + "token_id": 4399, "o_rev_id": 800367317, "in": [], "out": [ @@ -37634,7 +37616,7 @@ }, { "str": "after", - "token_id": 4394, + "token_id": 4400, "o_rev_id": 800367317, "in": [], "out": [ @@ -37643,7 +37625,7 @@ }, { "str": "trump", - "token_id": 4395, + "token_id": 4401, "o_rev_id": 800367317, "in": [], "out": [ @@ -37652,7 +37634,7 @@ }, { "str": ",", - "token_id": 4396, + "token_id": 4402, "o_rev_id": 800367317, "in": [], "out": [ @@ -37661,7 +37643,7 @@ }, { "str": "since", - "token_id": 4397, + "token_id": 4403, "o_rev_id": 800367317, "in": [], "out": [ @@ -37670,7 +37652,7 @@ }, { "str": "he", - "token_id": 4398, + "token_id": 4404, "o_rev_id": 800367317, "in": [], "out": [ @@ -37679,7 +37661,7 @@ }, { "str": "isn", - "token_id": 4399, + "token_id": 4405, "o_rev_id": 800367317, "in": [], "out": [ @@ -37688,7 +37670,7 @@ }, { "str": "'", - "token_id": 4400, + "token_id": 4406, "o_rev_id": 800367317, "in": [], "out": [ @@ -37697,7 +37679,7 @@ }, { "str": "t", - "token_id": 4401, + "token_id": 4407, "o_rev_id": 800367317, "in": [], "out": [ @@ -37706,7 +37688,7 @@ }, { "str": "quite", - "token_id": 4402, + "token_id": 4408, "o_rev_id": 800367317, "in": [], "out": [ @@ -37715,7 +37697,7 @@ }, { "str": "all", - "token_id": 4403, + "token_id": 4409, "o_rev_id": 800367317, "in": [], "out": [ @@ -37724,7 +37706,7 @@ }, { "str": "there", - "token_id": 4404, + "token_id": 4410, "o_rev_id": 800367317, "in": [], "out": [ @@ -37733,7 +37715,7 @@ }, { "str": ".", - "token_id": 4405, + "token_id": 4411, "o_rev_id": 800367317, "in": [], "out": [ @@ -37742,7 +37724,7 @@ }, { "str": "|", - "token_id": 4406, + "token_id": 4412, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37753,7 +37735,7 @@ }, { "str": "deadurl", - "token_id": 4407, + "token_id": 4413, "o_rev_id": 808514213, "in": [], "out": [ @@ -37762,7 +37744,7 @@ }, { "str": "=", - "token_id": 4408, + "token_id": 4414, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37773,7 +37755,7 @@ }, { "str": "yes", - "token_id": 4409, + "token_id": 4415, "o_rev_id": 808514213, "in": [], "out": [ @@ -37782,7 +37764,7 @@ }, { "str": "|", - "token_id": 4410, + "token_id": 4416, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37793,7 +37775,7 @@ }, { "str": "archiveurl", - "token_id": 4411, + "token_id": 4417, "o_rev_id": 808514213, "in": [], "out": [ @@ -37802,7 +37784,7 @@ }, { "str": "=", - "token_id": 4412, + "token_id": 4418, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37813,7 +37795,7 @@ }, { "str": "https", - "token_id": 4413, + "token_id": 4419, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37824,7 +37806,7 @@ }, { "str": ":", - "token_id": 4414, + "token_id": 4420, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37835,7 +37817,7 @@ }, { "str": "/", - "token_id": 4415, + "token_id": 4421, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37846,7 +37828,7 @@ }, { "str": "/", - "token_id": 4416, + "token_id": 4422, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37857,7 +37839,7 @@ }, { "str": "web", - "token_id": 4417, + "token_id": 4423, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37868,7 +37850,7 @@ }, { "str": ".", - "token_id": 4418, + "token_id": 4424, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37879,7 +37861,7 @@ }, { "str": "archive", - "token_id": 4419, + "token_id": 4425, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37890,7 +37872,7 @@ }, { "str": ".", - "token_id": 4420, + "token_id": 4426, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37901,7 +37883,7 @@ }, { "str": "org", - "token_id": 4421, + "token_id": 4427, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37912,7 +37894,7 @@ }, { "str": "/", - "token_id": 4422, + "token_id": 4428, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37923,7 +37905,7 @@ }, { "str": "web", - "token_id": 4423, + "token_id": 4429, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37934,7 +37916,7 @@ }, { "str": "/", - "token_id": 4424, + "token_id": 4430, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37945,7 +37927,7 @@ }, { "str": "20170913113014", - "token_id": 4425, + "token_id": 4431, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37956,7 +37938,7 @@ }, { "str": "/", - "token_id": 4426, + "token_id": 4432, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37967,7 +37949,7 @@ }, { "str": "http", - "token_id": 4427, + "token_id": 4433, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37978,7 +37960,7 @@ }, { "str": ":", - "token_id": 4428, + "token_id": 4434, "o_rev_id": 808514213, "in": [ 1163557612 @@ -37989,7 +37971,7 @@ }, { "str": "/", - "token_id": 4429, + "token_id": 4435, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38000,7 +37982,7 @@ }, { "str": "/", - "token_id": 4430, + "token_id": 4436, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38011,7 +37993,7 @@ }, { "str": "laist", - "token_id": 4431, + "token_id": 4437, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38022,7 +38004,7 @@ }, { "str": ".", - "token_id": 4432, + "token_id": 4438, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38033,7 +38015,7 @@ }, { "str": "com", - "token_id": 4433, + "token_id": 4439, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38044,7 +38026,7 @@ }, { "str": "/", - "token_id": 4434, + "token_id": 4440, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38055,7 +38037,7 @@ }, { "str": "2015", - "token_id": 4435, + "token_id": 4441, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38066,7 +38048,7 @@ }, { "str": "/", - "token_id": 4436, + "token_id": 4442, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38077,7 +38059,7 @@ }, { "str": "10", - "token_id": 4437, + "token_id": 4443, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38088,7 +38070,7 @@ }, { "str": "/", - "token_id": 4438, + "token_id": 4444, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38099,7 +38081,7 @@ }, { "str": "05", - "token_id": 4439, + "token_id": 4445, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38110,7 +38092,7 @@ }, { "str": "/", - "token_id": 4440, + "token_id": 4446, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38121,7 +38103,7 @@ }, { "str": "street", - "token_id": 4441, + "token_id": 4447, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38132,7 +38114,7 @@ }, { "str": "_", - "token_id": 4442, + "token_id": 4448, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38143,7 +38125,7 @@ }, { "str": "artist", - "token_id": 4443, + "token_id": 4449, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38154,7 +38136,7 @@ }, { "str": "_", - "token_id": 4444, + "token_id": 4450, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38165,7 +38147,7 @@ }, { "str": "hanksy", - "token_id": 4445, + "token_id": 4451, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38176,7 +38158,7 @@ }, { "str": "_", - "token_id": 4446, + "token_id": 4452, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38187,7 +38169,7 @@ }, { "str": "is", - "token_id": 4447, + "token_id": 4453, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38198,7 +38180,7 @@ }, { "str": "_", - "token_id": 4448, + "token_id": 4454, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38209,7 +38191,7 @@ }, { "str": "taking", - "token_id": 4449, + "token_id": 4455, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38220,7 +38202,7 @@ }, { "str": "_", - "token_id": 4450, + "token_id": 4456, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38231,7 +38213,7 @@ }, { "str": "over", - "token_id": 4451, + "token_id": 4457, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38242,7 +38224,7 @@ }, { "str": ".", - "token_id": 4452, + "token_id": 4458, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38253,7 +38235,7 @@ }, { "str": "php", - "token_id": 4453, + "token_id": 4459, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38264,7 +38246,7 @@ }, { "str": "|", - "token_id": 4454, + "token_id": 4460, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38275,7 +38257,7 @@ }, { "str": "archivedate", - "token_id": 4455, + "token_id": 4461, "o_rev_id": 808514213, "in": [], "out": [ @@ -38284,7 +38266,7 @@ }, { "str": "=", - "token_id": 4456, + "token_id": 4462, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38295,7 +38277,7 @@ }, { "str": "2017", - "token_id": 4457, + "token_id": 4463, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38306,7 +38288,7 @@ }, { "str": "-", - "token_id": 4458, + "token_id": 4464, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38317,7 +38299,7 @@ }, { "str": "09", - "token_id": 4459, + "token_id": 4465, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38328,7 +38310,7 @@ }, { "str": "-", - "token_id": 4460, + "token_id": 4466, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38339,7 +38321,7 @@ }, { "str": "13", - "token_id": 4461, + "token_id": 4467, "o_rev_id": 808514213, "in": [ 1163557612 @@ -38350,7 +38332,7 @@ }, { "str": "|", - "token_id": 4462, + "token_id": 4468, "o_rev_id": 808514213, "in": [], "out": [ @@ -38359,7 +38341,7 @@ }, { "str": "df", - "token_id": 4463, + "token_id": 4469, "o_rev_id": 808514213, "in": [], "out": [ @@ -38368,7 +38350,7 @@ }, { "str": "=", - "token_id": 4464, + "token_id": 4470, "o_rev_id": 808514213, "in": [], "out": [ @@ -38377,14 +38359,14 @@ }, { "str": "|", - "token_id": 4465, + "token_id": 4471, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "deadurl", - "token_id": 4466, + "token_id": 4472, "o_rev_id": 808514213, "in": [], "out": [ @@ -38393,14 +38375,14 @@ }, { "str": "=", - "token_id": 4467, + "token_id": 4473, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "yes", - "token_id": 4468, + "token_id": 4474, "o_rev_id": 808514213, "in": [], "out": [ @@ -38409,14 +38391,14 @@ }, { "str": "|", - "token_id": 4469, + "token_id": 4475, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "archiveurl", - "token_id": 4470, + "token_id": 4476, "o_rev_id": 808514213, "in": [], "out": [ @@ -38425,294 +38407,294 @@ }, { "str": "=", - "token_id": 4471, + "token_id": 4477, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "https", - "token_id": 4472, + "token_id": 4478, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ":", - "token_id": 4473, + "token_id": 4479, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4474, + "token_id": 4480, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4475, + "token_id": 4481, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "web", - "token_id": 4476, + "token_id": 4482, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ".", - "token_id": 4477, + "token_id": 4483, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "archive", - "token_id": 4478, + "token_id": 4484, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ".", - "token_id": 4479, + "token_id": 4485, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "org", - "token_id": 4480, + "token_id": 4486, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4481, + "token_id": 4487, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "web", - "token_id": 4482, + "token_id": 4488, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4483, + "token_id": 4489, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "20150921063826", - "token_id": 4484, + "token_id": 4490, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4485, + "token_id": 4491, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "http", - "token_id": 4486, + "token_id": 4492, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ":", - "token_id": 4487, + "token_id": 4493, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4488, + "token_id": 4494, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4489, + "token_id": 4495, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "gothamist", - "token_id": 4490, + "token_id": 4496, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ".", - "token_id": 4491, + "token_id": 4497, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "com", - "token_id": 4492, + "token_id": 4498, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4493, + "token_id": 4499, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "2015", - "token_id": 4494, + "token_id": 4500, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4495, + "token_id": 4501, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "03", - "token_id": 4496, + "token_id": 4502, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4497, + "token_id": 4503, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "29", - "token_id": 4498, + "token_id": 4504, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4499, + "token_id": 4505, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 4500, + "token_id": 4506, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "_", - "token_id": 4501, + "token_id": 4507, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "best", - "token_id": 4502, + "token_id": 4508, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "_", - "token_id": 4503, + "token_id": 4509, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "of", - "token_id": 4504, + "token_id": 4510, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "_", - "token_id": 4505, + "token_id": 4511, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "the", - "token_id": 4506, + "token_id": 4512, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "_", - "token_id": 4507, + "token_id": 4513, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "worst", - "token_id": 4508, + "token_id": 4514, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ".", - "token_id": 4509, + "token_id": 4515, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "php", - "token_id": 4510, + "token_id": 4516, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "|", - "token_id": 4511, + "token_id": 4517, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "archivedate", - "token_id": 4512, + "token_id": 4518, "o_rev_id": 808514213, "in": [], "out": [ @@ -38721,49 +38703,49 @@ }, { "str": "=", - "token_id": 4513, + "token_id": 4519, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "2015", - "token_id": 4514, + "token_id": 4520, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "-", - "token_id": 4515, + "token_id": 4521, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "09", - "token_id": 4516, + "token_id": 4522, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "-", - "token_id": 4517, + "token_id": 4523, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "21", - "token_id": 4518, + "token_id": 4524, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "|", - "token_id": 4519, + "token_id": 4525, "o_rev_id": 808514213, "in": [], "out": [ @@ -38772,7 +38754,7 @@ }, { "str": "df", - "token_id": 4520, + "token_id": 4526, "o_rev_id": 808514213, "in": [], "out": [ @@ -38781,7 +38763,7 @@ }, { "str": "=", - "token_id": 4521, + "token_id": 4527, "o_rev_id": 808514213, "in": [], "out": [ @@ -38790,14 +38772,14 @@ }, { "str": "|", - "token_id": 4522, + "token_id": 4528, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "deadurl", - "token_id": 4523, + "token_id": 4529, "o_rev_id": 808514213, "in": [], "out": [ @@ -38806,14 +38788,14 @@ }, { "str": "=", - "token_id": 4524, + "token_id": 4530, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "yes", - "token_id": 4525, + "token_id": 4531, "o_rev_id": 808514213, "in": [], "out": [ @@ -38822,14 +38804,14 @@ }, { "str": "|", - "token_id": 4526, + "token_id": 4532, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "archiveurl", - "token_id": 4527, + "token_id": 4533, "o_rev_id": 808514213, "in": [], "out": [ @@ -38838,266 +38820,266 @@ }, { "str": "=", - "token_id": 4528, + "token_id": 4534, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "https", - "token_id": 4529, + "token_id": 4535, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ":", - "token_id": 4530, + "token_id": 4536, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4531, + "token_id": 4537, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4532, + "token_id": 4538, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "web", - "token_id": 4533, + "token_id": 4539, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ".", - "token_id": 4534, + "token_id": 4540, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "archive", - "token_id": 4535, + "token_id": 4541, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ".", - "token_id": 4536, + "token_id": 4542, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "org", - "token_id": 4537, + "token_id": 4543, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4538, + "token_id": 4544, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "web", - "token_id": 4539, + "token_id": 4545, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4540, + "token_id": 4546, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "20150509061345", - "token_id": 4541, + "token_id": 4547, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4542, + "token_id": 4548, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "http", - "token_id": 4543, + "token_id": 4549, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ":", - "token_id": 4544, + "token_id": 4550, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4545, + "token_id": 4551, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4546, + "token_id": 4552, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "gothamist", - "token_id": 4547, + "token_id": 4553, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ".", - "token_id": 4548, + "token_id": 4554, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "com", - "token_id": 4549, + "token_id": 4555, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4550, + "token_id": 4556, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "2015", - "token_id": 4551, + "token_id": 4557, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4552, + "token_id": 4558, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "03", - "token_id": 4553, + "token_id": 4559, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4554, + "token_id": 4560, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "18", - "token_id": 4555, + "token_id": 4561, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "/", - "token_id": 4556, + "token_id": 4562, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 4557, + "token_id": 4563, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "_", - "token_id": 4558, + "token_id": 4564, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "golden", - "token_id": 4559, + "token_id": 4565, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "_", - "token_id": 4560, + "token_id": 4566, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "ticket", - "token_id": 4561, + "token_id": 4567, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": ".", - "token_id": 4562, + "token_id": 4568, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "php", - "token_id": 4563, + "token_id": 4569, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "|", - "token_id": 4564, + "token_id": 4570, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "archivedate", - "token_id": 4565, + "token_id": 4571, "o_rev_id": 808514213, "in": [], "out": [ @@ -39106,49 +39088,49 @@ }, { "str": "=", - "token_id": 4566, + "token_id": 4572, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "2015", - "token_id": 4567, + "token_id": 4573, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "-", - "token_id": 4568, + "token_id": 4574, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "05", - "token_id": 4569, + "token_id": 4575, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "-", - "token_id": 4570, + "token_id": 4576, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "09", - "token_id": 4571, + "token_id": 4577, "o_rev_id": 808514213, "in": [], "out": [] }, { "str": "|", - "token_id": 4572, + "token_id": 4578, "o_rev_id": 808514213, "in": [], "out": [ @@ -39157,7 +39139,7 @@ }, { "str": "df", - "token_id": 4573, + "token_id": 4579, "o_rev_id": 808514213, "in": [], "out": [ @@ -39166,7 +39148,7 @@ }, { "str": "=", - "token_id": 4574, + "token_id": 4580, "o_rev_id": 808514213, "in": [], "out": [ @@ -39175,14 +39157,14 @@ }, { "str": "|", - "token_id": 4575, + "token_id": 4581, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "deadurl", - "token_id": 4576, + "token_id": 4582, "o_rev_id": 809252808, "in": [], "out": [ @@ -39191,14 +39173,14 @@ }, { "str": "=", - "token_id": 4577, + "token_id": 4583, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "yes", - "token_id": 4578, + "token_id": 4584, "o_rev_id": 809252808, "in": [], "out": [ @@ -39207,14 +39189,14 @@ }, { "str": "|", - "token_id": 4579, + "token_id": 4585, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "archiveurl", - "token_id": 4580, + "token_id": 4586, "o_rev_id": 809252808, "in": [], "out": [ @@ -39223,399 +39205,399 @@ }, { "str": "=", - "token_id": 4581, + "token_id": 4587, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "https", - "token_id": 4582, + "token_id": 4588, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": ":", - "token_id": 4583, + "token_id": 4589, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4584, + "token_id": 4590, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4585, + "token_id": 4591, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "web", - "token_id": 4586, + "token_id": 4592, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": ".", - "token_id": 4587, + "token_id": 4593, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "archive", - "token_id": 4588, + "token_id": 4594, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": ".", - "token_id": 4589, + "token_id": 4595, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "org", - "token_id": 4590, + "token_id": 4596, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4591, + "token_id": 4597, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "web", - "token_id": 4592, + "token_id": 4598, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4593, + "token_id": 4599, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "20161220204450", - "token_id": 4594, + "token_id": 4600, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4595, + "token_id": 4601, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "http", - "token_id": 4596, + "token_id": 4602, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": ":", - "token_id": 4597, + "token_id": 4603, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4598, + "token_id": 4604, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4599, + "token_id": 4605, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "www", - "token_id": 4600, + "token_id": 4606, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": ".", - "token_id": 4601, + "token_id": 4607, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "ovationtv", - "token_id": 4602, + "token_id": 4608, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": ".", - "token_id": 4603, + "token_id": 4609, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "com", - "token_id": 4604, + "token_id": 4610, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4605, + "token_id": 4611, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "ovation", - "token_id": 4606, + "token_id": 4612, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4607, + "token_id": 4613, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "to", - "token_id": 4608, + "token_id": 4614, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4609, + "token_id": 4615, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "premiere", - "token_id": 4610, + "token_id": 4616, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4611, + "token_id": 4617, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 4612, + "token_id": 4618, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4613, + "token_id": 4619, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "presents", - "token_id": 4614, + "token_id": 4620, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4615, + "token_id": 4621, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "surplus", - "token_id": 4616, + "token_id": 4622, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4617, + "token_id": 4623, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "candy", - "token_id": 4618, + "token_id": 4624, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4619, + "token_id": 4625, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "across", - "token_id": 4620, + "token_id": 4626, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4621, + "token_id": 4627, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "linear", - "token_id": 4622, + "token_id": 4628, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4623, + "token_id": 4629, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "digital", - "token_id": 4624, + "token_id": 4630, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4625, + "token_id": 4631, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "social", - "token_id": 4626, + "token_id": 4632, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4627, + "token_id": 4633, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "platforms", - "token_id": 4628, + "token_id": 4634, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4629, + "token_id": 4635, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "on", - "token_id": 4630, + "token_id": 4636, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4631, + "token_id": 4637, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "june", - "token_id": 4632, + "token_id": 4638, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4633, + "token_id": 4639, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "26", - "token_id": 4634, + "token_id": 4640, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "/", - "token_id": 4635, + "token_id": 4641, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "|", - "token_id": 4636, + "token_id": 4642, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "archivedate", - "token_id": 4637, + "token_id": 4643, "o_rev_id": 809252808, "in": [], "out": [ @@ -39624,49 +39606,49 @@ }, { "str": "=", - "token_id": 4638, + "token_id": 4644, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "2016", - "token_id": 4639, + "token_id": 4645, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4640, + "token_id": 4646, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "12", - "token_id": 4641, + "token_id": 4647, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "-", - "token_id": 4642, + "token_id": 4648, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "20", - "token_id": 4643, + "token_id": 4649, "o_rev_id": 809252808, "in": [], "out": [] }, { "str": "|", - "token_id": 4644, + "token_id": 4650, "o_rev_id": 809252808, "in": [], "out": [ @@ -39675,7 +39657,7 @@ }, { "str": "df", - "token_id": 4645, + "token_id": 4651, "o_rev_id": 809252808, "in": [], "out": [ @@ -39684,7 +39666,7 @@ }, { "str": "=", - "token_id": 4646, + "token_id": 4652, "o_rev_id": 809252808, "in": [], "out": [ @@ -39693,7 +39675,7 @@ }, { "str": "the", - "token_id": 4647, + "token_id": 4653, "o_rev_id": 824334152, "in": [], "out": [ @@ -39702,7 +39684,7 @@ }, { "str": "pseudonym", - "token_id": 4648, + "token_id": 4654, "o_rev_id": 824334152, "in": [], "out": [ @@ -39711,7 +39693,7 @@ }, { "str": "for", - "token_id": 4649, + "token_id": 4655, "o_rev_id": 824334152, "in": [], "out": [ @@ -39720,7 +39702,7 @@ }, { "str": "adam", - "token_id": 4650, + "token_id": 4656, "o_rev_id": 824334152, "in": [], "out": [ @@ -39729,7 +39711,7 @@ }, { "str": "lucas", - "token_id": 4651, + "token_id": 4657, "o_rev_id": 824334152, "in": [], "out": [ @@ -39738,7 +39720,7 @@ }, { "str": "[[", - "token_id": 4652, + "token_id": 4658, "o_rev_id": 825655960, "in": [], "out": [ @@ -39747,7 +39729,7 @@ }, { "str": "kerrie", - "token_id": 4653, + "token_id": 4659, "o_rev_id": 825655960, "in": [], "out": [ @@ -39756,7 +39738,7 @@ }, { "str": "holley", - "token_id": 4654, + "token_id": 4660, "o_rev_id": 825655960, "in": [], "out": [ @@ -39765,7 +39747,7 @@ }, { "str": "]]", - "token_id": 4655, + "token_id": 4661, "o_rev_id": 825655960, "in": [], "out": [ @@ -39774,7 +39756,7 @@ }, { "str": "[[", - "token_id": 4656, + "token_id": 4662, "o_rev_id": 825655960, "in": [], "out": [ @@ -39783,7 +39765,7 @@ }, { "str": "donald", - "token_id": 4657, + "token_id": 4663, "o_rev_id": 825655960, "in": [], "out": [ @@ -39792,7 +39774,7 @@ }, { "str": "trump", - "token_id": 4658, + "token_id": 4664, "o_rev_id": 825655960, "in": [], "out": [ @@ -39801,7 +39783,7 @@ }, { "str": "]]", - "token_id": 4659, + "token_id": 4665, "o_rev_id": 825655960, "in": [], "out": [ @@ -39810,77 +39792,77 @@ }, { "str": "url", - "token_id": 4660, + "token_id": 4666, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4661, + "token_id": 4667, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "status", - "token_id": 4662, + "token_id": 4668, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "dead", - "token_id": 4663, + "token_id": 4669, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "archive", - "token_id": 4664, + "token_id": 4670, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4665, + "token_id": 4671, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "url", - "token_id": 4666, + "token_id": 4672, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "archive", - "token_id": 4667, + "token_id": 4673, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4668, + "token_id": 4674, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "date", - "token_id": 4669, + "token_id": 4675, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "url", - "token_id": 4670, + "token_id": 4676, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39891,7 +39873,7 @@ }, { "str": "-", - "token_id": 4671, + "token_id": 4677, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39902,7 +39884,7 @@ }, { "str": "status", - "token_id": 4672, + "token_id": 4678, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39913,7 +39895,7 @@ }, { "str": "dead", - "token_id": 4673, + "token_id": 4679, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39924,7 +39906,7 @@ }, { "str": "archive", - "token_id": 4674, + "token_id": 4680, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39935,7 +39917,7 @@ }, { "str": "-", - "token_id": 4675, + "token_id": 4681, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39946,7 +39928,7 @@ }, { "str": "url", - "token_id": 4676, + "token_id": 4682, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39957,7 +39939,7 @@ }, { "str": "archive", - "token_id": 4677, + "token_id": 4683, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39968,7 +39950,7 @@ }, { "str": "-", - "token_id": 4678, + "token_id": 4684, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39979,7 +39961,7 @@ }, { "str": "date", - "token_id": 4679, + "token_id": 4685, "o_rev_id": 917000089, "in": [ 1163557612 @@ -39990,168 +39972,168 @@ }, { "str": "url", - "token_id": 4680, + "token_id": 4686, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4681, + "token_id": 4687, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "status", - "token_id": 4682, + "token_id": 4688, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "dead", - "token_id": 4683, + "token_id": 4689, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "archive", - "token_id": 4684, + "token_id": 4690, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4685, + "token_id": 4691, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "url", - "token_id": 4686, + "token_id": 4692, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "archive", - "token_id": 4687, + "token_id": 4693, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4688, + "token_id": 4694, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "date", - "token_id": 4689, + "token_id": 4695, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "url", - "token_id": 4690, + "token_id": 4696, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4691, + "token_id": 4697, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "status", - "token_id": 4692, + "token_id": 4698, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "dead", - "token_id": 4693, + "token_id": 4699, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "archive", - "token_id": 4694, + "token_id": 4700, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4695, + "token_id": 4701, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "url", - "token_id": 4696, + "token_id": 4702, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "archive", - "token_id": 4697, + "token_id": 4703, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "-", - "token_id": 4698, + "token_id": 4704, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "date", - "token_id": 4699, + "token_id": 4705, "o_rev_id": 917000089, "in": [], "out": [] }, { "str": "'", - "token_id": 4700, + "token_id": 4706, "o_rev_id": 935979857, "in": [], "out": [] }, { "str": "'", - "token_id": 4701, + "token_id": 4707, "o_rev_id": 935979857, "in": [], "out": [] }, { "str": "'", - "token_id": 4702, + "token_id": 4708, "o_rev_id": 935979857, "in": [], "out": [] }, { "str": "'", - "token_id": 4703, + "token_id": 4709, "o_rev_id": 935979857, "in": [], "out": [ @@ -40160,7 +40142,7 @@ }, { "str": "'", - "token_id": 4704, + "token_id": 4710, "o_rev_id": 935979857, "in": [], "out": [ @@ -40169,7 +40151,7 @@ }, { "str": "'", - "token_id": 4705, + "token_id": 4711, "o_rev_id": 935979857, "in": [], "out": [ @@ -40178,67 +40160,63 @@ }, { "str": "'", - "token_id": 4706, + "token_id": 4712, "o_rev_id": 1004810244, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 4707, + "token_id": 4713, "o_rev_id": 1004810244, "in": [], "out": [] }, { "str": "'", - "token_id": 4708, + "token_id": 4714, "o_rev_id": 1004810244, "in": [], "out": [] }, { "str": "last1", - "token_id": 4709, + "token_id": 4715, "o_rev_id": 1004810244, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "first1", - "token_id": 4710, + "token_id": 4716, "o_rev_id": 1004810244, "in": [], - "out": [ - 1078016622 - ] + "out": [] }, { "str": "'", - "token_id": 4711, + "token_id": 4717, "o_rev_id": 1004810244, "in": [], "out": [] }, { "str": "best", - "token_id": 4712, + "token_id": 4718, "o_rev_id": 1004810244, "in": [], "out": [] }, { "str": "'", - "token_id": 4713, + "token_id": 4719, "o_rev_id": 1004810244, "in": [], "out": [] }, { "str": "documentary", - "token_id": 4714, + "token_id": 4720, "o_rev_id": 1077970461, "in": [], "out": [ @@ -40247,7 +40225,7 @@ }, { "str": "'", - "token_id": 4715, + "token_id": 4721, "o_rev_id": 1077970461, "in": [], "out": [ @@ -40256,7 +40234,7 @@ }, { "str": "'", - "token_id": 4716, + "token_id": 4722, "o_rev_id": 1077970461, "in": [], "out": [ @@ -40265,7 +40243,7 @@ }, { "str": "'", - "token_id": 4717, + "token_id": 4723, "o_rev_id": 1077970461, "in": [], "out": [ @@ -40274,7 +40252,7 @@ }, { "str": "'", - "token_id": 4718, + "token_id": 4724, "o_rev_id": 1077970461, "in": [], "out": [ @@ -40283,7 +40261,7 @@ }, { "str": "'", - "token_id": 4719, + "token_id": 4725, "o_rev_id": 1077970461, "in": [], "out": [ @@ -40292,7 +40270,7 @@ }, { "str": "'", - "token_id": 4720, + "token_id": 4726, "o_rev_id": 1077970461, "in": [], "out": [ @@ -40301,7 +40279,7 @@ }, { "str": ",", - "token_id": 4721, + "token_id": 4727, "o_rev_id": 1078016622, "in": [], "out": [ @@ -40310,7 +40288,7 @@ }, { "str": "who", - "token_id": 4722, + "token_id": 4728, "o_rev_id": 1078016622, "in": [], "out": [ @@ -40319,7 +40297,7 @@ }, { "str": "is", - "token_id": 4723, + "token_id": 4729, "o_rev_id": 1078016622, "in": [], "out": [ @@ -40328,482 +40306,440 @@ }, { "str": "=", - "token_id": 4724, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 4725, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "work", - "token_id": 4726, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 4727, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 4728, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "painting", - "token_id": 4729, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "title", "token_id": 4730, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "the", + "str": "=", "token_id": 4731, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "tom", + "str": "work", "token_id": 4732, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "hanks", + "str": "=", "token_id": 4733, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "banksy", + "str": "=", "token_id": 4734, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "mashup", + "str": "painting", "token_id": 4735, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "artist", + "str": "|", "token_id": 4736, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "artnet", + "str": "website", "token_id": 4737, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "magazine", + "str": "=", "token_id": 4738, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "|", + "str": "www", "token_id": 4739, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "website", + "str": ".", "token_id": 4740, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "=", + "str": "artnet", "token_id": 4741, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "www", + "str": ".", "token_id": 4742, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": ".", + "str": "com", "token_id": 4743, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "artnet", + "str": "|", "token_id": 4744, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": ".", + "str": "last", "token_id": 4745, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "com", + "str": "=", "token_id": 4746, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "|", + "str": "leland", "token_id": 4747, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "last", + "str": "|", "token_id": 4748, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "=", + "str": "first", "token_id": 4749, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "leland", + "str": "=", "token_id": 4750, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "|", + "str": "john", "token_id": 4751, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "first", + "str": "|", "token_id": 4752, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "=", + "str": "date", "token_id": 4753, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "john", + "str": "=", "token_id": 4754, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "|", + "str": "2014", "token_id": 4755, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "date", + "str": "-", "token_id": 4756, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "=", + "str": "02", "token_id": 4757, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "2014", + "str": "-", "token_id": 4758, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "-", + "str": "14", "token_id": 4759, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "02", + "str": "|", "token_id": 4760, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "-", + "str": "title", "token_id": 4761, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "14", + "str": "=", "token_id": 4762, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "|", + "str": "a", "token_id": 4763, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "title", + "str": "parodist", "token_id": 4764, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "=", + "str": "who", "token_id": 4765, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "a", + "str": "calls", "token_id": 4766, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "parodist", + "str": "himself", "token_id": 4767, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "who", + "str": "hanksy", "token_id": 4768, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "calls", + "str": "|", "token_id": 4769, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "himself", + "str": "newspaper", "token_id": 4770, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "hanksy", + "str": "=", "token_id": 4771, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "|", + "str": "[[", "token_id": 4772, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "newspaper", + "str": "the", "token_id": 4773, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "=", + "str": "new", "token_id": 4774, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "[[", + "str": "york", "token_id": 4775, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "the", + "str": "times", "token_id": 4776, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "new", + "str": "]]", "token_id": 4777, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "york", + "str": "|", "token_id": 4778, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "times", + "str": "issn", "token_id": 4779, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "]]", + "str": "=", "token_id": 4780, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "|", + "str": "0362", "token_id": 4781, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "issn", + "str": "-", "token_id": 4782, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "=", + "str": "4331", "token_id": 4783, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "0362", + "str": "<", "token_id": 4784, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "-", + "str": "ref", "token_id": 4785, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "4331", + "str": ">", "token_id": 4786, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "<", + "str": "{{", "token_id": 4787, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "ref", + "str": "cite", "token_id": 4788, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": ">", + "str": "news", "token_id": 4789, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "{{", + "str": "|", "token_id": 4790, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "cite", + "str": "title", "token_id": 4791, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "news", + "str": "=", "token_id": 4792, "o_rev_id": 1078016622, "in": [], @@ -40817,7 +40753,7 @@ "out": [] }, { - "str": "title", + "str": "newspaper", "token_id": 4794, "o_rev_id": 1078016622, "in": [], @@ -40831,42 +40767,42 @@ "out": [] }, { - "str": "|", + "str": "ny", "token_id": 4796, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "newspaper", + "str": "daily", "token_id": 4797, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "=", + "str": "news", "token_id": 4798, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "ny", + "str": "|", "token_id": 4799, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "daily", + "str": "url", "token_id": 4800, "o_rev_id": 1078016622, "in": [], "out": [] }, { - "str": "news", + "str": "=", "token_id": 4801, "o_rev_id": 1078016622, "in": [], @@ -40879,464 +40815,240 @@ "in": [], "out": [] }, - { - "str": "url", - "token_id": 4803, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 4804, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 4805, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, { "str": "=", - "token_id": 4806, + "token_id": 4803, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "}}", - "token_id": 4807, + "token_id": 4804, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "he", - "token_id": 4808, + "token_id": 4805, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "made", - "token_id": 4809, + "token_id": 4806, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "work", - "token_id": 4810, + "token_id": 4807, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "critical", - "token_id": 4811, + "token_id": 4808, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "'", - "token_id": 4812, + "token_id": 4809, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "s", - "token_id": 4813, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "last1", - "token_id": 4814, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "writer", - "token_id": 4815, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "first1", - "token_id": 4816, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "priscilla", - "token_id": 4817, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "frank", - "token_id": 4818, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "arts", - "token_id": 4819, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "last2", - "token_id": 4820, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "post", - "token_id": 4821, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "first2", - "token_id": 4822, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "the", - "token_id": 4823, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "huffington", - "token_id": 4824, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "date", - "token_id": 4825, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "2016", - "token_id": 4826, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "02", - "token_id": 4827, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "26", - "token_id": 4828, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "title", - "token_id": 4829, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "dump", - "token_id": 4830, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "across", - "token_id": 4831, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "america", - "token_id": 4832, + "token_id": 4810, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "|", - "token_id": 4833, + "token_id": 4811, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "website", - "token_id": 4834, + "token_id": 4812, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4835, + "token_id": 4813, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "the", - "token_id": 4836, + "token_id": 4814, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "huffington", - "token_id": 4837, + "token_id": 4815, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "post", - "token_id": 4838, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "title", - "token_id": 4839, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "newspaper", - "token_id": 4840, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "business", - "token_id": 4841, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "insider", - "token_id": 4842, + "token_id": 4816, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "|", - "token_id": 4843, + "token_id": 4817, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "date", - "token_id": 4844, + "token_id": 4818, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4845, + "token_id": 4819, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "2016", - "token_id": 4846, + "token_id": 4820, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "-", - "token_id": 4847, + "token_id": 4821, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "03", - "token_id": 4848, + "token_id": 4822, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "-", - "token_id": 4849, + "token_id": 4823, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "27", - "token_id": 4850, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "title", - "token_id": 4851, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "dump", - "token_id": 4852, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "trump", - "token_id": 4853, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "grassroots", - "token_id": 4854, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "bowel", - "token_id": 4855, - "o_rev_id": 1078016622, - "in": [], - "out": [] - }, - { - "str": "movement", - "token_id": 4856, + "token_id": 4824, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "|", - "token_id": 4857, + "token_id": 4825, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "language", - "token_id": 4858, + "token_id": 4826, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4859, + "token_id": 4827, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "en", - "token_id": 4860, + "token_id": 4828, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "-", - "token_id": 4861, + "token_id": 4829, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "gb", - "token_id": 4862, + "token_id": 4830, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "|", - "token_id": 4863, + "token_id": 4831, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "newspaper", - "token_id": 4864, + "token_id": 4832, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4865, + "token_id": 4833, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "the", - "token_id": 4866, + "token_id": 4834, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "independent", - "token_id": 4867, + "token_id": 4835, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "career", - "token_id": 4868, + "token_id": 4836, "o_rev_id": 1078016622, "in": [], "out": [ @@ -41345,7 +41057,7 @@ }, { "str": "=", - "token_id": 4869, + "token_id": 4837, "o_rev_id": 1078016622, "in": [], "out": [ @@ -41354,7 +41066,7 @@ }, { "str": "=", - "token_id": 4870, + "token_id": 4838, "o_rev_id": 1078016622, "in": [], "out": [ @@ -41363,42 +41075,42 @@ }, { "str": "=", - "token_id": 4871, + "token_id": 4839, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4872, + "token_id": 4840, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4873, + "token_id": 4841, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4874, + "token_id": 4842, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4875, + "token_id": 4843, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4876, + "token_id": 4844, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41409,7 +41121,7 @@ }, { "str": "=", - "token_id": 4877, + "token_id": 4845, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41420,7 +41132,7 @@ }, { "str": "=", - "token_id": 4878, + "token_id": 4846, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41431,7 +41143,7 @@ }, { "str": "=", - "token_id": 4879, + "token_id": 4847, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41442,7 +41154,7 @@ }, { "str": "=", - "token_id": 4880, + "token_id": 4848, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41453,7 +41165,7 @@ }, { "str": "=", - "token_id": 4881, + "token_id": 4849, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41464,7 +41176,7 @@ }, { "str": "=", - "token_id": 4882, + "token_id": 4850, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41475,7 +41187,7 @@ }, { "str": "=", - "token_id": 4883, + "token_id": 4851, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41486,7 +41198,7 @@ }, { "str": "=", - "token_id": 4884, + "token_id": 4852, "o_rev_id": 1078016622, "in": [ 1163557612 @@ -41497,91 +41209,91 @@ }, { "str": "=", - "token_id": 4885, + "token_id": 4853, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4886, + "token_id": 4854, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4887, + "token_id": 4855, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "tv", - "token_id": 4888, + "token_id": 4856, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "series", - "token_id": 4889, + "token_id": 4857, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4890, + "token_id": 4858, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4891, + "token_id": 4859, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "=", - "token_id": 4892, + "token_id": 4860, "o_rev_id": 1078016622, "in": [], "out": [] }, { "str": "beginning", - "token_id": 4893, + "token_id": 4861, "o_rev_id": 1082167926, "in": [], "out": [] }, { "str": "in", - "token_id": 4894, + "token_id": 4862, "o_rev_id": 1082167926, "in": [], "out": [] }, { "str": "2022", - "token_id": 4895, + "token_id": 4863, "o_rev_id": 1082167926, "in": [], "out": [] }, { "str": ",", - "token_id": 4896, + "token_id": 4864, "o_rev_id": 1082167926, "in": [], "out": [] }, { "str": "lucas", - "token_id": 4897, + "token_id": 4865, "o_rev_id": 1082167926, "in": [], "out": [ @@ -41590,7 +41302,7 @@ }, { "str": "has", - "token_id": 4898, + "token_id": 4866, "o_rev_id": 1082167926, "in": [], "out": [ @@ -41599,7 +41311,7 @@ }, { "str": "been", - "token_id": 4899, + "token_id": 4867, "o_rev_id": 1082167926, "in": [], "out": [ @@ -41608,21 +41320,21 @@ }, { "str": "working", - "token_id": 4900, + "token_id": 4868, "o_rev_id": 1082167926, "in": [], "out": [] }, { "str": "under", - "token_id": 4901, + "token_id": 4869, "o_rev_id": 1082167926, "in": [], "out": [] }, { "str": "the", - "token_id": 4902, + "token_id": 4870, "o_rev_id": 1082167926, "in": [], "out": [ @@ -41631,7 +41343,7 @@ }, { "str": "pseudonym", - "token_id": 4903, + "token_id": 4871, "o_rev_id": 1082167926, "in": [], "out": [ @@ -41640,7 +41352,7 @@ }, { "str": "adam", - "token_id": 4904, + "token_id": 4872, "o_rev_id": 1082167926, "in": [], "out": [ @@ -41649,7 +41361,7 @@ }, { "str": "himebauch", - "token_id": 4905, + "token_id": 4873, "o_rev_id": 1082167926, "in": [], "out": [ @@ -41658,7 +41370,7 @@ }, { "str": ".", - "token_id": 4906, + "token_id": 4874, "o_rev_id": 1082167926, "in": [], "out": [ @@ -41667,7 +41379,7 @@ }, { "str": "'", - "token_id": 4907, + "token_id": 4875, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41676,7 +41388,7 @@ }, { "str": "'", - "token_id": 4908, + "token_id": 4876, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41685,7 +41397,7 @@ }, { "str": "'", - "token_id": 4909, + "token_id": 4877, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41694,7 +41406,7 @@ }, { "str": "'", - "token_id": 4910, + "token_id": 4878, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41703,7 +41415,7 @@ }, { "str": "'", - "token_id": 4911, + "token_id": 4879, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41712,7 +41424,7 @@ }, { "str": "'", - "token_id": 4912, + "token_id": 4880, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41721,7 +41433,7 @@ }, { "str": "and", - "token_id": 4913, + "token_id": 4881, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41730,7 +41442,7 @@ }, { "str": "has", - "token_id": 4914, + "token_id": 4882, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41739,7 +41451,7 @@ }, { "str": "advertised", - "token_id": 4915, + "token_id": 4883, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41748,7 +41460,7 @@ }, { "str": "a", - "token_id": 4916, + "token_id": 4884, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41757,7 +41469,7 @@ }, { "str": "documentary", - "token_id": 4917, + "token_id": 4885, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41766,7 +41478,7 @@ }, { "str": "film", - "token_id": 4918, + "token_id": 4886, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41775,7 +41487,7 @@ }, { "str": "chronicaling", - "token_id": 4919, + "token_id": 4887, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41784,7 +41496,7 @@ }, { "str": "the", - "token_id": 4920, + "token_id": 4888, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41793,7 +41505,7 @@ }, { "str": "fictional", - "token_id": 4921, + "token_id": 4889, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41802,7 +41514,7 @@ }, { "str": "origins", - "token_id": 4922, + "token_id": 4890, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41811,7 +41523,7 @@ }, { "str": "of", - "token_id": 4923, + "token_id": 4891, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41820,7 +41532,7 @@ }, { "str": "the", - "token_id": 4924, + "token_id": 4892, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41829,7 +41541,7 @@ }, { "str": "persona", - "token_id": 4925, + "token_id": 4893, "o_rev_id": 1082168224, "in": [], "out": [ @@ -41838,28 +41550,28 @@ }, { "str": "his", - "token_id": 4926, + "token_id": 4894, "o_rev_id": 1083182466, "in": [], "out": [] }, { "str": "actual", - "token_id": 4927, + "token_id": 4895, "o_rev_id": 1083182466, "in": [], "out": [] }, { "str": "name", - "token_id": 4928, + "token_id": 4896, "o_rev_id": 1083182466, "in": [], "out": [] }, { "str": "his", - "token_id": 4929, + "token_id": 4897, "o_rev_id": 1083182466, "in": [], "out": [ @@ -41868,7 +41580,7 @@ }, { "str": "artistic", - "token_id": 4930, + "token_id": 4898, "o_rev_id": 1083182466, "in": [], "out": [ @@ -41877,7 +41589,7 @@ }, { "str": "lucas", - "token_id": 4931, + "token_id": 4899, "o_rev_id": 1083184999, "in": [], "out": [ @@ -41886,7 +41598,7 @@ }, { "str": "chroniciling", - "token_id": 4932, + "token_id": 4900, "o_rev_id": 1083184999, "in": [], "out": [ @@ -41895,35 +41607,35 @@ }, { "str": "{{", - "token_id": 4933, + "token_id": 4901, "o_rev_id": 1084068368, "in": [], "out": [] }, { "str": "short", - "token_id": 4934, + "token_id": 4902, "o_rev_id": 1084068368, "in": [], "out": [] }, { "str": "description", - "token_id": 4935, + "token_id": 4903, "o_rev_id": 1084068368, "in": [], "out": [] }, { "str": "|", - "token_id": 4936, + "token_id": 4904, "o_rev_id": 1084068368, "in": [], "out": [] }, { "str": "new", - "token_id": 4937, + "token_id": 4905, "o_rev_id": 1084068368, "in": [], "out": [ @@ -41932,7 +41644,7 @@ }, { "str": "york", - "token_id": 4938, + "token_id": 4906, "o_rev_id": 1084068368, "in": [], "out": [ @@ -41941,7 +41653,7 @@ }, { "str": "city", - "token_id": 4939, + "token_id": 4907, "o_rev_id": 1084068368, "in": [], "out": [ @@ -41950,7 +41662,7 @@ }, { "str": "street", - "token_id": 4940, + "token_id": 4908, "o_rev_id": 1084068368, "in": [], "out": [ @@ -41959,21 +41671,21 @@ }, { "str": "artist", - "token_id": 4941, + "token_id": 4909, "o_rev_id": 1084068368, "in": [], "out": [] }, { "str": "}}", - "token_id": 4942, + "token_id": 4910, "o_rev_id": 1084068368, "in": [], "out": [] }, { "str": "angels", - "token_id": 4943, + "token_id": 4911, "o_rev_id": 1084069139, "in": [], "out": [ @@ -41982,7 +41694,7 @@ }, { "str": "and", - "token_id": 4944, + "token_id": 4912, "o_rev_id": 1084069139, "in": [], "out": [ @@ -41991,7 +41703,7 @@ }, { "str": "demons", - "token_id": 4945, + "token_id": 4913, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42000,7 +41712,7 @@ }, { "str": "street", - "token_id": 4946, + "token_id": 4914, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42009,7 +41721,7 @@ }, { "str": "art", - "token_id": 4947, + "token_id": 4915, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42018,7 +41730,7 @@ }, { "str": "by", - "token_id": 4948, + "token_id": 4916, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42027,7 +41739,7 @@ }, { "str": "hanksy", - "token_id": 4949, + "token_id": 4917, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42036,7 +41748,7 @@ }, { "str": ".", - "token_id": 4950, + "token_id": 4918, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42045,7 +41757,7 @@ }, { "str": "jpg", - "token_id": 4951, + "token_id": 4919, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42054,7 +41766,7 @@ }, { "str": "|", - "token_id": 4952, + "token_id": 4920, "o_rev_id": 1084069139, "in": [ 1328281646 @@ -42065,7 +41777,7 @@ }, { "str": "caption", - "token_id": 4953, + "token_id": 4921, "o_rev_id": 1084069139, "in": [ 1328281646 @@ -42076,7 +41788,7 @@ }, { "str": "=", - "token_id": 4954, + "token_id": 4922, "o_rev_id": 1084069139, "in": [ 1328281646 @@ -42087,7 +41799,7 @@ }, { "str": "2012", - "token_id": 4955, + "token_id": 4923, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42096,7 +41808,7 @@ }, { "str": "\"", - "token_id": 4956, + "token_id": 4924, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42105,7 +41817,7 @@ }, { "str": "angels", - "token_id": 4957, + "token_id": 4925, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42114,7 +41826,7 @@ }, { "str": "and", - "token_id": 4958, + "token_id": 4926, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42123,7 +41835,7 @@ }, { "str": "demons", - "token_id": 4959, + "token_id": 4927, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42132,7 +41844,7 @@ }, { "str": "\"", - "token_id": 4960, + "token_id": 4928, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42141,7 +41853,7 @@ }, { "str": "street", - "token_id": 4961, + "token_id": 4929, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42150,7 +41862,7 @@ }, { "str": "art", - "token_id": 4962, + "token_id": 4930, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42159,7 +41871,7 @@ }, { "str": "by", - "token_id": 4963, + "token_id": 4931, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42168,7 +41880,7 @@ }, { "str": "hanksy", - "token_id": 4964, + "token_id": 4932, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42177,7 +41889,7 @@ }, { "str": ",", - "token_id": 4965, + "token_id": 4933, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42186,7 +41898,7 @@ }, { "str": "based", - "token_id": 4966, + "token_id": 4934, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42195,7 +41907,7 @@ }, { "str": "on", - "token_id": 4967, + "token_id": 4935, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42204,7 +41916,7 @@ }, { "str": "banksy", - "token_id": 4968, + "token_id": 4936, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42213,7 +41925,7 @@ }, { "str": "'", - "token_id": 4969, + "token_id": 4937, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42222,7 +41934,7 @@ }, { "str": "s", - "token_id": 4970, + "token_id": 4938, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42231,7 +41943,7 @@ }, { "str": "2002", - "token_id": 4971, + "token_id": 4939, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42240,7 +41952,7 @@ }, { "str": "\"", - "token_id": 4972, + "token_id": 4940, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42249,7 +41961,7 @@ }, { "str": "[[", - "token_id": 4973, + "token_id": 4941, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42258,7 +41970,7 @@ }, { "str": "pulp", - "token_id": 4974, + "token_id": 4942, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42267,7 +41979,7 @@ }, { "str": "fiction", - "token_id": 4975, + "token_id": 4943, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42276,7 +41988,7 @@ }, { "str": "(", - "token_id": 4976, + "token_id": 4944, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42285,7 +41997,7 @@ }, { "str": "banksy", - "token_id": 4977, + "token_id": 4945, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42294,7 +42006,7 @@ }, { "str": ")", - "token_id": 4978, + "token_id": 4946, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42303,7 +42015,7 @@ }, { "str": "|", - "token_id": 4979, + "token_id": 4947, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42312,7 +42024,7 @@ }, { "str": "pulp", - "token_id": 4980, + "token_id": 4948, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42321,7 +42033,7 @@ }, { "str": "fiction", - "token_id": 4981, + "token_id": 4949, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42330,7 +42042,7 @@ }, { "str": "]]", - "token_id": 4982, + "token_id": 4950, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42339,7 +42051,7 @@ }, { "str": "\"", - "token_id": 4983, + "token_id": 4951, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42348,7 +42060,7 @@ }, { "str": "his", - "token_id": 4984, + "token_id": 4952, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42357,7 +42069,7 @@ }, { "str": "artwork", - "token_id": 4985, + "token_id": 4953, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42366,7 +42078,7 @@ }, { "str": "includes", - "token_id": 4986, + "token_id": 4954, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42375,7 +42087,7 @@ }, { "str": "recreations", - "token_id": 4987, + "token_id": 4955, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42384,7 +42096,7 @@ }, { "str": "of", - "token_id": 4988, + "token_id": 4956, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42393,7 +42105,7 @@ }, { "str": "[[", - "token_id": 4989, + "token_id": 4957, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42402,7 +42114,7 @@ }, { "str": "banksy", - "token_id": 4990, + "token_id": 4958, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42411,7 +42123,7 @@ }, { "str": "]]", - "token_id": 4991, + "token_id": 4959, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42420,7 +42132,7 @@ }, { "str": "street", - "token_id": 4992, + "token_id": 4960, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42429,7 +42141,7 @@ }, { "str": "art", - "token_id": 4993, + "token_id": 4961, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42438,7 +42150,7 @@ }, { "str": "adapted", - "token_id": 4994, + "token_id": 4962, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42447,7 +42159,7 @@ }, { "str": "to", - "token_id": 4995, + "token_id": 4963, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42456,7 +42168,7 @@ }, { "str": "include", - "token_id": 4996, + "token_id": 4964, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42465,7 +42177,7 @@ }, { "str": "the", - "token_id": 4997, + "token_id": 4965, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42474,7 +42186,7 @@ }, { "str": "face", - "token_id": 4998, + "token_id": 4966, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42483,14 +42195,14 @@ }, { "str": "of", - "token_id": 4999, + "token_id": 4967, "o_rev_id": 1084069139, "in": [], "out": [] }, { "str": "actor", - "token_id": 5000, + "token_id": 4968, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42499,7 +42211,7 @@ }, { "str": "[[", - "token_id": 5001, + "token_id": 4969, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42508,7 +42220,7 @@ }, { "str": "tom", - "token_id": 5002, + "token_id": 4970, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42517,7 +42229,7 @@ }, { "str": "hanks", - "token_id": 5003, + "token_id": 4971, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42526,7 +42238,7 @@ }, { "str": "]]", - "token_id": 5004, + "token_id": 4972, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42535,7 +42247,7 @@ }, { "str": ".", - "token_id": 5005, + "token_id": 4973, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42544,7 +42256,7 @@ }, { "str": "lucas", - "token_id": 5006, + "token_id": 4974, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42553,7 +42265,7 @@ }, { "str": "[[", - "token_id": 5007, + "token_id": 4975, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42562,7 +42274,7 @@ }, { "str": "file", - "token_id": 5008, + "token_id": 4976, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42571,7 +42283,7 @@ }, { "str": ":", - "token_id": 5009, + "token_id": 4977, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42580,7 +42292,7 @@ }, { "str": "donald", - "token_id": 5010, + "token_id": 4978, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42589,7 +42301,7 @@ }, { "str": "trump", - "token_id": 5011, + "token_id": 4979, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42598,7 +42310,7 @@ }, { "str": "(", - "token_id": 5012, + "token_id": 4980, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42607,7 +42319,7 @@ }, { "str": "24267946943", - "token_id": 5013, + "token_id": 4981, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42616,7 +42328,7 @@ }, { "str": ")", - "token_id": 5014, + "token_id": 4982, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42625,7 +42337,7 @@ }, { "str": ".", - "token_id": 5015, + "token_id": 4983, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42634,7 +42346,7 @@ }, { "str": "jpg", - "token_id": 5016, + "token_id": 4984, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42643,7 +42355,7 @@ }, { "str": "|", - "token_id": 5017, + "token_id": 4985, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42652,7 +42364,7 @@ }, { "str": "thumb", - "token_id": 5018, + "token_id": 4986, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42661,7 +42373,7 @@ }, { "str": "|", - "token_id": 5019, + "token_id": 4987, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42670,7 +42382,7 @@ }, { "str": "\"", - "token_id": 5020, + "token_id": 4988, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42679,7 +42391,7 @@ }, { "str": "tronald", - "token_id": 5021, + "token_id": 4989, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42688,7 +42400,7 @@ }, { "str": "dump", - "token_id": 5022, + "token_id": 4990, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42697,7 +42409,7 @@ }, { "str": "\"", - "token_id": 5023, + "token_id": 4991, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42706,7 +42418,7 @@ }, { "str": "]]", - "token_id": 5024, + "token_id": 4992, "o_rev_id": 1084069139, "in": [], "out": [ @@ -42715,7 +42427,7 @@ }, { "str": "|", - "token_id": 5025, + "token_id": 4993, "o_rev_id": 1084069237, "in": [], "out": [ @@ -42724,7 +42436,7 @@ }, { "str": "hanksy", - "token_id": 5026, + "token_id": 4994, "o_rev_id": 1084069237, "in": [], "out": [ @@ -42733,7 +42445,7 @@ }, { "str": "'", - "token_id": 5027, + "token_id": 4995, "o_rev_id": 1084069237, "in": [], "out": [ @@ -42742,7 +42454,7 @@ }, { "str": "s", - "token_id": 5028, + "token_id": 4996, "o_rev_id": 1084069237, "in": [], "out": [ @@ -42751,7 +42463,7 @@ }, { "str": "depiction", - "token_id": 5029, + "token_id": 4997, "o_rev_id": 1084069237, "in": [], "out": [ @@ -42760,7 +42472,7 @@ }, { "str": "of", - "token_id": 5030, + "token_id": 4998, "o_rev_id": 1084069237, "in": [], "out": [ @@ -42769,7 +42481,7 @@ }, { "str": "donald", - "token_id": 5031, + "token_id": 4999, "o_rev_id": 1084069237, "in": [], "out": [ @@ -42778,7 +42490,7 @@ }, { "str": "trump", - "token_id": 5032, + "token_id": 5000, "o_rev_id": 1084069237, "in": [], "out": [ @@ -42787,7 +42499,7 @@ }, { "str": "himebauch", - "token_id": 5033, + "token_id": 5001, "o_rev_id": 1107580147, "in": [], "out": [ @@ -42796,7 +42508,7 @@ }, { "str": ",", - "token_id": 5034, + "token_id": 5002, "o_rev_id": 1107580147, "in": [], "out": [ @@ -42805,7 +42517,7 @@ }, { "str": "chronicling", - "token_id": 5035, + "token_id": 5003, "o_rev_id": 1107580147, "in": [], "out": [ @@ -42814,532 +42526,532 @@ }, { "str": "|", - "token_id": 5036, + "token_id": 5004, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "url", - "token_id": 5037, + "token_id": 5005, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5038, + "token_id": 5006, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "status", - "token_id": 5039, + "token_id": 5007, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "=", - "token_id": 5040, + "token_id": 5008, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "dead", - "token_id": 5041, + "token_id": 5009, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "|", - "token_id": 5042, + "token_id": 5010, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "archive", - "token_id": 5043, + "token_id": 5011, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5044, + "token_id": 5012, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "url", - "token_id": 5045, + "token_id": 5013, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "=", - "token_id": 5046, + "token_id": 5014, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "https", - "token_id": 5047, + "token_id": 5015, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": ":", - "token_id": 5048, + "token_id": 5016, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5049, + "token_id": 5017, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5050, + "token_id": 5018, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "web", - "token_id": 5051, + "token_id": 5019, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": ".", - "token_id": 5052, + "token_id": 5020, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "archive", - "token_id": 5053, + "token_id": 5021, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": ".", - "token_id": 5054, + "token_id": 5022, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "org", - "token_id": 5055, + "token_id": 5023, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5056, + "token_id": 5024, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "web", - "token_id": 5057, + "token_id": 5025, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5058, + "token_id": 5026, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "20220813125350", - "token_id": 5059, + "token_id": 5027, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5060, + "token_id": 5028, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "https", - "token_id": 5061, + "token_id": 5029, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": ":", - "token_id": 5062, + "token_id": 5030, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5063, + "token_id": 5031, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5064, + "token_id": 5032, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "boweryboogie", - "token_id": 5065, + "token_id": 5033, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": ".", - "token_id": 5066, + "token_id": 5034, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "com", - "token_id": 5067, + "token_id": 5035, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5068, + "token_id": 5036, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "2015", - "token_id": 5069, + "token_id": 5037, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5070, + "token_id": 5038, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "03", - "token_id": 5071, + "token_id": 5039, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5072, + "token_id": 5040, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "recap", - "token_id": 5073, + "token_id": 5041, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5074, + "token_id": 5042, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5075, + "token_id": 5043, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5076, + "token_id": 5044, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "transforms", - "token_id": 5077, + "token_id": 5045, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5078, + "token_id": 5046, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "chase", - "token_id": 5079, + "token_id": 5047, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5080, + "token_id": 5048, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "bank", - "token_id": 5081, + "token_id": 5049, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5082, + "token_id": 5050, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "for", - "token_id": 5083, + "token_id": 5051, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5084, + "token_id": 5052, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "best", - "token_id": 5085, + "token_id": 5053, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5086, + "token_id": 5054, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "of", - "token_id": 5087, + "token_id": 5055, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5088, + "token_id": 5056, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "the", - "token_id": 5089, + "token_id": 5057, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5090, + "token_id": 5058, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "worst", - "token_id": 5091, + "token_id": 5059, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "/", - "token_id": 5092, + "token_id": 5060, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "|", - "token_id": 5093, + "token_id": 5061, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "archive", - "token_id": 5094, + "token_id": 5062, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5095, + "token_id": 5063, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "date", - "token_id": 5096, + "token_id": 5064, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "=", - "token_id": 5097, + "token_id": 5065, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "2022", - "token_id": 5098, + "token_id": 5066, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5099, + "token_id": 5067, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "08", - "token_id": 5100, + "token_id": 5068, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "-", - "token_id": 5101, + "token_id": 5069, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "13", - "token_id": 5102, + "token_id": 5070, "o_rev_id": 1127222922, "in": [], "out": [] }, { "str": "last", - "token_id": 5103, + "token_id": 5071, "o_rev_id": 1127276501, "in": [], "out": [] }, { "str": "=", - "token_id": 5104, + "token_id": 5072, "o_rev_id": 1127276501, "in": [], "out": [] }, { "str": "perler", - "token_id": 5105, + "token_id": 5073, "o_rev_id": 1127276501, "in": [], "out": [] }, { "str": "|", - "token_id": 5106, + "token_id": 5074, "o_rev_id": 1127276501, "in": [], "out": [] }, { "str": "first", - "token_id": 5107, + "token_id": 5075, "o_rev_id": 1127276501, "in": [], "out": [] }, { "str": "=", - "token_id": 5108, + "token_id": 5076, "o_rev_id": 1127276501, "in": [], "out": [] }, { "str": "elie", - "token_id": 5109, + "token_id": 5077, "o_rev_id": 1127276501, "in": [], "out": [] }, { "str": "|", - "token_id": 5110, + "token_id": 5078, "o_rev_id": 1127276501, "in": [], "out": [] }, { "str": "under", - "token_id": 5111, + "token_id": 5079, "o_rev_id": 1162525604, "in": [], "out": [ @@ -43348,14 +43060,14 @@ }, { "str": "the", - "token_id": 5112, + "token_id": 5080, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "moniker", - "token_id": 5113, + "token_id": 5081, "o_rev_id": 1162525604, "in": [], "out": [ @@ -43364,7 +43076,7 @@ }, { "str": "hanksy", - "token_id": 5114, + "token_id": 5082, "o_rev_id": 1162525604, "in": [], "out": [ @@ -43373,7 +43085,7 @@ }, { "str": "a", - "token_id": 5115, + "token_id": 5083, "o_rev_id": 1162525604, "in": [], "out": [ @@ -43382,7 +43094,7 @@ }, { "str": "cartoon", - "token_id": 5116, + "token_id": 5084, "o_rev_id": 1162525604, "in": [], "out": [ @@ -43391,7 +43103,7 @@ }, { "str": "interpretation", - "token_id": 5117, + "token_id": 5085, "o_rev_id": 1162525604, "in": [], "out": [ @@ -43400,826 +43112,826 @@ }, { "str": "himebauch", - "token_id": 5118, + "token_id": 5086, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "began", - "token_id": 5119, + "token_id": 5087, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "<", - "token_id": 5120, + "token_id": 5088, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "ref", - "token_id": 5121, + "token_id": 5089, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "name", - "token_id": 5122, + "token_id": 5090, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5123, + "token_id": 5091, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "\"", - "token_id": 5124, + "token_id": 5092, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ":", - "token_id": 5125, + "token_id": 5093, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "3", - "token_id": 5126, + "token_id": 5094, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "\"", - "token_id": 5127, + "token_id": 5095, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ">", - "token_id": 5128, + "token_id": 5096, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "{{", - "token_id": 5129, + "token_id": 5097, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "cite", - "token_id": 5130, + "token_id": 5098, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "news", - "token_id": 5131, + "token_id": 5099, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5132, + "token_id": 5100, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "last", - "token_id": 5133, + "token_id": 5101, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5134, + "token_id": 5102, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "sherman", - "token_id": 5135, + "token_id": 5103, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5136, + "token_id": 5104, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "first", - "token_id": 5137, + "token_id": 5105, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5138, + "token_id": 5106, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "rachel", - "token_id": 5139, + "token_id": 5107, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5140, + "token_id": 5108, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "date", - "token_id": 5141, + "token_id": 5109, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5142, + "token_id": 5110, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2022", - "token_id": 5143, + "token_id": 5111, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5144, + "token_id": 5112, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "12", - "token_id": 5145, + "token_id": 5113, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5146, + "token_id": 5114, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "14", - "token_id": 5147, + "token_id": 5115, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5148, + "token_id": 5116, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "title", - "token_id": 5149, + "token_id": 5117, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5150, + "token_id": 5118, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "artist", - "token_id": 5151, + "token_id": 5119, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "or", - "token_id": 5152, + "token_id": 5120, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "artifice", - "token_id": 5153, + "token_id": 5121, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ":", - "token_id": 5154, + "token_id": 5122, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "who", - "token_id": 5155, + "token_id": 5123, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "is", - "token_id": 5156, + "token_id": 5124, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "adam", - "token_id": 5157, + "token_id": 5125, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5158, + "token_id": 5126, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "?", - "token_id": 5159, + "token_id": 5127, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5160, + "token_id": 5128, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "language", - "token_id": 5161, + "token_id": 5129, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5162, + "token_id": 5130, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "en", - "token_id": 5163, + "token_id": 5131, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5164, + "token_id": 5132, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "us", - "token_id": 5165, + "token_id": 5133, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5166, + "token_id": 5134, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "work", - "token_id": 5167, + "token_id": 5135, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5168, + "token_id": 5136, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "the", - "token_id": 5169, + "token_id": 5137, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "new", - "token_id": 5170, + "token_id": 5138, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "york", - "token_id": 5171, + "token_id": 5139, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "times", - "token_id": 5172, + "token_id": 5140, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5173, + "token_id": 5141, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "url", - "token_id": 5174, + "token_id": 5142, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5175, + "token_id": 5143, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "https", - "token_id": 5176, + "token_id": 5144, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ":", - "token_id": 5177, + "token_id": 5145, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5178, + "token_id": 5146, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5179, + "token_id": 5147, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "www", - "token_id": 5180, + "token_id": 5148, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ".", - "token_id": 5181, + "token_id": 5149, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "nytimes", - "token_id": 5182, + "token_id": 5150, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ".", - "token_id": 5183, + "token_id": 5151, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "com", - "token_id": 5184, + "token_id": 5152, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5185, + "token_id": 5153, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2022", - "token_id": 5186, + "token_id": 5154, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5187, + "token_id": 5155, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "12", - "token_id": 5188, + "token_id": 5156, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5189, + "token_id": 5157, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "14", - "token_id": 5190, + "token_id": 5158, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5191, + "token_id": 5159, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "arts", - "token_id": 5192, + "token_id": 5160, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5193, + "token_id": 5161, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "design", - "token_id": 5194, + "token_id": 5162, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5195, + "token_id": 5163, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "con", - "token_id": 5196, + "token_id": 5164, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5197, + "token_id": 5165, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "artist", - "token_id": 5198, + "token_id": 5166, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5199, + "token_id": 5167, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "adam", - "token_id": 5200, + "token_id": 5168, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5201, + "token_id": 5169, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5202, + "token_id": 5170, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ".", - "token_id": 5203, + "token_id": 5171, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "html", - "token_id": 5204, + "token_id": 5172, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5205, + "token_id": 5173, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "access", - "token_id": 5206, + "token_id": 5174, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5207, + "token_id": 5175, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "date", - "token_id": 5208, + "token_id": 5176, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5209, + "token_id": 5177, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2023", - "token_id": 5210, + "token_id": 5178, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5211, + "token_id": 5179, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "06", - "token_id": 5212, + "token_id": 5180, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5213, + "token_id": 5181, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "29", - "token_id": 5214, + "token_id": 5182, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5215, + "token_id": 5183, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "issn", - "token_id": 5216, + "token_id": 5184, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5217, + "token_id": 5185, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "0362", - "token_id": 5218, + "token_id": 5186, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5219, + "token_id": 5187, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "4331", - "token_id": 5220, + "token_id": 5188, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "}}", - "token_id": 5221, + "token_id": 5189, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "<", - "token_id": 5222, + "token_id": 5190, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5223, + "token_id": 5191, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "ref", - "token_id": 5224, + "token_id": 5192, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ">", - "token_id": 5225, + "token_id": 5193, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "as", - "token_id": 5226, + "token_id": 5194, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5227, + "token_id": 5195, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "as", - "token_id": 5228, + "token_id": 5196, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5229, + "token_id": 5197, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ",", - "token_id": 5230, + "token_id": 5198, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5231, + "token_id": 5199, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "combining", - "token_id": 5232, + "token_id": 5200, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "between", - "token_id": 5233, + "token_id": 5201, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5234, + "token_id": 5202, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2019", - "token_id": 5235, + "token_id": 5203, "o_rev_id": 1162525604, "in": [], "out": [ @@ -44228,35 +43940,35 @@ }, { "str": "pasted", - "token_id": 5236, + "token_id": 5204, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5237, + "token_id": 5205, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "painted", - "token_id": 5238, + "token_id": 5206, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "were", - "token_id": 5239, + "token_id": 5207, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "hanky", - "token_id": 5240, + "token_id": 5208, "o_rev_id": 1162525604, "in": [], "out": [ @@ -44265,7 +43977,7 @@ }, { "str": "'", - "token_id": 5241, + "token_id": 5209, "o_rev_id": 1162525604, "in": [], "out": [ @@ -44274,7 +43986,7 @@ }, { "str": "s", - "token_id": 5242, + "token_id": 5210, "o_rev_id": 1162525604, "in": [], "out": [ @@ -44283,7 +43995,7 @@ }, { "str": "=", - "token_id": 5243, + "token_id": 5211, "o_rev_id": 1162525604, "in": [], "out": [ @@ -44292,7 +44004,7 @@ }, { "str": "=", - "token_id": 5244, + "token_id": 5212, "o_rev_id": 1162525604, "in": [], "out": [ @@ -44301,28 +44013,28 @@ }, { "str": "work", - "token_id": 5245, + "token_id": 5213, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "as", - "token_id": 5246, + "token_id": 5214, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "adam", - "token_id": 5247, + "token_id": 5215, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "lucas", - "token_id": 5248, + "token_id": 5216, "o_rev_id": 1162525604, "in": [], "out": [ @@ -44331,7 +44043,7 @@ }, { "str": "himebauch", - "token_id": 5249, + "token_id": 5217, "o_rev_id": 1162525604, "in": [], "out": [ @@ -44340,1365 +44052,1365 @@ }, { "str": "=", - "token_id": 5250, + "token_id": 5218, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5251, + "token_id": 5219, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5252, + "token_id": 5220, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5253, + "token_id": 5221, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5254, + "token_id": 5222, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "'", - "token_id": 5255, + "token_id": 5223, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "'", - "token_id": 5256, + "token_id": 5224, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "back", - "token_id": 5257, + "token_id": 5225, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "to", - "token_id": 5258, + "token_id": 5226, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "the", - "token_id": 5259, + "token_id": 5227, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "future", - "token_id": 5260, + "token_id": 5228, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "'", - "token_id": 5261, + "token_id": 5229, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "'", - "token_id": 5262, + "token_id": 5230, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ",", - "token_id": 5263, + "token_id": 5231, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2022", - "token_id": 5264, + "token_id": 5232, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5265, + "token_id": 5233, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5266, + "token_id": 5234, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5267, + "token_id": 5235, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "in", - "token_id": 5268, + "token_id": 5236, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2022", - "token_id": 5269, + "token_id": 5237, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ",", - "token_id": 5270, + "token_id": 5238, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5271, + "token_id": 5239, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "created", - "token_id": 5272, + "token_id": 5240, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "an", - "token_id": 5273, + "token_id": 5241, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "immersive", - "token_id": 5274, + "token_id": 5242, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "conceptual", - "token_id": 5275, + "token_id": 5243, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "performance", - "token_id": 5276, + "token_id": 5244, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ",", - "token_id": 5277, + "token_id": 5245, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "fabricating", - "token_id": 5278, + "token_id": 5246, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "the", - "token_id": 5279, + "token_id": 5247, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "retrospective", - "token_id": 5280, + "token_id": 5248, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "of", - "token_id": 5281, + "token_id": 5249, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "an", - "token_id": 5282, + "token_id": 5250, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "iconic", - "token_id": 5283, + "token_id": 5251, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "artist", - "token_id": 5284, + "token_id": 5252, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "from", - "token_id": 5285, + "token_id": 5253, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "the", - "token_id": 5286, + "token_id": 5254, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "1970s", - "token_id": 5287, + "token_id": 5255, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5288, + "token_id": 5256, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "1980s", - "token_id": 5289, + "token_id": 5257, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "who", - "token_id": 5290, + "token_id": 5258, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "happened", - "token_id": 5291, + "token_id": 5259, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "to", - "token_id": 5292, + "token_id": 5260, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "be", - "token_id": 5293, + "token_id": 5261, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "himself", - "token_id": 5294, + "token_id": 5262, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "aged", - "token_id": 5295, + "token_id": 5263, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "by", - "token_id": 5296, + "token_id": 5264, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "decades", - "token_id": 5297, + "token_id": 5265, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ".", - "token_id": 5298, + "token_id": 5266, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "<", - "token_id": 5299, + "token_id": 5267, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "ref", - "token_id": 5300, + "token_id": 5268, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "name", - "token_id": 5301, + "token_id": 5269, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5302, + "token_id": 5270, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "\"", - "token_id": 5303, + "token_id": 5271, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ":", - "token_id": 5304, + "token_id": 5272, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "3", - "token_id": 5305, + "token_id": 5273, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "\"", - "token_id": 5306, + "token_id": 5274, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5307, + "token_id": 5275, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ">", - "token_id": 5308, + "token_id": 5276, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "using", - "token_id": 5309, + "token_id": 5277, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "faux", - "token_id": 5310, + "token_id": 5278, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "archival", - "token_id": 5311, + "token_id": 5279, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "footage", - "token_id": 5312, + "token_id": 5280, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ",", - "token_id": 5313, + "token_id": 5281, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "grainy", - "token_id": 5314, + "token_id": 5282, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "photographs", - "token_id": 5315, + "token_id": 5283, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5316, + "token_id": 5284, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "advertisements", - "token_id": 5317, + "token_id": 5285, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "for", - "token_id": 5318, + "token_id": 5286, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "exhibitions", - "token_id": 5319, + "token_id": 5287, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "that", - "token_id": 5320, + "token_id": 5288, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "never", - "token_id": 5321, + "token_id": 5289, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "took", - "token_id": 5322, + "token_id": 5290, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "place", - "token_id": 5323, + "token_id": 5291, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5324, + "token_id": 5292, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "textbooks", - "token_id": 5325, + "token_id": 5293, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "that", - "token_id": 5326, + "token_id": 5294, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "were", - "token_id": 5327, + "token_id": 5295, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "never", - "token_id": 5328, + "token_id": 5296, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "written", - "token_id": 5329, + "token_id": 5297, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ",", - "token_id": 5330, + "token_id": 5298, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5331, + "token_id": 5299, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "tested", - "token_id": 5332, + "token_id": 5300, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "the", - "token_id": 5333, + "token_id": 5301, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "boundaries", - "token_id": 5334, + "token_id": 5302, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "of", - "token_id": 5335, + "token_id": 5303, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "expectations", - "token_id": 5336, + "token_id": 5304, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5337, + "token_id": 5305, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "reality", - "token_id": 5338, + "token_id": 5306, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ",", - "token_id": 5339, + "token_id": 5307, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "of", - "token_id": 5340, + "token_id": 5308, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "past", - "token_id": 5341, + "token_id": 5309, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5342, + "token_id": 5310, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "present", - "token_id": 5343, + "token_id": 5311, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5344, + "token_id": 5312, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "art", - "token_id": 5345, + "token_id": 5313, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5346, + "token_id": 5314, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "artifice", - "token_id": 5347, + "token_id": 5315, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ".", - "token_id": 5348, + "token_id": 5316, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "<", - "token_id": 5349, + "token_id": 5317, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "ref", - "token_id": 5350, + "token_id": 5318, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ">", - "token_id": 5351, + "token_id": 5319, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "{{", - "token_id": 5352, + "token_id": 5320, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "cite", - "token_id": 5353, + "token_id": 5321, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "web", - "token_id": 5354, + "token_id": 5322, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5355, + "token_id": 5323, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "last", - "token_id": 5356, + "token_id": 5324, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5357, + "token_id": 5325, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "scholl", - "token_id": 5358, + "token_id": 5326, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5359, + "token_id": 5327, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "first", - "token_id": 5360, + "token_id": 5328, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5361, + "token_id": 5329, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "clara", - "token_id": 5362, + "token_id": 5330, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5363, + "token_id": 5331, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "last2", - "token_id": 5364, + "token_id": 5332, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5365, + "token_id": 5333, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "arafeh", - "token_id": 5366, + "token_id": 5334, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5367, + "token_id": 5335, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "first2", - "token_id": 5368, + "token_id": 5336, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5369, + "token_id": 5337, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "alia", - "token_id": 5370, + "token_id": 5338, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5371, + "token_id": 5339, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "date", - "token_id": 5372, + "token_id": 5340, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5373, + "token_id": 5341, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2022", - "token_id": 5374, + "token_id": 5342, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5375, + "token_id": 5343, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "12", - "token_id": 5376, + "token_id": 5344, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5377, + "token_id": 5345, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "12", - "token_id": 5378, + "token_id": 5346, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5379, + "token_id": 5347, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "title", - "token_id": 5380, + "token_id": 5348, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5381, + "token_id": 5349, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "the", - "token_id": 5382, + "token_id": 5350, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "unexpected", - "token_id": 5383, + "token_id": 5351, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "connection", - "token_id": 5384, + "token_id": 5352, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "between", - "token_id": 5385, + "token_id": 5353, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "adam", - "token_id": 5386, + "token_id": 5354, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5387, + "token_id": 5355, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ",", - "token_id": 5388, + "token_id": 5356, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "adam", - "token_id": 5389, + "token_id": 5357, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "lucas", - "token_id": 5390, + "token_id": 5358, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "and", - "token_id": 5391, + "token_id": 5359, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5392, + "token_id": 5360, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5393, + "token_id": 5361, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "url", - "token_id": 5394, + "token_id": 5362, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5395, + "token_id": 5363, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "https", - "token_id": 5396, + "token_id": 5364, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ":", - "token_id": 5397, + "token_id": 5365, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5398, + "token_id": 5366, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5399, + "token_id": 5367, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "nyunews", - "token_id": 5400, + "token_id": 5368, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ".", - "token_id": 5401, + "token_id": 5369, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "com", - "token_id": 5402, + "token_id": 5370, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5403, + "token_id": 5371, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "arts", - "token_id": 5404, + "token_id": 5372, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5405, + "token_id": 5373, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2022", - "token_id": 5406, + "token_id": 5374, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5407, + "token_id": 5375, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "12", - "token_id": 5408, + "token_id": 5376, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5409, + "token_id": 5377, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "12", - "token_id": 5410, + "token_id": 5378, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5411, + "token_id": 5379, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "adam", - "token_id": 5412, + "token_id": 5380, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5413, + "token_id": 5381, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5414, + "token_id": 5382, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5415, + "token_id": 5383, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "lucas", - "token_id": 5416, + "token_id": 5384, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5417, + "token_id": 5385, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5418, + "token_id": 5386, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5419, + "token_id": 5387, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5420, + "token_id": 5388, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "access", - "token_id": 5421, + "token_id": 5389, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5422, + "token_id": 5390, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "date", - "token_id": 5423, + "token_id": 5391, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5424, + "token_id": 5392, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "2023", - "token_id": 5425, + "token_id": 5393, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5426, + "token_id": 5394, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "06", - "token_id": 5427, + "token_id": 5395, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "-", - "token_id": 5428, + "token_id": 5396, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "29", - "token_id": 5429, + "token_id": 5397, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "|", - "token_id": 5430, + "token_id": 5398, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "website", - "token_id": 5431, + "token_id": 5399, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "=", - "token_id": 5432, + "token_id": 5400, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "washington", - "token_id": 5433, + "token_id": 5401, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "square", - "token_id": 5434, + "token_id": 5402, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "news", - "token_id": 5435, + "token_id": 5403, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "}}", - "token_id": 5436, + "token_id": 5404, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "<", - "token_id": 5437, + "token_id": 5405, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "/", - "token_id": 5438, + "token_id": 5406, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "ref", - "token_id": 5439, + "token_id": 5407, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": ">", - "token_id": 5440, + "token_id": 5408, "o_rev_id": 1162525604, "in": [], "out": [] }, { "str": "new", - "token_id": 5441, + "token_id": 5409, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "york", - "token_id": 5442, + "token_id": 5410, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "city", - "token_id": 5443, + "token_id": 5411, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5444, + "token_id": 5412, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45707,7 +45419,7 @@ }, { "str": "based", - "token_id": 5445, + "token_id": 5413, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45716,7 +45428,7 @@ }, { "str": "also", - "token_id": 5446, + "token_id": 5414, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45725,7 +45437,7 @@ }, { "str": "goes", - "token_id": 5447, + "token_id": 5415, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45734,7 +45446,7 @@ }, { "str": "by", - "token_id": 5448, + "token_id": 5416, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45743,7 +45455,7 @@ }, { "str": "'", - "token_id": 5449, + "token_id": 5417, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45752,7 +45464,7 @@ }, { "str": "'", - "token_id": 5450, + "token_id": 5418, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45761,7 +45473,7 @@ }, { "str": "'", - "token_id": 5451, + "token_id": 5419, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45770,7 +45482,7 @@ }, { "str": "adam", - "token_id": 5452, + "token_id": 5420, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45779,7 +45491,7 @@ }, { "str": "himebauch", - "token_id": 5453, + "token_id": 5421, "o_rev_id": 1162559322, "in": [], "out": [ @@ -45788,959 +45500,959 @@ }, { "str": "'", - "token_id": 5454, + "token_id": 5422, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "'", - "token_id": 5455, + "token_id": 5423, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "'", - "token_id": 5456, + "token_id": 5424, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2017", - "token_id": 5457, + "token_id": 5425, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "in", - "token_id": 5458, + "token_id": 5426, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2021", - "token_id": 5459, + "token_id": 5427, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ",", - "token_id": 5460, + "token_id": 5428, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "three", - "token_id": 5461, + "token_id": 5429, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "years", - "token_id": 5462, + "token_id": 5430, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "after", - "token_id": 5463, + "token_id": 5431, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "retiring", - "token_id": 5464, + "token_id": 5432, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "his", - "token_id": 5465, + "token_id": 5433, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5466, + "token_id": 5434, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "persona", - "token_id": 5467, + "token_id": 5435, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ",", - "token_id": 5468, + "token_id": 5436, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "the", - "token_id": 5469, + "token_id": 5437, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "artist", - "token_id": 5470, + "token_id": 5438, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "released", - "token_id": 5471, + "token_id": 5439, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "a", - "token_id": 5472, + "token_id": 5440, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "collection", - "token_id": 5473, + "token_id": 5441, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "of", - "token_id": 5474, + "token_id": 5442, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5475, + "token_id": 5443, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "[[", - "token_id": 5476, + "token_id": 5444, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "non", - "token_id": 5477, + "token_id": 5445, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5478, + "token_id": 5446, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "fungible", - "token_id": 5479, + "token_id": 5447, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "token", - "token_id": 5480, + "token_id": 5448, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5481, + "token_id": 5449, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "nft", - "token_id": 5482, + "token_id": 5450, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "]]", - "token_id": 5483, + "token_id": 5451, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "'", - "token_id": 5484, + "token_id": 5452, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "s", - "token_id": 5485, + "token_id": 5453, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "on", - "token_id": 5486, + "token_id": 5454, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "[[", - "token_id": 5487, + "token_id": 5455, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "opensea", - "token_id": 5488, + "token_id": 5456, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "]]", - "token_id": 5489, + "token_id": 5457, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ".", - "token_id": 5490, + "token_id": 5458, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "<", - "token_id": 5491, + "token_id": 5459, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "ref", - "token_id": 5492, + "token_id": 5460, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ">", - "token_id": 5493, + "token_id": 5461, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "{{", - "token_id": 5494, + "token_id": 5462, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "cite", - "token_id": 5495, + "token_id": 5463, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "web", - "token_id": 5496, + "token_id": 5464, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5497, + "token_id": 5465, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "date", - "token_id": 5498, + "token_id": 5466, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5499, + "token_id": 5467, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2021", - "token_id": 5500, + "token_id": 5468, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5501, + "token_id": 5469, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "04", - "token_id": 5502, + "token_id": 5470, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5503, + "token_id": 5471, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "09", - "token_id": 5504, + "token_id": 5472, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5505, + "token_id": 5473, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "title", - "token_id": 5506, + "token_id": 5474, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5507, + "token_id": 5475, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5508, + "token_id": 5476, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "is", - "token_id": 5509, + "token_id": 5477, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "invading", - "token_id": 5510, + "token_id": 5478, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "the", - "token_id": 5511, + "token_id": 5479, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "crypto", - "token_id": 5512, + "token_id": 5480, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "world", - "token_id": 5513, + "token_id": 5481, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "with", - "token_id": 5514, + "token_id": 5482, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "one", - "token_id": 5515, + "token_id": 5483, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "silly", - "token_id": 5516, + "token_id": 5484, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "nft", - "token_id": 5517, + "token_id": 5485, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "at", - "token_id": 5518, + "token_id": 5486, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "a", - "token_id": 5519, + "token_id": 5487, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "time", - "token_id": 5520, + "token_id": 5488, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5521, + "token_id": 5489, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "url", - "token_id": 5522, + "token_id": 5490, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5523, + "token_id": 5491, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "https", - "token_id": 5524, + "token_id": 5492, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ":", - "token_id": 5525, + "token_id": 5493, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5526, + "token_id": 5494, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5527, + "token_id": 5495, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hypebeast", - "token_id": 5528, + "token_id": 5496, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ".", - "token_id": 5529, + "token_id": 5497, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "com", - "token_id": 5530, + "token_id": 5498, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5531, + "token_id": 5499, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2021", - "token_id": 5532, + "token_id": 5500, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5533, + "token_id": 5501, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "4", - "token_id": 5534, + "token_id": 5502, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5535, + "token_id": 5503, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "adam", - "token_id": 5536, + "token_id": 5504, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5537, + "token_id": 5505, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "lucas", - "token_id": 5538, + "token_id": 5506, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5539, + "token_id": 5507, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5540, + "token_id": 5508, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5541, + "token_id": 5509, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "opens", - "token_id": 5542, + "token_id": 5510, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5543, + "token_id": 5511, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "collection", - "token_id": 5544, + "token_id": 5512, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5545, + "token_id": 5513, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "nft", - "token_id": 5546, + "token_id": 5514, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5547, + "token_id": 5515, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "interview", - "token_id": 5548, + "token_id": 5516, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5549, + "token_id": 5517, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "access", - "token_id": 5550, + "token_id": 5518, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5551, + "token_id": 5519, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "date", - "token_id": 5552, + "token_id": 5520, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5553, + "token_id": 5521, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2023", - "token_id": 5554, + "token_id": 5522, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5555, + "token_id": 5523, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "06", - "token_id": 5556, + "token_id": 5524, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5557, + "token_id": 5525, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "29", - "token_id": 5558, + "token_id": 5526, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5559, + "token_id": 5527, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "website", - "token_id": 5560, + "token_id": 5528, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5561, + "token_id": 5529, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hypebeast", - "token_id": 5562, + "token_id": 5530, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "}}", - "token_id": 5563, + "token_id": 5531, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "<", - "token_id": 5564, + "token_id": 5532, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5565, + "token_id": 5533, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "ref", - "token_id": 5566, + "token_id": 5534, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ">", - "token_id": 5567, + "token_id": 5535, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "and", - "token_id": 5568, + "token_id": 5536, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "adam", - "token_id": 5569, + "token_id": 5537, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "working", - "token_id": 5570, + "token_id": 5538, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "under", - "token_id": 5571, + "token_id": 5539, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "the", - "token_id": 5572, + "token_id": 5540, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "names", - "token_id": 5573, + "token_id": 5541, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "adam", - "token_id": 5574, + "token_id": 5542, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "lucas", - "token_id": 5575, + "token_id": 5543, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "and", - "token_id": 5576, + "token_id": 5544, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "adam", - "token_id": 5577, + "token_id": 5545, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5578, + "token_id": 5546, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "rather", - "token_id": 5579, + "token_id": 5547, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "than", - "token_id": 5580, + "token_id": 5548, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "his", - "token_id": 5581, + "token_id": 5549, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "street", - "token_id": 5582, + "token_id": 5550, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "art", - "token_id": 5583, + "token_id": 5551, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "moniker", - "token_id": 5584, + "token_id": 5552, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ",", - "token_id": 5585, + "token_id": 5553, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5586, + "token_id": 5554, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "maintains", - "token_id": 5587, + "token_id": 5555, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "his", - "token_id": 5588, + "token_id": 5556, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "signature", - "token_id": 5589, + "token_id": 5557, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "whimsy", - "token_id": 5590, + "token_id": 5558, "o_rev_id": 1162559322, "in": [], "out": [ @@ -46749,7 +46461,7 @@ }, { "str": ",", - "token_id": 5591, + "token_id": 5559, "o_rev_id": 1162559322, "in": [], "out": [ @@ -46758,35 +46470,35 @@ }, { "str": "humor", - "token_id": 5592, + "token_id": 5560, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "and", - "token_id": 5593, + "token_id": 5561, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "interest", - "token_id": 5594, + "token_id": 5562, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "in", - "token_id": 5595, + "token_id": 5563, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "conceptualism", - "token_id": 5596, + "token_id": 5564, "o_rev_id": 1162559322, "in": [], "out": [ @@ -46795,14 +46507,14 @@ }, { "str": "and", - "token_id": 5597, + "token_id": 5565, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "performance", - "token_id": 5598, + "token_id": 5566, "o_rev_id": 1162559322, "in": [], "out": [ @@ -46811,490 +46523,490 @@ }, { "str": ".", - "token_id": 5599, + "token_id": 5567, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "<", - "token_id": 5600, + "token_id": 5568, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "ref", - "token_id": 5601, + "token_id": 5569, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ">", - "token_id": 5602, + "token_id": 5570, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "{{", - "token_id": 5603, + "token_id": 5571, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "cite", - "token_id": 5604, + "token_id": 5572, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "web", - "token_id": 5605, + "token_id": 5573, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5606, + "token_id": 5574, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "date", - "token_id": 5607, + "token_id": 5575, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5608, + "token_id": 5576, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2022", - "token_id": 5609, + "token_id": 5577, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5610, + "token_id": 5578, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "09", - "token_id": 5611, + "token_id": 5579, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5612, + "token_id": 5580, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "27", - "token_id": 5613, + "token_id": 5581, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5614, + "token_id": 5582, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "title", - "token_id": 5615, + "token_id": 5583, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5616, + "token_id": 5584, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "who", - "token_id": 5617, + "token_id": 5585, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "is", - "token_id": 5618, + "token_id": 5586, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "adam", - "token_id": 5619, + "token_id": 5587, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5620, + "token_id": 5588, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "?", - "token_id": 5621, + "token_id": 5589, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5622, + "token_id": 5590, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "url", - "token_id": 5623, + "token_id": 5591, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5624, + "token_id": 5592, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "https", - "token_id": 5625, + "token_id": 5593, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ":", - "token_id": 5626, + "token_id": 5594, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5627, + "token_id": 5595, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5628, + "token_id": 5596, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hypebeast", - "token_id": 5629, + "token_id": 5597, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ".", - "token_id": 5630, + "token_id": 5598, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "com", - "token_id": 5631, + "token_id": 5599, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5632, + "token_id": 5600, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2022", - "token_id": 5633, + "token_id": 5601, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5634, + "token_id": 5602, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "9", - "token_id": 5635, + "token_id": 5603, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5636, + "token_id": 5604, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "before", - "token_id": 5637, + "token_id": 5605, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5638, + "token_id": 5606, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "and", - "token_id": 5639, + "token_id": 5607, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5640, + "token_id": 5608, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "back", - "token_id": 5641, + "token_id": 5609, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5642, + "token_id": 5610, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "adam", - "token_id": 5643, + "token_id": 5611, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5644, + "token_id": 5612, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5645, + "token_id": 5613, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5646, + "token_id": 5614, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "documentary", - "token_id": 5647, + "token_id": 5615, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5648, + "token_id": 5616, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "access", - "token_id": 5649, + "token_id": 5617, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5650, + "token_id": 5618, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "date", - "token_id": 5651, + "token_id": 5619, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5652, + "token_id": 5620, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2023", - "token_id": 5653, + "token_id": 5621, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5654, + "token_id": 5622, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "06", - "token_id": 5655, + "token_id": 5623, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5656, + "token_id": 5624, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "29", - "token_id": 5657, + "token_id": 5625, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5658, + "token_id": 5626, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "website", - "token_id": 5659, + "token_id": 5627, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5660, + "token_id": 5628, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hypebeast", - "token_id": 5661, + "token_id": 5629, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "}}", - "token_id": 5662, + "token_id": 5630, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "<", - "token_id": 5663, + "token_id": 5631, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5664, + "token_id": 5632, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "ref", - "token_id": 5665, + "token_id": 5633, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ">", - "token_id": 5666, + "token_id": 5634, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "in", - "token_id": 5667, + "token_id": 5635, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2020", - "token_id": 5668, + "token_id": 5636, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47303,21 +47015,21 @@ }, { "str": ",", - "token_id": 5669, + "token_id": 5637, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "the", - "token_id": 5670, + "token_id": 5638, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "artist", - "token_id": 5671, + "token_id": 5639, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47326,7 +47038,7 @@ }, { "str": "donated", - "token_id": 5672, + "token_id": 5640, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47335,7 +47047,7 @@ }, { "str": "two", - "token_id": 5673, + "token_id": 5641, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47344,21 +47056,21 @@ }, { "str": "paintings", - "token_id": 5674, + "token_id": 5642, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "to", - "token_id": 5675, + "token_id": 5643, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "a", - "token_id": 5676, + "token_id": 5644, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47367,7 +47079,7 @@ }, { "str": "benefit", - "token_id": 5677, + "token_id": 5645, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47376,7 +47088,7 @@ }, { "str": "auction", - "token_id": 5678, + "token_id": 5646, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47385,7 +47097,7 @@ }, { "str": "held", - "token_id": 5679, + "token_id": 5647, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47394,14 +47106,14 @@ }, { "str": "by", - "token_id": 5680, + "token_id": 5648, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "future", - "token_id": 5681, + "token_id": 5649, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47410,7 +47122,7 @@ }, { "str": "galerie", - "token_id": 5682, + "token_id": 5650, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47419,7 +47131,7 @@ }, { "str": "to", - "token_id": 5683, + "token_id": 5651, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47428,7 +47140,7 @@ }, { "str": "help", - "token_id": 5684, + "token_id": 5652, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47437,7 +47149,7 @@ }, { "str": "raise", - "token_id": 5685, + "token_id": 5653, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47446,7 +47158,7 @@ }, { "str": "money", - "token_id": 5686, + "token_id": 5654, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47455,7 +47167,7 @@ }, { "str": "for", - "token_id": 5687, + "token_id": 5655, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47464,7 +47176,7 @@ }, { "str": "skyart", - "token_id": 5688, + "token_id": 5656, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47473,7 +47185,7 @@ }, { "str": "a", - "token_id": 5689, + "token_id": 5657, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47482,7 +47194,7 @@ }, { "str": "free", - "token_id": 5690, + "token_id": 5658, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47491,7 +47203,7 @@ }, { "str": "and", - "token_id": 5691, + "token_id": 5659, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47500,7 +47212,7 @@ }, { "str": "accessible", - "token_id": 5692, + "token_id": 5660, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47509,7 +47221,7 @@ }, { "str": "art", - "token_id": 5693, + "token_id": 5661, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47518,7 +47230,7 @@ }, { "str": "center", - "token_id": 5694, + "token_id": 5662, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47527,7 +47239,7 @@ }, { "str": "serving", - "token_id": 5695, + "token_id": 5663, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47536,7 +47248,7 @@ }, { "str": "underprivileged", - "token_id": 5696, + "token_id": 5664, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47545,7 +47257,7 @@ }, { "str": "youth", - "token_id": 5697, + "token_id": 5665, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47554,7 +47266,7 @@ }, { "str": "in", - "token_id": 5698, + "token_id": 5666, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47563,7 +47275,7 @@ }, { "str": "chicago", - "token_id": 5699, + "token_id": 5667, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47572,77 +47284,77 @@ }, { "str": ".", - "token_id": 5700, + "token_id": 5668, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "<", - "token_id": 5701, + "token_id": 5669, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "ref", - "token_id": 5702, + "token_id": 5670, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ">", - "token_id": 5703, + "token_id": 5671, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "{{", - "token_id": 5704, + "token_id": 5672, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "cite", - "token_id": 5705, + "token_id": 5673, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "web", - "token_id": 5706, + "token_id": 5674, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "|", - "token_id": 5707, + "token_id": 5675, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "date", - "token_id": 5708, + "token_id": 5676, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5709, + "token_id": 5677, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2020", - "token_id": 5710, + "token_id": 5678, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47651,14 +47363,14 @@ }, { "str": "-", - "token_id": 5711, + "token_id": 5679, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "07", - "token_id": 5712, + "token_id": 5680, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47667,14 +47379,14 @@ }, { "str": "-", - "token_id": 5713, + "token_id": 5681, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "10", - "token_id": 5714, + "token_id": 5682, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47683,35 +47395,35 @@ }, { "str": "|", - "token_id": 5715, + "token_id": 5683, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "title", - "token_id": 5716, + "token_id": 5684, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5717, + "token_id": 5685, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "adam", - "token_id": 5718, + "token_id": 5686, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "lucas", - "token_id": 5719, + "token_id": 5687, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47720,14 +47432,14 @@ }, { "str": ",", - "token_id": 5720, + "token_id": 5688, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "max", - "token_id": 5721, + "token_id": 5689, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47736,7 +47448,7 @@ }, { "str": "sansing", - "token_id": 5722, + "token_id": 5690, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47745,7 +47457,7 @@ }, { "str": "and", - "token_id": 5723, + "token_id": 5691, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47754,7 +47466,7 @@ }, { "str": "more", - "token_id": 5724, + "token_id": 5692, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47763,7 +47475,7 @@ }, { "str": "artists", - "token_id": 5725, + "token_id": 5693, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47772,7 +47484,7 @@ }, { "str": "donate", - "token_id": 5726, + "token_id": 5694, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47781,7 +47493,7 @@ }, { "str": "works", - "token_id": 5727, + "token_id": 5695, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47790,7 +47502,7 @@ }, { "str": "to", - "token_id": 5728, + "token_id": 5696, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47799,7 +47511,7 @@ }, { "str": "support", - "token_id": 5729, + "token_id": 5697, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47808,7 +47520,7 @@ }, { "str": "social", - "token_id": 5730, + "token_id": 5698, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47817,7 +47529,7 @@ }, { "str": "justice", - "token_id": 5731, + "token_id": 5699, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47826,7 +47538,7 @@ }, { "str": "organizations", - "token_id": 5732, + "token_id": 5700, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47835,84 +47547,84 @@ }, { "str": "|", - "token_id": 5733, + "token_id": 5701, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "url", - "token_id": 5734, + "token_id": 5702, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5735, + "token_id": 5703, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "https", - "token_id": 5736, + "token_id": 5704, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ":", - "token_id": 5737, + "token_id": 5705, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5738, + "token_id": 5706, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5739, + "token_id": 5707, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hypebeast", - "token_id": 5740, + "token_id": 5708, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ".", - "token_id": 5741, + "token_id": 5709, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "com", - "token_id": 5742, + "token_id": 5710, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5743, + "token_id": 5711, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2020", - "token_id": 5744, + "token_id": 5712, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47921,14 +47633,14 @@ }, { "str": "/", - "token_id": 5745, + "token_id": 5713, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "7", - "token_id": 5746, + "token_id": 5714, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47937,14 +47649,14 @@ }, { "str": "/", - "token_id": 5747, + "token_id": 5715, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "future", - "token_id": 5748, + "token_id": 5716, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47953,14 +47665,14 @@ }, { "str": "-", - "token_id": 5749, + "token_id": 5717, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "galerie", - "token_id": 5750, + "token_id": 5718, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47969,14 +47681,14 @@ }, { "str": "-", - "token_id": 5751, + "token_id": 5719, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "online", - "token_id": 5752, + "token_id": 5720, "o_rev_id": 1162559322, "in": [], "out": [ @@ -47985,14 +47697,14 @@ }, { "str": "-", - "token_id": 5753, + "token_id": 5721, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "art", - "token_id": 5754, + "token_id": 5722, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48001,14 +47713,14 @@ }, { "str": "-", - "token_id": 5755, + "token_id": 5723, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "charity", - "token_id": 5756, + "token_id": 5724, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48017,14 +47729,14 @@ }, { "str": "-", - "token_id": 5757, + "token_id": 5725, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "auction", - "token_id": 5758, + "token_id": 5726, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48033,7 +47745,7 @@ }, { "str": "-", - "token_id": 5759, + "token_id": 5727, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48042,7 +47754,7 @@ }, { "str": "social", - "token_id": 5760, + "token_id": 5728, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48051,7 +47763,7 @@ }, { "str": "-", - "token_id": 5761, + "token_id": 5729, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48060,7 +47772,7 @@ }, { "str": "justice", - "token_id": 5762, + "token_id": 5730, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48069,7 +47781,7 @@ }, { "str": "-", - "token_id": 5763, + "token_id": 5731, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48078,7 +47790,7 @@ }, { "str": "organizations", - "token_id": 5764, + "token_id": 5732, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48087,42 +47799,42 @@ }, { "str": "|", - "token_id": 5765, + "token_id": 5733, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "access", - "token_id": 5766, + "token_id": 5734, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "-", - "token_id": 5767, + "token_id": 5735, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "date", - "token_id": 5768, + "token_id": 5736, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5769, + "token_id": 5737, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "2023", - "token_id": 5770, + "token_id": 5738, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48131,14 +47843,14 @@ }, { "str": "-", - "token_id": 5771, + "token_id": 5739, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "06", - "token_id": 5772, + "token_id": 5740, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48147,14 +47859,14 @@ }, { "str": "-", - "token_id": 5773, + "token_id": 5741, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "29", - "token_id": 5774, + "token_id": 5742, "o_rev_id": 1162559322, "in": [], "out": [ @@ -48163,70 +47875,70 @@ }, { "str": "|", - "token_id": 5775, + "token_id": 5743, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "website", - "token_id": 5776, + "token_id": 5744, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "=", - "token_id": 5777, + "token_id": 5745, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hypebeast", - "token_id": 5778, + "token_id": 5746, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "}}", - "token_id": 5779, + "token_id": 5747, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "<", - "token_id": 5780, + "token_id": 5748, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "/", - "token_id": 5781, + "token_id": 5749, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "ref", - "token_id": 5782, + "token_id": 5750, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": ">", - "token_id": 5783, + "token_id": 5751, "o_rev_id": 1162559322, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5784, + "token_id": 5752, "o_rev_id": 1162585126, "in": [], "out": [ @@ -48235,7 +47947,7 @@ }, { "str": "stas", - "token_id": 5785, + "token_id": 5753, "o_rev_id": 1163557675, "in": [], "out": [ @@ -48244,7 +47956,7 @@ }, { "str": "petrov", - "token_id": 5786, + "token_id": 5754, "o_rev_id": 1163557675, "in": [], "out": [ @@ -48253,7 +47965,7 @@ }, { "str": "{{", - "token_id": 5787, + "token_id": 5755, "o_rev_id": 1166571429, "in": [], "out": [ @@ -48262,7 +47974,7 @@ }, { "str": "orphan", - "token_id": 5788, + "token_id": 5756, "o_rev_id": 1166571429, "in": [], "out": [ @@ -48271,7 +47983,7 @@ }, { "str": "|", - "token_id": 5789, + "token_id": 5757, "o_rev_id": 1166571429, "in": [], "out": [ @@ -48280,7 +47992,7 @@ }, { "str": "date", - "token_id": 5790, + "token_id": 5758, "o_rev_id": 1166571429, "in": [], "out": [ @@ -48289,7 +48001,7 @@ }, { "str": "=", - "token_id": 5791, + "token_id": 5759, "o_rev_id": 1166571429, "in": [], "out": [ @@ -48298,7 +48010,7 @@ }, { "str": "july", - "token_id": 5792, + "token_id": 5760, "o_rev_id": 1166571429, "in": [], "out": [ @@ -48307,7 +48019,7 @@ }, { "str": "2023", - "token_id": 5793, + "token_id": 5761, "o_rev_id": 1166571429, "in": [], "out": [ @@ -48316,7 +48028,7 @@ }, { "str": "}}", - "token_id": 5794, + "token_id": 5762, "o_rev_id": 1166571429, "in": [], "out": [ @@ -48325,945 +48037,945 @@ }, { "str": "<", - "token_id": 5795, + "token_id": 5763, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "ref", - "token_id": 5796, + "token_id": 5764, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ">", - "token_id": 5797, + "token_id": 5765, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "{{", - "token_id": 5798, + "token_id": 5766, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "cite", - "token_id": 5799, + "token_id": 5767, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "news", - "token_id": 5800, + "token_id": 5768, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "|", - "token_id": 5801, + "token_id": 5769, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "title", - "token_id": 5802, + "token_id": 5770, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "=", - "token_id": 5803, + "token_id": 5771, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "street", - "token_id": 5804, + "token_id": 5772, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "artist", - "token_id": 5805, + "token_id": 5773, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "on", - "token_id": 5806, + "token_id": 5774, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "tom", - "token_id": 5807, + "token_id": 5775, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "hanks", - "token_id": 5808, + "token_id": 5776, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "'", - "token_id": 5809, + "token_id": 5777, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "films", - "token_id": 5810, + "token_id": 5778, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "on", - "token_id": 5811, + "token_id": 5779, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "the", - "token_id": 5812, + "token_id": 5780, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "actor", - "token_id": 5813, + "token_id": 5781, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "'", - "token_id": 5814, + "token_id": 5782, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "s", - "token_id": 5815, + "token_id": 5783, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "60th", - "token_id": 5816, + "token_id": 5784, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "bday", - "token_id": 5817, + "token_id": 5785, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "|", - "token_id": 5818, + "token_id": 5786, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "newspaper", - "token_id": 5819, + "token_id": 5787, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "=", - "token_id": 5820, + "token_id": 5788, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "ny", - "token_id": 5821, + "token_id": 5789, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "daily", - "token_id": 5822, + "token_id": 5790, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "news", - "token_id": 5823, + "token_id": 5791, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "|", - "token_id": 5824, + "token_id": 5792, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "url", - "token_id": 5825, + "token_id": 5793, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "=", - "token_id": 5826, + "token_id": 5794, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "http", - "token_id": 5827, + "token_id": 5795, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ":", - "token_id": 5828, + "token_id": 5796, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "/", - "token_id": 5829, + "token_id": 5797, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "/", - "token_id": 5830, + "token_id": 5798, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "www", - "token_id": 5831, + "token_id": 5799, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ".", - "token_id": 5832, + "token_id": 5800, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "nydailynews", - "token_id": 5833, + "token_id": 5801, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ".", - "token_id": 5834, + "token_id": 5802, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "com", - "token_id": 5835, + "token_id": 5803, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "/", - "token_id": 5836, + "token_id": 5804, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "entertainment", - "token_id": 5837, + "token_id": 5805, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "/", - "token_id": 5838, + "token_id": 5806, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "movies", - "token_id": 5839, + "token_id": 5807, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "/", - "token_id": 5840, + "token_id": 5808, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "street", - "token_id": 5841, + "token_id": 5809, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5842, + "token_id": 5810, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "artist", - "token_id": 5843, + "token_id": 5811, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5844, + "token_id": 5812, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 5845, + "token_id": 5813, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5846, + "token_id": 5814, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "tom", - "token_id": 5847, + "token_id": 5815, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5848, + "token_id": 5816, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "hanks", - "token_id": 5849, + "token_id": 5817, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5850, + "token_id": 5818, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "films", - "token_id": 5851, + "token_id": 5819, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5852, + "token_id": 5820, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "actor", - "token_id": 5853, + "token_id": 5821, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5854, + "token_id": 5822, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "60th", - "token_id": 5855, + "token_id": 5823, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5856, + "token_id": 5824, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "bday", - "token_id": 5857, + "token_id": 5825, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5858, + "token_id": 5826, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "article", - "token_id": 5859, + "token_id": 5827, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5860, + "token_id": 5828, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "1", - "token_id": 5861, + "token_id": 5829, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ".", - "token_id": 5862, + "token_id": 5830, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "2704531", - "token_id": 5863, + "token_id": 5831, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "|", - "token_id": 5864, + "token_id": 5832, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "access", - "token_id": 5865, + "token_id": 5833, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5866, + "token_id": 5834, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "date", - "token_id": 5867, + "token_id": 5835, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "=", - "token_id": 5868, + "token_id": 5836, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "2016", - "token_id": 5869, + "token_id": 5837, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5870, + "token_id": 5838, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "12", - "token_id": 5871, + "token_id": 5839, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5872, + "token_id": 5840, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "14", - "token_id": 5873, + "token_id": 5841, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "}}", - "token_id": 5874, + "token_id": 5842, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "{{", - "token_id": 5875, + "token_id": 5843, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "verify", - "token_id": 5876, + "token_id": 5844, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "source", - "token_id": 5877, + "token_id": 5845, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "|", - "token_id": 5878, + "token_id": 5846, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "date", - "token_id": 5879, + "token_id": 5847, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "=", - "token_id": 5880, + "token_id": 5848, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "september", - "token_id": 5881, + "token_id": 5849, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "2023", - "token_id": 5882, + "token_id": 5850, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "|", - "token_id": 5883, + "token_id": 5851, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "reason", - "token_id": 5884, + "token_id": 5852, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "=", - "token_id": 5885, + "token_id": 5853, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "this", - "token_id": 5886, + "token_id": 5854, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "ref", - "token_id": 5887, + "token_id": 5855, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "was", - "token_id": 5888, + "token_id": 5856, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "deleted", - "token_id": 5889, + "token_id": 5857, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "special", - "token_id": 5890, + "token_id": 5858, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ":", - "token_id": 5891, + "token_id": 5859, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "diff", - "token_id": 5892, + "token_id": 5860, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "/", - "token_id": 5893, + "token_id": 5861, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "1163557612", - "token_id": 5894, + "token_id": 5862, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "by", - "token_id": 5895, + "token_id": 5863, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "a", - "token_id": 5896, + "token_id": 5864, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "bug", - "token_id": 5897, + "token_id": 5865, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "in", - "token_id": 5898, + "token_id": 5866, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "visualeditor", - "token_id": 5899, + "token_id": 5867, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "and", - "token_id": 5900, + "token_id": 5868, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "later", - "token_id": 5901, + "token_id": 5869, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "restored", - "token_id": 5902, + "token_id": 5870, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "by", - "token_id": 5903, + "token_id": 5871, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "a", - "token_id": 5904, + "token_id": 5872, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "bot", - "token_id": 5905, + "token_id": 5873, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "from", - "token_id": 5906, + "token_id": 5874, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "the", - "token_id": 5907, + "token_id": 5875, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "original", - "token_id": 5908, + "token_id": 5876, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "cite", - "token_id": 5909, + "token_id": 5877, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "located", - "token_id": 5910, + "token_id": 5878, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "at", - "token_id": 5911, + "token_id": 5879, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "special", - "token_id": 5912, + "token_id": 5880, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ":", - "token_id": 5913, + "token_id": 5881, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "permalink", - "token_id": 5914, + "token_id": 5882, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "/", - "token_id": 5915, + "token_id": 5883, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "1163557557", - "token_id": 5916, + "token_id": 5884, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "cite", - "token_id": 5917, + "token_id": 5885, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "6", - "token_id": 5918, + "token_id": 5886, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "-", - "token_id": 5919, + "token_id": 5887, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "verify", - "token_id": 5920, + "token_id": 5888, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "the", - "token_id": 5921, + "token_id": 5889, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "is", - "token_id": 5922, + "token_id": 5890, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "accurate", - "token_id": 5923, + "token_id": 5891, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "and", - "token_id": 5924, + "token_id": 5892, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "delete", - "token_id": 5925, + "token_id": 5893, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "this", - "token_id": 5926, + "token_id": 5894, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "template", - "token_id": 5927, + "token_id": 5895, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ".", - "token_id": 5928, + "token_id": 5896, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "[[", - "token_id": 5929, + "token_id": 5897, "o_rev_id": 1175527922, "in": [], "out": [ @@ -49272,28 +48984,28 @@ }, { "str": "user", - "token_id": 5930, + "token_id": 5898, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": ":", - "token_id": 5931, + "token_id": 5899, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "greenc", - "token_id": 5932, + "token_id": 5900, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "_", - "token_id": 5933, + "token_id": 5901, "o_rev_id": 1175527922, "in": [], "out": [ @@ -49302,28 +49014,28 @@ }, { "str": "bot", - "token_id": 5934, + "token_id": 5902, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "/", - "token_id": 5935, + "token_id": 5903, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "job", - "token_id": 5936, + "token_id": 5904, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "_", - "token_id": 5937, + "token_id": 5905, "o_rev_id": 1175527922, "in": [], "out": [ @@ -49332,14 +49044,14 @@ }, { "str": "18", - "token_id": 5938, + "token_id": 5906, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "]]", - "token_id": 5939, + "token_id": 5907, "o_rev_id": 1175527922, "in": [], "out": [ @@ -49348,49 +49060,49 @@ }, { "str": "}}", - "token_id": 5940, + "token_id": 5908, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "ref", - "token_id": 5941, + "token_id": 5909, "o_rev_id": 1175527922, "in": [], "out": [] }, { "str": "american", - "token_id": 5942, + "token_id": 5910, "o_rev_id": 1242919476, "in": [], "out": [] }, { "str": "graffiti", - "token_id": 5943, + "token_id": 5911, "o_rev_id": 1242919476, "in": [], "out": [] }, { "str": "adam", - "token_id": 5944, + "token_id": 5912, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5945, + "token_id": 5913, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "[[", - "token_id": 5946, + "token_id": 5914, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49399,7 +49111,7 @@ }, { "str": "file", - "token_id": 5947, + "token_id": 5915, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49408,7 +49120,7 @@ }, { "str": ":", - "token_id": 5948, + "token_id": 5916, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49417,7 +49129,7 @@ }, { "str": "artist", - "token_id": 5949, + "token_id": 5917, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49426,7 +49138,7 @@ }, { "str": "adam", - "token_id": 5950, + "token_id": 5918, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49435,7 +49147,7 @@ }, { "str": "himebauch", - "token_id": 5951, + "token_id": 5919, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49444,7 +49156,7 @@ }, { "str": "in", - "token_id": 5952, + "token_id": 5920, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49453,7 +49165,7 @@ }, { "str": "his", - "token_id": 5953, + "token_id": 5921, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49462,7 +49174,7 @@ }, { "str": "studio", - "token_id": 5954, + "token_id": 5922, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49471,7 +49183,7 @@ }, { "str": "|", - "token_id": 5955, + "token_id": 5923, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49480,7 +49192,7 @@ }, { "str": "thumb", - "token_id": 5956, + "token_id": 5924, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49489,7 +49201,7 @@ }, { "str": "|", - "token_id": 5957, + "token_id": 5925, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49498,7 +49210,7 @@ }, { "str": "contemporary", - "token_id": 5958, + "token_id": 5926, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49507,7 +49219,7 @@ }, { "str": "artist", - "token_id": 5959, + "token_id": 5927, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49516,7 +49228,7 @@ }, { "str": "adam", - "token_id": 5960, + "token_id": 5928, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49525,7 +49237,7 @@ }, { "str": "himebauch", - "token_id": 5961, + "token_id": 5929, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49534,7 +49246,7 @@ }, { "str": "in", - "token_id": 5962, + "token_id": 5930, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49543,7 +49255,7 @@ }, { "str": "his", - "token_id": 5963, + "token_id": 5931, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49552,7 +49264,7 @@ }, { "str": "studio", - "token_id": 5964, + "token_id": 5932, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49561,7 +49273,7 @@ }, { "str": "]]", - "token_id": 5965, + "token_id": 5933, "o_rev_id": 1315070761, "in": [], "out": [ @@ -49570,224 +49282,224 @@ }, { "str": ",", - "token_id": 5966, + "token_id": 5934, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "[[", - "token_id": 5967, + "token_id": 5935, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "contemporary", - "token_id": 5968, + "token_id": 5936, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "art", - "token_id": 5969, + "token_id": 5937, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "]]", - "token_id": 5970, + "token_id": 5938, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": ",", - "token_id": 5971, + "token_id": 5939, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "[[", - "token_id": 5972, + "token_id": 5940, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "performance", - "token_id": 5973, + "token_id": 5941, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "art", - "token_id": 5974, + "token_id": 5942, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "]]", - "token_id": 5975, + "token_id": 5943, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "https", - "token_id": 5976, + "token_id": 5944, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": ":", - "token_id": 5977, + "token_id": 5945, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "/", - "token_id": 5978, + "token_id": 5946, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "/", - "token_id": 5979, + "token_id": 5947, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "www", - "token_id": 5980, + "token_id": 5948, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": ".", - "token_id": 5981, + "token_id": 5949, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5982, + "token_id": 5950, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": ".", - "token_id": 5983, + "token_id": 5951, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "live", - "token_id": 5984, + "token_id": 5952, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "/", - "token_id": 5985, + "token_id": 5953, "o_rev_id": 1315070761, "in": [], "out": [] }, { "str": "adam", - "token_id": 5986, + "token_id": 5954, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 5987, + "token_id": 5955, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 5988, + "token_id": 5956, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "contemporary", - "token_id": 5989, + "token_id": 5957, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "painter", - "token_id": 5990, + "token_id": 5958, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 5991, + "token_id": 5959, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "performance", - "token_id": 5992, + "token_id": 5960, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 5993, + "token_id": 5961, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "[[", - "token_id": 5994, + "token_id": 5962, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "installation", - "token_id": 5995, + "token_id": 5963, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "art", - "token_id": 5996, + "token_id": 5964, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 5997, + "token_id": 5965, "o_rev_id": 1315073789, "in": [], "out": [ @@ -49796,7 +49508,7 @@ }, { "str": "installation", - "token_id": 5998, + "token_id": 5966, "o_rev_id": 1315073789, "in": [], "out": [ @@ -49805,7 +49517,7 @@ }, { "str": "artist", - "token_id": 5999, + "token_id": 5967, "o_rev_id": 1315073789, "in": [], "out": [ @@ -49814,168 +49526,168 @@ }, { "str": "]]", - "token_id": 6000, + "token_id": 5968, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6001, + "token_id": 5969, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6002, + "token_id": 5970, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "began", - "token_id": 6003, + "token_id": 5971, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "his", - "token_id": 6004, + "token_id": 5972, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "career", - "token_id": 6005, + "token_id": 5973, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "as", - "token_id": 6006, + "token_id": 5974, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6007, + "token_id": 5975, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "using", - "token_id": 6008, + "token_id": 5976, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6009, + "token_id": 5977, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "pseudonym", - "token_id": 6010, + "token_id": 5978, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 6011, + "token_id": 5979, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6012, + "token_id": 5980, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "lucas", - "token_id": 6013, + "token_id": 5981, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "[[", - "token_id": 6014, + "token_id": 5982, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "conceptual", - "token_id": 6015, + "token_id": 5983, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "art", - "token_id": 6016, + "token_id": 5984, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "]]", - "token_id": 6017, + "token_id": 5985, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6018, + "token_id": 5986, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6019, + "token_id": 5987, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6020, + "token_id": 5988, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6021, + "token_id": 5989, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6022, + "token_id": 5990, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6023, + "token_id": 5991, "o_rev_id": 1315073789, "in": [], "out": [ @@ -49984,7 +49696,7 @@ }, { "str": "'", - "token_id": 6024, + "token_id": 5992, "o_rev_id": 1315073789, "in": [], "out": [ @@ -49993,7 +49705,7 @@ }, { "str": "'", - "token_id": 6025, + "token_id": 5993, "o_rev_id": 1315073789, "in": [], "out": [ @@ -50002,56 +49714,56 @@ }, { "str": "never", - "token_id": 6026, + "token_id": 5994, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ever", - "token_id": 6027, + "token_id": 5995, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "land", - "token_id": 6028, + "token_id": 5996, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6029, + "token_id": 5997, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6030, + "token_id": 5998, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6031, + "token_id": 5999, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2024", - "token_id": 6032, + "token_id": 6000, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6033, + "token_id": 6001, "o_rev_id": 1315073789, "in": [], "out": [ @@ -50060,7 +49772,7 @@ }, { "str": "'", - "token_id": 6034, + "token_id": 6002, "o_rev_id": 1315073789, "in": [], "out": [ @@ -50069,7 +49781,7 @@ }, { "str": "'", - "token_id": 6035, + "token_id": 6003, "o_rev_id": 1315073789, "in": [], "out": [ @@ -50078,2499 +49790,2499 @@ }, { "str": "=", - "token_id": 6036, + "token_id": 6004, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6037, + "token_id": 6005, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6038, + "token_id": 6006, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2024", - "token_id": 6039, + "token_id": 6007, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6040, + "token_id": 6008, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6041, + "token_id": 6009, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "staged", - "token_id": 6042, + "token_id": 6010, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6043, + "token_id": 6011, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "month", - "token_id": 6044, + "token_id": 6012, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6045, + "token_id": 6013, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "long", - "token_id": 6046, + "token_id": 6014, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "performance", - "token_id": 6047, + "token_id": 6015, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "in", - "token_id": 6048, + "token_id": 6016, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "which", - "token_id": 6049, + "token_id": 6017, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "he", - "token_id": 6050, + "token_id": 6018, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "meditated", - "token_id": 6051, + "token_id": 6019, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "on", - "token_id": 6052, + "token_id": 6020, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6053, + "token_id": 6021, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "white", - "token_id": 6054, + "token_id": 6022, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "slab", - "token_id": 6055, + "token_id": 6023, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "with", - "token_id": 6056, + "token_id": 6024, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6057, + "token_id": 6025, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "pillow", - "token_id": 6058, + "token_id": 6026, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "at", - "token_id": 6059, + "token_id": 6027, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6060, + "token_id": 6028, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ceysson", - "token_id": 6061, + "token_id": 6029, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "&", - "token_id": 6062, + "token_id": 6030, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "bénétière", - "token_id": 6063, + "token_id": 6031, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "gallery", - "token_id": 6064, + "token_id": 6032, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "in", - "token_id": 6065, + "token_id": 6033, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "new", - "token_id": 6066, + "token_id": 6034, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "york", - "token_id": 6067, + "token_id": 6035, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "for", - "token_id": 6068, + "token_id": 6036, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6069, + "token_id": 6037, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "entire", - "token_id": 6070, + "token_id": 6038, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "duration", - "token_id": 6071, + "token_id": 6039, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6072, + "token_id": 6040, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6073, + "token_id": 6041, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "project", - "token_id": 6074, + "token_id": 6042, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6075, + "token_id": 6043, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6076, + "token_id": 6044, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6077, + "token_id": 6045, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6078, + "token_id": 6046, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6079, + "token_id": 6047, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "cite", - "token_id": 6080, + "token_id": 6048, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "web", - "token_id": 6081, + "token_id": 6049, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6082, + "token_id": 6050, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "title", - "token_id": 6083, + "token_id": 6051, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6084, + "token_id": 6052, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6085, + "token_id": 6053, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6086, + "token_id": 6054, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2024", - "token_id": 6087, + "token_id": 6055, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6088, + "token_id": 6056, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "02", - "token_id": 6089, + "token_id": 6057, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6090, + "token_id": 6058, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "08", - "token_id": 6091, + "token_id": 6059, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6092, + "token_id": 6060, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ceysson", - "token_id": 6093, + "token_id": 6061, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "&", - "token_id": 6094, + "token_id": 6062, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "bénétière", - "token_id": 6095, + "token_id": 6063, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6096, + "token_id": 6064, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "url", - "token_id": 6097, + "token_id": 6065, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6098, + "token_id": 6066, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "https", - "token_id": 6099, + "token_id": 6067, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6100, + "token_id": 6068, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6101, + "token_id": 6069, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6102, + "token_id": 6070, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "www", - "token_id": 6103, + "token_id": 6071, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6104, + "token_id": 6072, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ceyssonbenetiere", - "token_id": 6105, + "token_id": 6073, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6106, + "token_id": 6074, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6107, + "token_id": 6075, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6108, + "token_id": 6076, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "en", - "token_id": 6109, + "token_id": 6077, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6110, + "token_id": 6078, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibitions", - "token_id": 6111, + "token_id": 6079, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6112, + "token_id": 6080, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "1280", - "token_id": 6113, + "token_id": 6081, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6114, + "token_id": 6082, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6115, + "token_id": 6083, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6116, + "token_id": 6084, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6117, + "token_id": 6085, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6118, + "token_id": 6086, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "new", - "token_id": 6119, + "token_id": 6087, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6120, + "token_id": 6088, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "york", - "token_id": 6121, + "token_id": 6089, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6122, + "token_id": 6090, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2024", - "token_id": 6123, + "token_id": 6091, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6124, + "token_id": 6092, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "1280", - "token_id": 6125, + "token_id": 6093, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6126, + "token_id": 6094, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "access", - "token_id": 6127, + "token_id": 6095, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6128, + "token_id": 6096, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6129, + "token_id": 6097, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6130, + "token_id": 6098, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6131, + "token_id": 6099, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6132, + "token_id": 6100, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 6133, + "token_id": 6101, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6134, + "token_id": 6102, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6135, + "token_id": 6103, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6136, + "token_id": 6104, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "website", - "token_id": 6137, + "token_id": 6105, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6138, + "token_id": 6106, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "www", - "token_id": 6139, + "token_id": 6107, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6140, + "token_id": 6108, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ceyssonbenetiere", - "token_id": 6141, + "token_id": 6109, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6142, + "token_id": 6110, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6143, + "token_id": 6111, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6144, + "token_id": 6112, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6145, + "token_id": 6113, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6146, + "token_id": 6114, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6147, + "token_id": 6115, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6148, + "token_id": 6116, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6149, + "token_id": 6117, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "performance", - "token_id": 6150, + "token_id": 6118, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6151, + "token_id": 6119, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "[[", - "token_id": 6152, + "token_id": 6120, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "live", - "token_id": 6153, + "token_id": 6121, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "streaming", - "token_id": 6154, + "token_id": 6122, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6155, + "token_id": 6123, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "livestreamed", - "token_id": 6156, + "token_id": 6124, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "]]", - "token_id": 6157, + "token_id": 6125, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "24", - "token_id": 6158, + "token_id": 6126, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "hours", - "token_id": 6159, + "token_id": 6127, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6160, + "token_id": 6128, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "day", - "token_id": 6161, + "token_id": 6129, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "on", - "token_id": 6162, + "token_id": 6130, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "[[", - "token_id": 6163, + "token_id": 6131, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "youtube", - "token_id": 6164, + "token_id": 6132, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "]]", - "token_id": 6165, + "token_id": 6133, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 6166, + "token_id": 6134, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6167, + "token_id": 6135, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "supposedly", - "token_id": 6168, + "token_id": 6136, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "about", - "token_id": 6169, + "token_id": 6137, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "mortality", - "token_id": 6170, + "token_id": 6138, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6171, + "token_id": 6139, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "sacrifice", - "token_id": 6172, + "token_id": 6140, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 6173, + "token_id": 6141, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "challenging", - "token_id": 6174, + "token_id": 6142, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "bodily", - "token_id": 6175, + "token_id": 6143, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "limits", - "token_id": 6176, + "token_id": 6144, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6177, + "token_id": 6145, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6178, + "token_id": 6146, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6179, + "token_id": 6147, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "name", - "token_id": 6180, + "token_id": 6148, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6181, + "token_id": 6149, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "\"", - "token_id": 6182, + "token_id": 6150, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6183, + "token_id": 6151, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "4", - "token_id": 6184, + "token_id": 6152, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "\"", - "token_id": 6185, + "token_id": 6153, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6186, + "token_id": 6154, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6187, + "token_id": 6155, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "cite", - "token_id": 6188, + "token_id": 6156, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "web", - "token_id": 6189, + "token_id": 6157, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6190, + "token_id": 6158, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6191, + "token_id": 6159, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6192, + "token_id": 6160, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2024", - "token_id": 6193, + "token_id": 6161, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6194, + "token_id": 6162, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "02", - "token_id": 6195, + "token_id": 6163, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6196, + "token_id": 6164, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "12", - "token_id": 6197, + "token_id": 6165, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6198, + "token_id": 6166, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "title", - "token_id": 6199, + "token_id": 6167, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6200, + "token_id": 6168, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "is", - "token_id": 6201, + "token_id": 6169, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6202, + "token_id": 6170, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6203, + "token_id": 6171, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "really", - "token_id": 6204, + "token_id": 6172, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "staging", - "token_id": 6205, + "token_id": 6173, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6206, + "token_id": 6174, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "sleep", - "token_id": 6207, + "token_id": 6175, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6208, + "token_id": 6176, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "in", - "token_id": 6209, + "token_id": 6177, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "at", - "token_id": 6210, + "token_id": 6178, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6211, + "token_id": 6179, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "new", - "token_id": 6212, + "token_id": 6180, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "york", - "token_id": 6213, + "token_id": 6181, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "gallery", - "token_id": 6214, + "token_id": 6182, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "?", - "token_id": 6215, + "token_id": 6183, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6216, + "token_id": 6184, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "url", - "token_id": 6217, + "token_id": 6185, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6218, + "token_id": 6186, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "https", - "token_id": 6219, + "token_id": 6187, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6220, + "token_id": 6188, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6221, + "token_id": 6189, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6222, + "token_id": 6190, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "news", - "token_id": 6223, + "token_id": 6191, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6224, + "token_id": 6192, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "artnet", - "token_id": 6225, + "token_id": 6193, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6226, + "token_id": 6194, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6227, + "token_id": 6195, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6228, + "token_id": 6196, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "art", - "token_id": 6229, + "token_id": 6197, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6230, + "token_id": 6198, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "world", - "token_id": 6231, + "token_id": 6199, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6232, + "token_id": 6200, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6233, + "token_id": 6201, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6234, + "token_id": 6202, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6235, + "token_id": 6203, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6236, + "token_id": 6204, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "never", - "token_id": 6237, + "token_id": 6205, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6238, + "token_id": 6206, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ever", - "token_id": 6239, + "token_id": 6207, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6240, + "token_id": 6208, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "land", - "token_id": 6241, + "token_id": 6209, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6242, + "token_id": 6210, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "sleep", - "token_id": 6243, + "token_id": 6211, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6244, + "token_id": 6212, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "in", - "token_id": 6245, + "token_id": 6213, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6246, + "token_id": 6214, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2432144", - "token_id": 6247, + "token_id": 6215, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6248, + "token_id": 6216, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "access", - "token_id": 6249, + "token_id": 6217, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6250, + "token_id": 6218, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6251, + "token_id": 6219, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6252, + "token_id": 6220, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6253, + "token_id": 6221, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6254, + "token_id": 6222, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 6255, + "token_id": 6223, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6256, + "token_id": 6224, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6257, + "token_id": 6225, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6258, + "token_id": 6226, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "website", - "token_id": 6259, + "token_id": 6227, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6260, + "token_id": 6228, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "artnet", - "token_id": 6261, + "token_id": 6229, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "news", - "token_id": 6262, + "token_id": 6230, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6263, + "token_id": 6231, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "language", - "token_id": 6264, + "token_id": 6232, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6265, + "token_id": 6233, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "en", - "token_id": 6266, + "token_id": 6234, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6267, + "token_id": 6235, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "us", - "token_id": 6268, + "token_id": 6236, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6269, + "token_id": 6237, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6270, + "token_id": 6238, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6271, + "token_id": 6239, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6272, + "token_id": 6240, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6273, + "token_id": 6241, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6274, + "token_id": 6242, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "livestream", - "token_id": 6275, + "token_id": 6243, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6276, + "token_id": 6244, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "actually", - "token_id": 6277, + "token_id": 6245, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "only", - "token_id": 6278, + "token_id": 6246, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2", - "token_id": 6279, + "token_id": 6247, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "hours", - "token_id": 6280, + "token_id": 6248, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "’", - "token_id": 6281, + "token_id": 6249, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "worth", - "token_id": 6282, + "token_id": 6250, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6283, + "token_id": 6251, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "filming", - "token_id": 6284, + "token_id": 6252, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "that", - "token_id": 6285, + "token_id": 6253, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6286, + "token_id": 6254, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "played", - "token_id": 6287, + "token_id": 6255, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "continuously", - "token_id": 6288, + "token_id": 6256, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "on", - "token_id": 6289, + "token_id": 6257, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6290, + "token_id": 6258, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "loop", - "token_id": 6291, + "token_id": 6259, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6292, + "token_id": 6260, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "giving", - "token_id": 6293, + "token_id": 6261, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6294, + "token_id": 6262, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "impression", - "token_id": 6295, + "token_id": 6263, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "that", - "token_id": 6296, + "token_id": 6264, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6297, + "token_id": 6265, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6298, + "token_id": 6266, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "meditating", - "token_id": 6299, + "token_id": 6267, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "at", - "token_id": 6300, + "token_id": 6268, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6301, + "token_id": 6269, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "gallery", - "token_id": 6302, + "token_id": 6270, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "when", - "token_id": 6303, + "token_id": 6271, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "he", - "token_id": 6304, + "token_id": 6272, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6305, + "token_id": 6273, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "not", - "token_id": 6306, + "token_id": 6274, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6307, + "token_id": 6275, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6308, + "token_id": 6276, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ultimate", - "token_id": 6309, + "token_id": 6277, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "purpose", - "token_id": 6310, + "token_id": 6278, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6311, + "token_id": 6279, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "this", - "token_id": 6312, + "token_id": 6280, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "performance", - "token_id": 6313, + "token_id": 6281, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6314, + "token_id": 6282, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "to", - "token_id": 6315, + "token_id": 6283, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "encourage", - "token_id": 6316, + "token_id": 6284, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "viewers", - "token_id": 6317, + "token_id": 6285, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "to", - "token_id": 6318, + "token_id": 6286, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "question", - "token_id": 6319, + "token_id": 6287, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "their", - "token_id": 6320, + "token_id": 6288, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "expectations", - "token_id": 6321, + "token_id": 6289, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6322, + "token_id": 6290, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "art", - "token_id": 6323, + "token_id": 6291, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6324, + "token_id": 6292, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 6325, + "token_id": 6293, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "confront", - "token_id": 6326, + "token_id": 6294, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6327, + "token_id": 6295, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "realities", - "token_id": 6328, + "token_id": 6296, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "that", - "token_id": 6329, + "token_id": 6297, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "media", - "token_id": 6330, + "token_id": 6298, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "can", - "token_id": 6331, + "token_id": 6299, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "be", - "token_id": 6332, + "token_id": 6300, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "an", - "token_id": 6333, + "token_id": 6301, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "artifice", - "token_id": 6334, + "token_id": 6302, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6335, + "token_id": 6303, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6336, + "token_id": 6304, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6337, + "token_id": 6305, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "name", - "token_id": 6338, + "token_id": 6306, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6339, + "token_id": 6307, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "\"", - "token_id": 6340, + "token_id": 6308, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6341, + "token_id": 6309, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "4", - "token_id": 6342, + "token_id": 6310, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "\"", - "token_id": 6343, + "token_id": 6311, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6344, + "token_id": 6312, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6345, + "token_id": 6313, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6346, + "token_id": 6314, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "also", - "token_id": 6347, + "token_id": 6315, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibited", - "token_id": 6348, + "token_id": 6316, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "collages", - "token_id": 6349, + "token_id": 6317, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 6350, + "token_id": 6318, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "large", - "token_id": 6351, + "token_id": 6319, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6352, + "token_id": 6320, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "scale", - "token_id": 6353, + "token_id": 6321, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "paintings", - "token_id": 6354, + "token_id": 6322, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6355, + "token_id": 6323, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "landscapes", - "token_id": 6356, + "token_id": 6324, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6357, + "token_id": 6325, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "painted", - "token_id": 6358, + "token_id": 6326, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "with", - "token_id": 6359, + "token_id": 6327, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "window", - "token_id": 6360, + "token_id": 6328, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "frames", - "token_id": 6361, + "token_id": 6329, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "to", - "token_id": 6362, + "token_id": 6330, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "simulate", - "token_id": 6363, + "token_id": 6331, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6364, + "token_id": 6332, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "experience", - "token_id": 6365, + "token_id": 6333, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6366, + "token_id": 6334, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "looking", - "token_id": 6367, + "token_id": 6335, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "out", - "token_id": 6368, + "token_id": 6336, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6369, + "token_id": 6337, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6370, + "token_id": 6338, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "window", - "token_id": 6371, + "token_id": 6339, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6372, + "token_id": 6340, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6373, + "token_id": 6341, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6374, + "token_id": 6342, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6375, + "token_id": 6343, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6376, + "token_id": 6344, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "cite", - "token_id": 6377, + "token_id": 6345, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "web", - "token_id": 6378, + "token_id": 6346, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6379, + "token_id": 6347, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "title", - "token_id": 6380, + "token_id": 6348, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6381, + "token_id": 6349, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6382, + "token_id": 6350, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6383, + "token_id": 6351, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6384, + "token_id": 6352, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "never", - "token_id": 6385, + "token_id": 6353, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ever", - "token_id": 6386, + "token_id": 6354, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "land", - "token_id": 6387, + "token_id": 6355, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6388, + "token_id": 6356, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "!", - "token_id": 6389, + "token_id": 6357, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6390, + "token_id": 6358, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibitions", - "token_id": 6391, + "token_id": 6359, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6392, + "token_id": 6360, "o_rev_id": 1315073789, "in": [], "out": [ @@ -52579,7 +52291,7 @@ }, { "str": "!", - "token_id": 6393, + "token_id": 6361, "o_rev_id": 1315073789, "in": [], "out": [ @@ -52588,7 +52300,7 @@ }, { "str": "}}", - "token_id": 6394, + "token_id": 6362, "o_rev_id": 1315073789, "in": [], "out": [ @@ -52597,7 +52309,7 @@ }, { "str": "mutualart", - "token_id": 6395, + "token_id": 6363, "o_rev_id": 1315073789, "in": [], "out": [ @@ -52606,406 +52318,406 @@ }, { "str": "|", - "token_id": 6396, + "token_id": 6364, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "url", - "token_id": 6397, + "token_id": 6365, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6398, + "token_id": 6366, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "https", - "token_id": 6399, + "token_id": 6367, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6400, + "token_id": 6368, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6401, + "token_id": 6369, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6402, + "token_id": 6370, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "www", - "token_id": 6403, + "token_id": 6371, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6404, + "token_id": 6372, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "mutualart", - "token_id": 6405, + "token_id": 6373, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6406, + "token_id": 6374, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6407, + "token_id": 6375, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6408, + "token_id": 6376, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 6409, + "token_id": 6377, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6410, + "token_id": 6378, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6411, + "token_id": 6379, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6412, + "token_id": 6380, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6413, + "token_id": 6381, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6414, + "token_id": 6382, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6415, + "token_id": 6383, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "never", - "token_id": 6416, + "token_id": 6384, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6417, + "token_id": 6385, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ever", - "token_id": 6418, + "token_id": 6386, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6419, + "token_id": 6387, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "land", - "token_id": 6420, + "token_id": 6388, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6421, + "token_id": 6389, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "dc3c2754feb179c3", - "token_id": 6422, + "token_id": 6390, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6423, + "token_id": 6391, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "access", - "token_id": 6424, + "token_id": 6392, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6425, + "token_id": 6393, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6426, + "token_id": 6394, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6427, + "token_id": 6395, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6428, + "token_id": 6396, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6429, + "token_id": 6397, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 6430, + "token_id": 6398, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6431, + "token_id": 6399, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6432, + "token_id": 6400, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6433, + "token_id": 6401, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "website", - "token_id": 6434, + "token_id": 6402, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6435, + "token_id": 6403, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "www", - "token_id": 6436, + "token_id": 6404, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6437, + "token_id": 6405, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "mutualart", - "token_id": 6438, + "token_id": 6406, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6439, + "token_id": 6407, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6440, + "token_id": 6408, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6441, + "token_id": 6409, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "language", - "token_id": 6442, + "token_id": 6410, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6443, + "token_id": 6411, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "en", - "token_id": 6444, + "token_id": 6412, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6445, + "token_id": 6413, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6446, + "token_id": 6414, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6447, + "token_id": 6415, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6448, + "token_id": 6416, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6449, + "token_id": 6417, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6450, + "token_id": 6418, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6451, + "token_id": 6419, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6452, + "token_id": 6420, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6453, + "token_id": 6421, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53014,7 +52726,7 @@ }, { "str": "'", - "token_id": 6454, + "token_id": 6422, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53023,7 +52735,7 @@ }, { "str": "'", - "token_id": 6455, + "token_id": 6423, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53032,77 +52744,77 @@ }, { "str": "'", - "token_id": 6456, + "token_id": 6424, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6457, + "token_id": 6425, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "here", - "token_id": 6458, + "token_id": 6426, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "comes", - "token_id": 6459, + "token_id": 6427, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6460, + "token_id": 6428, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "twister", - "token_id": 6461, + "token_id": 6429, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6462, + "token_id": 6430, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6463, + "token_id": 6431, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6464, + "token_id": 6432, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2024", - "token_id": 6465, + "token_id": 6433, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6466, + "token_id": 6434, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53111,7 +52823,7 @@ }, { "str": "'", - "token_id": 6467, + "token_id": 6435, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53120,7 +52832,7 @@ }, { "str": "'", - "token_id": 6468, + "token_id": 6436, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53129,189 +52841,189 @@ }, { "str": "=", - "token_id": 6469, + "token_id": 6437, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6470, + "token_id": 6438, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6471, + "token_id": 6439, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "held", - "token_id": 6472, + "token_id": 6440, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "at", - "token_id": 6473, + "token_id": 6441, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "gana", - "token_id": 6474, + "token_id": 6442, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "art", - "token_id": 6475, + "token_id": 6443, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "nineone", - "token_id": 6476, + "token_id": 6444, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "in", - "token_id": 6477, + "token_id": 6445, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "[[", - "token_id": 6478, + "token_id": 6446, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "korea", - "token_id": 6479, + "token_id": 6447, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "]]", - "token_id": 6480, + "token_id": 6448, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6481, + "token_id": 6449, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "this", - "token_id": 6482, + "token_id": 6450, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 6483, + "token_id": 6451, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6484, + "token_id": 6452, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6485, + "token_id": 6453, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "reaction", - "token_id": 6486, + "token_id": 6454, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "to", - "token_id": 6487, + "token_id": 6455, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "feedback", - "token_id": 6488, + "token_id": 6456, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6489, + "token_id": 6457, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "had", - "token_id": 6490, + "token_id": 6458, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "received", - "token_id": 6491, + "token_id": 6459, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "from", - "token_id": 6492, + "token_id": 6460, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "critics", - "token_id": 6493, + "token_id": 6461, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "to", - "token_id": 6494, + "token_id": 6462, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "“just", - "token_id": 6495, + "token_id": 6463, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53320,21 +53032,21 @@ }, { "str": "paint", - "token_id": 6496, + "token_id": 6464, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6497, + "token_id": 6465, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "”", - "token_id": 6498, + "token_id": 6466, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53343,364 +53055,364 @@ }, { "str": "<", - "token_id": 6499, + "token_id": 6467, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6500, + "token_id": 6468, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6501, + "token_id": 6469, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6502, + "token_id": 6470, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "cite", - "token_id": 6503, + "token_id": 6471, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "web", - "token_id": 6504, + "token_id": 6472, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6505, + "token_id": 6473, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "title", - "token_id": 6506, + "token_id": 6474, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6507, + "token_id": 6475, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6508, + "token_id": 6476, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6509, + "token_id": 6477, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6510, + "token_id": 6478, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "url", - "token_id": 6511, + "token_id": 6479, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6512, + "token_id": 6480, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "https", - "token_id": 6513, + "token_id": 6481, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6514, + "token_id": 6482, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6515, + "token_id": 6483, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6516, + "token_id": 6484, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "www", - "token_id": 6517, + "token_id": 6485, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6518, + "token_id": 6486, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ganaart", - "token_id": 6519, + "token_id": 6487, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6520, + "token_id": 6488, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6521, + "token_id": 6489, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6522, + "token_id": 6490, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 6523, + "token_id": 6491, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6524, + "token_id": 6492, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6525, + "token_id": 6493, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6526, + "token_id": 6494, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6527, + "token_id": 6495, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6528, + "token_id": 6496, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6529, + "token_id": 6497, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "access", - "token_id": 6530, + "token_id": 6498, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6531, + "token_id": 6499, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6532, + "token_id": 6500, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6533, + "token_id": 6501, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6534, + "token_id": 6502, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6535, + "token_id": 6503, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 6536, + "token_id": 6504, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6537, + "token_id": 6505, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6538, + "token_id": 6506, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6539, + "token_id": 6507, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "language", - "token_id": 6540, + "token_id": 6508, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6541, + "token_id": 6509, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ko", - "token_id": 6542, + "token_id": 6510, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6543, + "token_id": 6511, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6544, + "token_id": 6512, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6545, + "token_id": 6513, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6546, + "token_id": 6514, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6547, + "token_id": 6515, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6548, + "token_id": 6516, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "show", - "token_id": 6549, + "token_id": 6517, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6550, + "token_id": 6518, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53709,7 +53421,7 @@ }, { "str": "comprised", - "token_id": 6551, + "token_id": 6519, "o_rev_id": 1315073789, "in": [], "out": [ @@ -53718,301 +53430,301 @@ }, { "str": "of", - "token_id": 6552, + "token_id": 6520, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "paintings", - "token_id": 6553, + "token_id": 6521, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "that", - "token_id": 6554, + "token_id": 6522, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "collectively", - "token_id": 6555, + "token_id": 6523, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "chronicle", - "token_id": 6556, + "token_id": 6524, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6557, + "token_id": 6525, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "evolution", - "token_id": 6558, + "token_id": 6526, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6559, + "token_id": 6527, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6560, + "token_id": 6528, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "tornado", - "token_id": 6561, + "token_id": 6529, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ";", - "token_id": 6562, + "token_id": 6530, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "however", - "token_id": 6563, + "token_id": 6531, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "opening", - "token_id": 6564, + "token_id": 6532, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "reception", - "token_id": 6565, + "token_id": 6533, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "was", - "token_id": 6566, + "token_id": 6534, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "also", - "token_id": 6567, + "token_id": 6535, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6568, + "token_id": 6536, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "performance", - "token_id": 6569, + "token_id": 6537, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "piece", - "token_id": 6570, + "token_id": 6538, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6571, + "token_id": 6539, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6572, + "token_id": 6540, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6573, + "token_id": 6541, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6574, + "token_id": 6542, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6575, + "token_id": 6543, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "cite", - "token_id": 6576, + "token_id": 6544, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "web", - "token_id": 6577, + "token_id": 6545, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6578, + "token_id": 6546, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "title", - "token_id": 6579, + "token_id": 6547, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6580, + "token_id": 6548, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6581, + "token_id": 6549, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6582, + "token_id": 6550, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6583, + "token_id": 6551, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "here", - "token_id": 6584, + "token_id": 6552, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "comes", - "token_id": 6585, + "token_id": 6553, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6586, + "token_id": 6554, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6587, + "token_id": 6555, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6588, + "token_id": 6556, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6589, + "token_id": 6557, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6590, + "token_id": 6558, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "!", - "token_id": 6591, + "token_id": 6559, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6592, + "token_id": 6560, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibitions", - "token_id": 6593, + "token_id": 6561, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6594, + "token_id": 6562, "o_rev_id": 1315073789, "in": [], "out": [ @@ -54021,7 +53733,7 @@ }, { "str": "!", - "token_id": 6595, + "token_id": 6563, "o_rev_id": 1315073789, "in": [], "out": [ @@ -54030,7 +53742,7 @@ }, { "str": "}}", - "token_id": 6596, + "token_id": 6564, "o_rev_id": 1315073789, "in": [], "out": [ @@ -54039,7 +53751,7 @@ }, { "str": "mutualart", - "token_id": 6597, + "token_id": 6565, "o_rev_id": 1315073789, "in": [], "out": [ @@ -54048,1316 +53760,1316 @@ }, { "str": "|", - "token_id": 6598, + "token_id": 6566, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "url", - "token_id": 6599, + "token_id": 6567, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6600, + "token_id": 6568, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "https", - "token_id": 6601, + "token_id": 6569, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6602, + "token_id": 6570, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6603, + "token_id": 6571, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6604, + "token_id": 6572, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "www", - "token_id": 6605, + "token_id": 6573, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6606, + "token_id": 6574, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "mutualart", - "token_id": 6607, + "token_id": 6575, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6608, + "token_id": 6576, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6609, + "token_id": 6577, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6610, + "token_id": 6578, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 6611, + "token_id": 6579, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6612, + "token_id": 6580, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6613, + "token_id": 6581, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6614, + "token_id": 6582, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6615, + "token_id": 6583, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6616, + "token_id": 6584, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6617, + "token_id": 6585, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "here", - "token_id": 6618, + "token_id": 6586, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6619, + "token_id": 6587, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "comes", - "token_id": 6620, + "token_id": 6588, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6621, + "token_id": 6589, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6622, + "token_id": 6590, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6623, + "token_id": 6591, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "twister", - "token_id": 6624, + "token_id": 6592, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6625, + "token_id": 6593, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "42f77b5117f28cfd", - "token_id": 6626, + "token_id": 6594, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6627, + "token_id": 6595, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "access", - "token_id": 6628, + "token_id": 6596, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6629, + "token_id": 6597, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6630, + "token_id": 6598, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6631, + "token_id": 6599, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6632, + "token_id": 6600, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6633, + "token_id": 6601, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 6634, + "token_id": 6602, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6635, + "token_id": 6603, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6636, + "token_id": 6604, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6637, + "token_id": 6605, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "website", - "token_id": 6638, + "token_id": 6606, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6639, + "token_id": 6607, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "www", - "token_id": 6640, + "token_id": 6608, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6641, + "token_id": 6609, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "mutualart", - "token_id": 6642, + "token_id": 6610, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6643, + "token_id": 6611, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6644, + "token_id": 6612, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6645, + "token_id": 6613, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "language", - "token_id": 6646, + "token_id": 6614, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6647, + "token_id": 6615, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "en", - "token_id": 6648, + "token_id": 6616, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6649, + "token_id": 6617, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6650, + "token_id": 6618, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6651, + "token_id": 6619, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6652, + "token_id": 6620, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6653, + "token_id": 6621, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "viewers", - "token_id": 6654, + "token_id": 6622, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "entered", - "token_id": 6655, + "token_id": 6623, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6656, + "token_id": 6624, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "gallery", - "token_id": 6657, + "token_id": 6625, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "expecting", - "token_id": 6658, + "token_id": 6626, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "to", - "token_id": 6659, + "token_id": 6627, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "see", - "token_id": 6660, + "token_id": 6628, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "art", - "token_id": 6661, + "token_id": 6629, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6662, + "token_id": 6630, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 6663, + "token_id": 6631, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "were", - "token_id": 6664, + "token_id": 6632, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "met", - "token_id": 6665, + "token_id": 6633, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "with", - "token_id": 6666, + "token_id": 6634, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "empty", - "token_id": 6667, + "token_id": 6635, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "walls", - "token_id": 6668, + "token_id": 6636, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6669, + "token_id": 6637, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "until", - "token_id": 6670, + "token_id": 6638, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6671, + "token_id": 6639, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "entered", - "token_id": 6672, + "token_id": 6640, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6673, + "token_id": 6641, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "space", - "token_id": 6674, + "token_id": 6642, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 6675, + "token_id": 6643, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "stappled", - "token_id": 6676, + "token_id": 6644, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "loose", - "token_id": 6677, + "token_id": 6645, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6678, + "token_id": 6646, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "canvas", - "token_id": 6679, + "token_id": 6647, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "directly", - "token_id": 6680, + "token_id": 6648, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "onto", - "token_id": 6681, + "token_id": 6649, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6682, + "token_id": 6650, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "walls", - "token_id": 6683, + "token_id": 6651, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himself", - "token_id": 6684, + "token_id": 6652, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6685, + "token_id": 6653, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "after", - "token_id": 6686, + "token_id": 6654, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "all", - "token_id": 6687, + "token_id": 6655, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6688, + "token_id": 6656, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6689, + "token_id": 6657, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "paintings", - "token_id": 6690, + "token_id": 6658, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "were", - "token_id": 6691, + "token_id": 6659, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "stapled", - "token_id": 6692, + "token_id": 6660, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6693, + "token_id": 6661, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "walls", - "token_id": 6694, + "token_id": 6662, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 6695, + "token_id": 6663, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "unfurled", - "token_id": 6696, + "token_id": 6664, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "from", - "token_id": 6697, + "token_id": 6665, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "their", - "token_id": 6698, + "token_id": 6666, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "tubes", - "token_id": 6699, + "token_id": 6667, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ",", - "token_id": 6700, + "token_id": 6668, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6701, + "token_id": 6669, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "danced", - "token_id": 6702, + "token_id": 6670, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "to", - "token_id": 6703, + "token_id": 6671, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6704, + "token_id": 6672, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "song", - "token_id": 6705, + "token_id": 6673, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "\"", - "token_id": 6706, + "token_id": 6674, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "fantastic", - "token_id": 6707, + "token_id": 6675, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "man", - "token_id": 6708, + "token_id": 6676, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "”", - "token_id": 6709, + "token_id": 6677, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "[[", - "token_id": 6710, + "token_id": 6678, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "william", - "token_id": 6711, + "token_id": 6679, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "onyeabor", - "token_id": 6712, + "token_id": 6680, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "]]", - "token_id": 6713, + "token_id": 6681, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2024", - "token_id": 6714, + "token_id": 6682, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "06", - "token_id": 6715, + "token_id": 6683, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "25", - "token_id": 6716, + "token_id": 6684, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebach", - "token_id": 6717, + "token_id": 6685, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "turns", - "token_id": 6718, + "token_id": 6686, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "the", - "token_id": 6719, + "token_id": 6687, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "installation", - "token_id": 6720, + "token_id": 6688, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6721, + "token_id": 6689, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "his", - "token_id": 6722, + "token_id": 6690, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "seoul", - "token_id": 6723, + "token_id": 6691, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "show", - "token_id": 6724, + "token_id": 6692, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "into", - "token_id": 6725, + "token_id": 6693, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "performance", - "token_id": 6726, + "token_id": 6694, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6727, + "token_id": 6695, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "url", - "token_id": 6728, + "token_id": 6696, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6729, + "token_id": 6697, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "https", - "token_id": 6730, + "token_id": 6698, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6731, + "token_id": 6699, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6732, + "token_id": 6700, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6733, + "token_id": 6701, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "news", - "token_id": 6734, + "token_id": 6702, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6735, + "token_id": 6703, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "artnet", - "token_id": 6736, + "token_id": 6704, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6737, + "token_id": 6705, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6738, + "token_id": 6706, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6739, + "token_id": 6707, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "art", - "token_id": 6740, + "token_id": 6708, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6741, + "token_id": 6709, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "world", - "token_id": 6742, + "token_id": 6710, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6743, + "token_id": 6711, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6744, + "token_id": 6712, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6745, + "token_id": 6713, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6746, + "token_id": 6714, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6747, + "token_id": 6715, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "hangs", - "token_id": 6748, + "token_id": 6716, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6749, + "token_id": 6717, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "his", - "token_id": 6750, + "token_id": 6718, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6751, + "token_id": 6719, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "own", - "token_id": 6752, + "token_id": 6720, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6753, + "token_id": 6721, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "show", - "token_id": 6754, + "token_id": 6722, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6755, + "token_id": 6723, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "seoul", - "token_id": 6756, + "token_id": 6724, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6757, + "token_id": 6725, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2503747", - "token_id": 6758, + "token_id": 6726, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6759, + "token_id": 6727, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "access", - "token_id": 6760, + "token_id": 6728, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6761, + "token_id": 6729, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6762, + "token_id": 6730, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6763, + "token_id": 6731, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6764, + "token_id": 6732, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6765, + "token_id": 6733, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 6766, + "token_id": 6734, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6767, + "token_id": 6735, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6768, + "token_id": 6736, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6769, + "token_id": 6737, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "website", - "token_id": 6770, + "token_id": 6738, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6771, + "token_id": 6739, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "artnet", - "token_id": 6772, + "token_id": 6740, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "news", - "token_id": 6773, + "token_id": 6741, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6774, + "token_id": 6742, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "language", - "token_id": 6775, + "token_id": 6743, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6776, + "token_id": 6744, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "en", - "token_id": 6777, + "token_id": 6745, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6778, + "token_id": 6746, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "us", - "token_id": 6779, + "token_id": 6747, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6780, + "token_id": 6748, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6781, + "token_id": 6749, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6782, + "token_id": 6750, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6783, + "token_id": 6751, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6784, + "token_id": 6752, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6785, + "token_id": 6753, "o_rev_id": 1315073789, "in": [], "out": [ @@ -55366,7 +55078,7 @@ }, { "str": "=", - "token_id": 6786, + "token_id": 6754, "o_rev_id": 1315073789, "in": [], "out": [ @@ -55375,7 +55087,7 @@ }, { "str": "=", - "token_id": 6787, + "token_id": 6755, "o_rev_id": 1315073789, "in": [], "out": [ @@ -55384,7 +55096,7 @@ }, { "str": "select", - "token_id": 6788, + "token_id": 6756, "o_rev_id": 1315073789, "in": [], "out": [ @@ -55393,14 +55105,14 @@ }, { "str": "exhibitions", - "token_id": 6789, + "token_id": 6757, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6790, + "token_id": 6758, "o_rev_id": 1315073789, "in": [], "out": [ @@ -55409,7 +55121,7 @@ }, { "str": "=", - "token_id": 6791, + "token_id": 6759, "o_rev_id": 1315073789, "in": [], "out": [ @@ -55418,7 +55130,7 @@ }, { "str": "=", - "token_id": 6792, + "token_id": 6760, "o_rev_id": 1315073789, "in": [], "out": [ @@ -55427,854 +55139,854 @@ }, { "str": "in", - "token_id": 6793, + "token_id": 6761, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6794, + "token_id": 6762, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6795, + "token_id": 6763, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "had", - "token_id": 6796, + "token_id": 6764, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6797, + "token_id": 6765, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "solo", - "token_id": 6798, + "token_id": 6766, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 6799, + "token_id": 6767, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "entitled", - "token_id": 6800, + "token_id": 6768, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6801, + "token_id": 6769, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6802, + "token_id": 6770, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "serenity", - "token_id": 6803, + "token_id": 6771, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "now", - "token_id": 6804, + "token_id": 6772, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6805, + "token_id": 6773, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "'", - "token_id": 6806, + "token_id": 6774, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "at", - "token_id": 6807, + "token_id": 6775, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "jupiter", - "token_id": 6808, + "token_id": 6776, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "miami", - "token_id": 6809, + "token_id": 6777, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "where", - "token_id": 6810, + "token_id": 6778, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "he", - "token_id": 6811, + "token_id": 6779, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "showed", - "token_id": 6812, + "token_id": 6780, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6813, + "token_id": 6781, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "series", - "token_id": 6814, + "token_id": 6782, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "of", - "token_id": 6815, + "token_id": 6783, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "[[", - "token_id": 6816, + "token_id": 6784, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "monochrome", - "token_id": 6817, + "token_id": 6785, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6818, + "token_id": 6786, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "monochromatic", - "token_id": 6819, + "token_id": 6787, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "]]", - "token_id": 6820, + "token_id": 6788, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "landscapes", - "token_id": 6821, + "token_id": 6789, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "inspired", - "token_id": 6822, + "token_id": 6790, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "by", - "token_id": 6823, + "token_id": 6791, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "pre", - "token_id": 6824, + "token_id": 6792, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6825, + "token_id": 6793, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "urban", - "token_id": 6826, + "token_id": 6794, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "miami", - "token_id": 6827, + "token_id": 6795, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6828, + "token_id": 6796, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6829, + "token_id": 6797, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6830, + "token_id": 6798, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6831, + "token_id": 6799, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6832, + "token_id": 6800, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "cite", - "token_id": 6833, + "token_id": 6801, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "web", - "token_id": 6834, + "token_id": 6802, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6835, + "token_id": 6803, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "title", - "token_id": 6836, + "token_id": 6804, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6837, + "token_id": 6805, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6838, + "token_id": 6806, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6839, + "token_id": 6807, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6840, + "token_id": 6808, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "overview", - "token_id": 6841, + "token_id": 6809, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6842, + "token_id": 6810, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "url", - "token_id": 6843, + "token_id": 6811, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6844, + "token_id": 6812, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "https", - "token_id": 6845, + "token_id": 6813, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6846, + "token_id": 6814, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6847, + "token_id": 6815, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6848, + "token_id": 6816, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "jupiterarms", - "token_id": 6849, + "token_id": 6817, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6850, + "token_id": 6818, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6851, + "token_id": 6819, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6852, + "token_id": 6820, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibitions", - "token_id": 6853, + "token_id": 6821, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6854, + "token_id": 6822, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "34", - "token_id": 6855, + "token_id": 6823, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6856, + "token_id": 6824, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6857, + "token_id": 6825, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6858, + "token_id": 6826, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6859, + "token_id": 6827, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6860, + "token_id": 6828, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "serenity", - "token_id": 6861, + "token_id": 6829, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6862, + "token_id": 6830, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "now", - "token_id": 6863, + "token_id": 6831, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6864, + "token_id": 6832, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "overview", - "token_id": 6865, + "token_id": 6833, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6866, + "token_id": 6834, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6867, + "token_id": 6835, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "access", - "token_id": 6868, + "token_id": 6836, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6869, + "token_id": 6837, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6870, + "token_id": 6838, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6871, + "token_id": 6839, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6872, + "token_id": 6840, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6873, + "token_id": 6841, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 6874, + "token_id": 6842, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6875, + "token_id": 6843, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6876, + "token_id": 6844, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6877, + "token_id": 6845, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "website", - "token_id": 6878, + "token_id": 6846, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6879, + "token_id": 6847, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "jupiter", - "token_id": 6880, + "token_id": 6848, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6881, + "token_id": 6849, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "language", - "token_id": 6882, + "token_id": 6850, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6883, + "token_id": 6851, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "en", - "token_id": 6884, + "token_id": 6852, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 6885, + "token_id": 6853, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6886, + "token_id": 6854, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6887, + "token_id": 6855, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6888, + "token_id": 6856, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6889, + "token_id": 6857, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6890, + "token_id": 6858, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6891, + "token_id": 6859, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6892, + "token_id": 6860, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6893, + "token_id": 6861, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "cite", - "token_id": 6894, + "token_id": 6862, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "web", - "token_id": 6895, + "token_id": 6863, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6896, + "token_id": 6864, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6897, + "token_id": 6865, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6898, + "token_id": 6866, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6899, + "token_id": 6867, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6900, + "token_id": 6868, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "02", - "token_id": 6901, + "token_id": 6869, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6902, + "token_id": 6870, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "03", - "token_id": 6903, + "token_id": 6871, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6904, + "token_id": 6872, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "title", - "token_id": 6905, + "token_id": 6873, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6906, + "token_id": 6874, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6907, + "token_id": 6875, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6908, + "token_id": 6876, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "trades", - "token_id": 6909, + "token_id": 6877, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "stunts", - "token_id": 6910, + "token_id": 6878, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "for", - "token_id": 6911, + "token_id": 6879, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "stillness", - "token_id": 6912, + "token_id": 6880, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "in", - "token_id": 6913, + "token_id": 6881, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "‘serenity", - "token_id": 6914, + "token_id": 6882, "o_rev_id": 1315073789, "in": [], "out": [ @@ -56283,14 +55995,14 @@ }, { "str": "now", - "token_id": 6915, + "token_id": 6883, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "’", - "token_id": 6916, + "token_id": 6884, "o_rev_id": 1315073789, "in": [], "out": [ @@ -56299,833 +56011,833 @@ }, { "str": "2025", - "token_id": 6917, + "token_id": 6885, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2", - "token_id": 6918, + "token_id": 6886, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6919, + "token_id": 6887, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6920, + "token_id": 6888, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "serenity", - "token_id": 6921, + "token_id": 6889, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "now", - "token_id": 6922, + "token_id": 6890, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "jupiter", - "token_id": 6923, + "token_id": 6891, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "miami", - "token_id": 6924, + "token_id": 6892, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6925, + "token_id": 6893, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 6926, + "token_id": 6894, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6927, + "token_id": 6895, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6928, + "token_id": 6896, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6929, + "token_id": 6897, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6930, + "token_id": 6898, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6931, + "token_id": 6899, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "this", - "token_id": 6932, + "token_id": 6900, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "series", - "token_id": 6933, + "token_id": 6901, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "focused", - "token_id": 6934, + "token_id": 6902, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "on", - "token_id": 6935, + "token_id": 6903, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "restrained", - "token_id": 6936, + "token_id": 6904, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "reflection", - "token_id": 6937, + "token_id": 6905, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "and", - "token_id": 6938, + "token_id": 6906, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "painting", - "token_id": 6939, + "token_id": 6907, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "alone", - "token_id": 6940, + "token_id": 6908, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "rather", - "token_id": 6941, + "token_id": 6909, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "than", - "token_id": 6942, + "token_id": 6910, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "on", - "token_id": 6943, + "token_id": 6911, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "provocative", - "token_id": 6944, + "token_id": 6912, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "performance", - "token_id": 6945, + "token_id": 6913, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6946, + "token_id": 6914, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "<", - "token_id": 6947, + "token_id": 6915, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "ref", - "token_id": 6948, + "token_id": 6916, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ">", - "token_id": 6949, + "token_id": 6917, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 6950, + "token_id": 6918, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "cite", - "token_id": 6951, + "token_id": 6919, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "web", - "token_id": 6952, + "token_id": 6920, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6953, + "token_id": 6921, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "last", - "token_id": 6954, + "token_id": 6922, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6955, + "token_id": 6923, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "james", - "token_id": 6956, + "token_id": 6924, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6957, + "token_id": 6925, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "first", - "token_id": 6958, + "token_id": 6926, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6959, + "token_id": 6927, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "jesse", - "token_id": 6960, + "token_id": 6928, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6961, + "token_id": 6929, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 6962, + "token_id": 6930, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6963, + "token_id": 6931, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6964, + "token_id": 6932, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6965, + "token_id": 6933, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "02", - "token_id": 6966, + "token_id": 6934, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 6967, + "token_id": 6935, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 6968, + "token_id": 6936, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6969, + "token_id": 6937, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "title", - "token_id": 6970, + "token_id": 6938, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6971, + "token_id": 6939, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "jupiter", - "token_id": 6972, + "token_id": 6940, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "miami", - "token_id": 6973, + "token_id": 6941, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "presents", - "token_id": 6974, + "token_id": 6942, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "serenity", - "token_id": 6975, + "token_id": 6943, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "now", - "token_id": 6976, + "token_id": 6944, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6977, + "token_id": 6945, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 6978, + "token_id": 6946, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "solo", - "token_id": 6979, + "token_id": 6947, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 6980, + "token_id": 6948, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "by", - "token_id": 6981, + "token_id": 6949, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 6982, + "token_id": 6950, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 6983, + "token_id": 6951, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 6984, + "token_id": 6952, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "url", - "token_id": 6985, + "token_id": 6953, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 6986, + "token_id": 6954, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "https", - "token_id": 6987, + "token_id": 6955, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ":", - "token_id": 6988, + "token_id": 6956, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6989, + "token_id": 6957, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6990, + "token_id": 6958, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "stupiddope", - "token_id": 6991, + "token_id": 6959, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": ".", - "token_id": 6992, + "token_id": 6960, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "com", - "token_id": 6993, + "token_id": 6961, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6994, + "token_id": 6962, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 6995, + "token_id": 6963, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6996, + "token_id": 6964, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "02", - "token_id": 6997, + "token_id": 6965, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 6998, + "token_id": 6966, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "jupiter", - "token_id": 6999, + "token_id": 6967, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7000, + "token_id": 6968, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "miami", - "token_id": 7001, + "token_id": 6969, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7002, + "token_id": 6970, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "presents", - "token_id": 7003, + "token_id": 6971, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7004, + "token_id": 6972, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "serenity", - "token_id": 7005, + "token_id": 6973, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7006, + "token_id": 6974, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "now", - "token_id": 7007, + "token_id": 6975, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7008, + "token_id": 6976, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "a", - "token_id": 7009, + "token_id": 6977, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7010, + "token_id": 6978, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "solo", - "token_id": 7011, + "token_id": 6979, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7012, + "token_id": 6980, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 7013, + "token_id": 6981, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7014, + "token_id": 6982, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "by", - "token_id": 7015, + "token_id": 6983, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7016, + "token_id": 6984, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "adam", - "token_id": 7017, + "token_id": 6985, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7018, + "token_id": 6986, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7019, + "token_id": 6987, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "/", - "token_id": 7020, + "token_id": 6988, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 7021, + "token_id": 6989, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "access", - "token_id": 7022, + "token_id": 6990, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7023, + "token_id": 6991, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "date", - "token_id": 7024, + "token_id": 6992, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 7025, + "token_id": 6993, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "2025", - "token_id": 7026, + "token_id": 6994, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7027, + "token_id": 6995, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "10", - "token_id": 7028, + "token_id": 6996, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7029, + "token_id": 6997, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "04", - "token_id": 7030, + "token_id": 6998, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 7031, + "token_id": 6999, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "website", - "token_id": 7032, + "token_id": 7000, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 7033, + "token_id": 7001, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "stupiddope", - "token_id": 7034, + "token_id": 7002, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "{{", - "token_id": 7035, + "token_id": 7003, "o_rev_id": 1315073789, "in": [], "out": [ @@ -57134,7 +56846,7 @@ }, { "str": "!", - "token_id": 7036, + "token_id": 7004, "o_rev_id": 1315073789, "in": [], "out": [ @@ -57143,7 +56855,7 @@ }, { "str": "}}", - "token_id": 7037, + "token_id": 7005, "o_rev_id": 1315073789, "in": [], "out": [ @@ -57152,7 +56864,7 @@ }, { "str": "est", - "token_id": 7038, + "token_id": 7006, "o_rev_id": 1315073789, "in": [], "out": [ @@ -57161,7 +56873,7 @@ }, { "str": ".", - "token_id": 7039, + "token_id": 7007, "o_rev_id": 1315073789, "in": [], "out": [ @@ -57170,7 +56882,7 @@ }, { "str": "2008", - "token_id": 7040, + "token_id": 7008, "o_rev_id": 1315073789, "in": [], "out": [ @@ -57179,56 +56891,56 @@ }, { "str": "|", - "token_id": 7041, + "token_id": 7009, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "language", - "token_id": 7042, + "token_id": 7010, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "=", - "token_id": 7043, + "token_id": 7011, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "en", - "token_id": 7044, + "token_id": 7012, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "-", - "token_id": 7045, + "token_id": 7013, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "us", - "token_id": 7046, + "token_id": 7014, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "}}", - "token_id": 7047, + "token_id": 7015, "o_rev_id": 1315073789, "in": [], "out": [] }, { "str": "|", - "token_id": 7048, + "token_id": 7016, "o_rev_id": 1315118967, "in": [], "out": [ @@ -57237,7 +56949,7 @@ }, { "str": "caption", - "token_id": 7049, + "token_id": 7017, "o_rev_id": 1315118967, "in": [], "out": [ @@ -57246,7 +56958,7 @@ }, { "str": "=", - "token_id": 7050, + "token_id": 7018, "o_rev_id": 1315118967, "in": [], "out": [ @@ -57255,2044 +56967,2044 @@ }, { "str": "|", - "token_id": 7051, + "token_id": 7019, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "birth", - "token_id": 7052, + "token_id": 7020, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "_", - "token_id": 7053, + "token_id": 7021, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "date", - "token_id": 7054, + "token_id": 7022, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7055, + "token_id": 7023, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "april", - "token_id": 7056, + "token_id": 7024, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "11", - "token_id": 7057, + "token_id": 7025, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ",", - "token_id": 7058, + "token_id": 7026, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "1983", - "token_id": 7059, + "token_id": 7027, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "these", - "token_id": 7060, + "token_id": 7028, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "temporary", - "token_id": 7061, + "token_id": 7029, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "exhibitions", - "token_id": 7062, + "token_id": 7030, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "were", - "token_id": 7063, + "token_id": 7031, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "among", - "token_id": 7064, + "token_id": 7032, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "the", - "token_id": 7065, + "token_id": 7033, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "first", - "token_id": 7066, + "token_id": 7034, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "[[", - "token_id": 7067, + "token_id": 7035, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "virtual", - "token_id": 7068, + "token_id": 7036, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "reality", - "token_id": 7069, + "token_id": 7037, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "]]", - "token_id": 7070, + "token_id": 7038, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "(", - "token_id": 7071, + "token_id": 7039, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "vr", - "token_id": 7072, + "token_id": 7040, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ")", - "token_id": 7073, + "token_id": 7041, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "art", - "token_id": 7074, + "token_id": 7042, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "experiences", - "token_id": 7075, + "token_id": 7043, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7076, + "token_id": 7044, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7077, + "token_id": 7045, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7078, + "token_id": 7046, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7079, + "token_id": 7047, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "{{", - "token_id": 7080, + "token_id": 7048, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "cite", - "token_id": 7081, + "token_id": 7049, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "web", - "token_id": 7082, + "token_id": 7050, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7083, + "token_id": 7051, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "last", - "token_id": 7084, + "token_id": 7052, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7085, + "token_id": 7053, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "nunes", - "token_id": 7086, + "token_id": 7054, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7087, + "token_id": 7055, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "first", - "token_id": 7088, + "token_id": 7056, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7089, + "token_id": 7057, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "andrew", - "token_id": 7090, + "token_id": 7058, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7091, + "token_id": 7059, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "date", - "token_id": 7092, + "token_id": 7060, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7093, + "token_id": 7061, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "2016", - "token_id": 7094, + "token_id": 7062, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7095, + "token_id": 7063, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "10", - "token_id": 7096, + "token_id": 7064, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7097, + "token_id": 7065, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "26", - "token_id": 7098, + "token_id": 7066, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7099, + "token_id": 7067, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "title", - "token_id": 7100, + "token_id": 7068, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7101, + "token_id": 7069, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7102, + "token_id": 7070, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "donald", - "token_id": 7103, + "token_id": 7071, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "dump", - "token_id": 7104, + "token_id": 7072, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7105, + "token_id": 7073, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "artist", - "token_id": 7106, + "token_id": 7074, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 7107, + "token_id": 7075, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "brings", - "token_id": 7108, + "token_id": 7076, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "street", - "token_id": 7109, + "token_id": 7077, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "art", - "token_id": 7110, + "token_id": 7078, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "into", - "token_id": 7111, + "token_id": 7079, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "virtual", - "token_id": 7112, + "token_id": 7080, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "reality", - "token_id": 7113, + "token_id": 7081, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7114, + "token_id": 7082, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "url", - "token_id": 7115, + "token_id": 7083, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7116, + "token_id": 7084, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "https", - "token_id": 7117, + "token_id": 7085, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ":", - "token_id": 7118, + "token_id": 7086, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7119, + "token_id": 7087, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7120, + "token_id": 7088, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "www", - "token_id": 7121, + "token_id": 7089, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7122, + "token_id": 7090, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "vice", - "token_id": 7123, + "token_id": 7091, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7124, + "token_id": 7092, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "com", - "token_id": 7125, + "token_id": 7093, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7126, + "token_id": 7094, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "en", - "token_id": 7127, + "token_id": 7095, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7128, + "token_id": 7096, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "article", - "token_id": 7129, + "token_id": 7097, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7130, + "token_id": 7098, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "trump", - "token_id": 7131, + "token_id": 7099, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7132, + "token_id": 7100, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "turd", - "token_id": 7133, + "token_id": 7101, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7134, + "token_id": 7102, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "artist", - "token_id": 7135, + "token_id": 7103, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7136, + "token_id": 7104, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 7137, + "token_id": 7105, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7138, + "token_id": 7106, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "brings", - "token_id": 7139, + "token_id": 7107, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7140, + "token_id": 7108, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "street", - "token_id": 7141, + "token_id": 7109, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7142, + "token_id": 7110, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "art", - "token_id": 7143, + "token_id": 7111, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7144, + "token_id": 7112, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "to", - "token_id": 7145, + "token_id": 7113, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7146, + "token_id": 7114, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "vr", - "token_id": 7147, + "token_id": 7115, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7148, + "token_id": 7116, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7149, + "token_id": 7117, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "access", - "token_id": 7150, + "token_id": 7118, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7151, + "token_id": 7119, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "date", - "token_id": 7152, + "token_id": 7120, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7153, + "token_id": 7121, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "2025", - "token_id": 7154, + "token_id": 7122, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7155, + "token_id": 7123, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "10", - "token_id": 7156, + "token_id": 7124, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7157, + "token_id": 7125, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "05", - "token_id": 7158, + "token_id": 7126, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7159, + "token_id": 7127, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "website", - "token_id": 7160, + "token_id": 7128, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7161, + "token_id": 7129, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "vice", - "token_id": 7162, + "token_id": 7130, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7163, + "token_id": 7131, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "language", - "token_id": 7164, + "token_id": 7132, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7165, + "token_id": 7133, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "en", - "token_id": 7166, + "token_id": 7134, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7167, + "token_id": 7135, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "us", - "token_id": 7168, + "token_id": 7136, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "}}", - "token_id": 7169, + "token_id": 7137, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7170, + "token_id": 7138, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7171, + "token_id": 7139, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7172, + "token_id": 7140, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7173, + "token_id": 7141, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ",", - "token_id": 7174, + "token_id": 7142, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "performance", - "token_id": 7175, + "token_id": 7143, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "perception", - "token_id": 7176, + "token_id": 7144, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7177, + "token_id": 7145, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7178, + "token_id": 7146, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7179, + "token_id": 7147, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7180, + "token_id": 7148, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7181, + "token_id": 7149, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ai", - "token_id": 7182, + "token_id": 7150, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "critic", - "token_id": 7183, + "token_id": 7151, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7184, + "token_id": 7152, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7185, + "token_id": 7153, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ",", - "token_id": 7186, + "token_id": 7154, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "2024", - "token_id": 7187, + "token_id": 7155, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7188, + "token_id": 7156, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7189, + "token_id": 7157, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7190, + "token_id": 7158, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7191, + "token_id": 7159, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "posted", - "token_id": 7192, + "token_id": 7160, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "a", - "token_id": 7193, + "token_id": 7161, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "video", - "token_id": 7194, + "token_id": 7162, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "of", - "token_id": 7195, + "token_id": 7163, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "art", - "token_id": 7196, + "token_id": 7164, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "critic", - "token_id": 7197, + "token_id": 7165, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "[[", - "token_id": 7198, + "token_id": 7166, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "jerry", - "token_id": 7199, + "token_id": 7167, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "saltz", - "token_id": 7200, + "token_id": 7168, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "]]", - "token_id": 7201, + "token_id": 7169, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "seemingly", - "token_id": 7202, + "token_id": 7170, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "praising", - "token_id": 7203, + "token_id": 7171, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "an", - "token_id": 7204, + "token_id": 7172, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 7205, + "token_id": 7173, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "of", - "token_id": 7206, + "token_id": 7174, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7207, + "token_id": 7175, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7208, + "token_id": 7176, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "s", - "token_id": 7209, + "token_id": 7177, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "work", - "token_id": 7210, + "token_id": 7178, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "miami", - "token_id": 7211, + "token_id": 7179, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7212, + "token_id": 7180, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "the", - "token_id": 7213, + "token_id": 7181, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "video", - "token_id": 7214, + "token_id": 7182, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "was", - "token_id": 7215, + "token_id": 7183, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "actually", - "token_id": 7216, + "token_id": 7184, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "a", - "token_id": 7217, + "token_id": 7185, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "deep", - "token_id": 7218, + "token_id": 7186, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "fake", - "token_id": 7219, + "token_id": 7187, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "that", - "token_id": 7220, + "token_id": 7188, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7221, + "token_id": 7189, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "made", - "token_id": 7222, + "token_id": 7190, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "using", - "token_id": 7223, + "token_id": 7191, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "[[", - "token_id": 7224, + "token_id": 7192, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "artificial", - "token_id": 7225, + "token_id": 7193, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "intelligence", - "token_id": 7226, + "token_id": 7194, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "]]", - "token_id": 7227, + "token_id": 7195, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "(", - "token_id": 7228, + "token_id": 7196, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ai", - "token_id": 7229, + "token_id": 7197, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ")", - "token_id": 7230, + "token_id": 7198, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "tools", - "token_id": 7231, + "token_id": 7199, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7232, + "token_id": 7200, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7233, + "token_id": 7201, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7234, + "token_id": 7202, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "name", - "token_id": 7235, + "token_id": 7203, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7236, + "token_id": 7204, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "\"", - "token_id": 7237, + "token_id": 7205, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ":", - "token_id": 7238, + "token_id": 7206, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "5", - "token_id": 7239, + "token_id": 7207, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "\"", - "token_id": 7240, + "token_id": 7208, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7241, + "token_id": 7209, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "{{", - "token_id": 7242, + "token_id": 7210, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "cite", - "token_id": 7243, + "token_id": 7211, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "web", - "token_id": 7244, + "token_id": 7212, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7245, + "token_id": 7213, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "last", - "token_id": 7246, + "token_id": 7214, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7247, + "token_id": 7215, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "song", - "token_id": 7248, + "token_id": 7216, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7249, + "token_id": 7217, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "first", - "token_id": 7250, + "token_id": 7218, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7251, + "token_id": 7219, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "sandra", - "token_id": 7252, + "token_id": 7220, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7253, + "token_id": 7221, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "title", - "token_id": 7254, + "token_id": 7222, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7255, + "token_id": 7223, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "unmasking", - "token_id": 7256, + "token_id": 7224, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "adam", - "token_id": 7257, + "token_id": 7225, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7258, + "token_id": 7226, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "{{", - "token_id": 7259, + "token_id": 7227, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "!", - "token_id": 7260, + "token_id": 7228, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "}}", - "token_id": 7261, + "token_id": 7229, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "vext", - "token_id": 7262, + "token_id": 7230, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7263, + "token_id": 7231, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "url", - "token_id": 7264, + "token_id": 7232, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7265, + "token_id": 7233, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "https", - "token_id": 7266, + "token_id": 7234, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ":", - "token_id": 7267, + "token_id": 7235, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7268, + "token_id": 7236, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7269, + "token_id": 7237, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "vextmagazine", - "token_id": 7270, + "token_id": 7238, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7271, + "token_id": 7239, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "com", - "token_id": 7272, + "token_id": 7240, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7273, + "token_id": 7241, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "adam", - "token_id": 7274, + "token_id": 7242, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7275, + "token_id": 7243, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7276, + "token_id": 7244, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7277, + "token_id": 7245, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "interview", - "token_id": 7278, + "token_id": 7246, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7279, + "token_id": 7247, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "access", - "token_id": 7280, + "token_id": 7248, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7281, + "token_id": 7249, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "date", - "token_id": 7282, + "token_id": 7250, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7283, + "token_id": 7251, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "2025", - "token_id": 7284, + "token_id": 7252, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7285, + "token_id": 7253, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "10", - "token_id": 7286, + "token_id": 7254, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7287, + "token_id": 7255, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "05", - "token_id": 7288, + "token_id": 7256, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7289, + "token_id": 7257, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "website", - "token_id": 7290, + "token_id": 7258, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7291, + "token_id": 7259, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "vextmagazine", - "token_id": 7292, + "token_id": 7260, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7293, + "token_id": 7261, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "com", - "token_id": 7294, + "token_id": 7262, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7295, + "token_id": 7263, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "language", - "token_id": 7296, + "token_id": 7264, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7297, + "token_id": 7265, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "en", - "token_id": 7298, + "token_id": 7266, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "}}", - "token_id": 7299, + "token_id": 7267, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7300, + "token_id": 7268, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7301, + "token_id": 7269, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7302, + "token_id": 7270, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7303, + "token_id": 7271, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "in", - "token_id": 7304, + "token_id": 7272, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "an", - "token_id": 7305, + "token_id": 7273, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "era", - "token_id": 7306, + "token_id": 7274, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "full", - "token_id": 7307, + "token_id": 7275, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "of", - "token_id": 7308, + "token_id": 7276, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "disinformation", - "token_id": 7309, + "token_id": 7277, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "and", - "token_id": 7310, + "token_id": 7278, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "the", - "token_id": 7311, + "token_id": 7279, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "manipulation", - "token_id": 7312, + "token_id": 7280, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "of", - "token_id": 7313, + "token_id": 7281, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "perception", - "token_id": 7314, + "token_id": 7282, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ",", - "token_id": 7315, + "token_id": 7283, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7316, + "token_id": 7284, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7317, + "token_id": 7285, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "s", - "token_id": 7318, + "token_id": 7286, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "project", - "token_id": 7319, + "token_id": 7287, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "encourages", - "token_id": 7320, + "token_id": 7288, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "viewers", - "token_id": 7321, + "token_id": 7289, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "to", - "token_id": 7322, + "token_id": 7290, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "be", - "token_id": 7323, + "token_id": 7291, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "curious", - "token_id": 7324, + "token_id": 7292, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "about", - "token_id": 7325, + "token_id": 7293, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "authenticity", - "token_id": 7326, + "token_id": 7294, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "and", - "token_id": 7327, + "token_id": 7295, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "what", - "token_id": 7328, + "token_id": 7296, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "to", - "token_id": 7329, + "token_id": 7297, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "trust", - "token_id": 7330, + "token_id": 7298, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7331, + "token_id": 7299, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7332, + "token_id": 7300, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7333, + "token_id": 7301, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "name", - "token_id": 7334, + "token_id": 7302, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7335, + "token_id": 7303, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "\"", - "token_id": 7336, + "token_id": 7304, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ":", - "token_id": 7337, + "token_id": 7305, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "5", - "token_id": 7338, + "token_id": 7306, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "\"", - "token_id": 7339, + "token_id": 7307, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7340, + "token_id": 7308, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7341, + "token_id": 7309, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7342, + "token_id": 7310, "o_rev_id": 1315155427, "in": [], "out": [ @@ -59301,7 +59013,7 @@ }, { "str": "=", - "token_id": 7343, + "token_id": 7311, "o_rev_id": 1315155427, "in": [], "out": [ @@ -59310,14 +59022,14 @@ }, { "str": "entrepreneurship", - "token_id": 7344, + "token_id": 7312, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7345, + "token_id": 7313, "o_rev_id": 1315155427, "in": [], "out": [ @@ -59326,7 +59038,7 @@ }, { "str": "=", - "token_id": 7346, + "token_id": 7314, "o_rev_id": 1315155427, "in": [], "out": [ @@ -59335,6958 +59047,6958 @@ }, { "str": "himebauch", - "token_id": 7347, + "token_id": 7315, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "is", - "token_id": 7348, + "token_id": 7316, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "a", - "token_id": 7349, + "token_id": 7317, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "founding", - "token_id": 7350, + "token_id": 7318, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "partner", - "token_id": 7351, + "token_id": 7319, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "of", - "token_id": 7352, + "token_id": 7320, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "the", - "token_id": 7353, + "token_id": 7321, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "bar", - "token_id": 7354, + "token_id": 7322, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ",", - "token_id": 7355, + "token_id": 7323, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "forgtmenot", - "token_id": 7356, + "token_id": 7324, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ",", - "token_id": 7357, + "token_id": 7325, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "and", - "token_id": 7358, + "token_id": 7326, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "founding", - "token_id": 7359, + "token_id": 7327, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "partner", - "token_id": 7360, + "token_id": 7328, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "of", - "token_id": 7361, + "token_id": 7329, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "the", - "token_id": 7362, + "token_id": 7330, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "greek", - "token_id": 7363, + "token_id": 7331, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "restaurant", - "token_id": 7364, + "token_id": 7332, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "kiki", - "token_id": 7365, + "token_id": 7333, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "'", - "token_id": 7366, + "token_id": 7334, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "s", - "token_id": 7367, + "token_id": 7335, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ",", - "token_id": 7368, + "token_id": 7336, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "both", - "token_id": 7369, + "token_id": 7337, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "in", - "token_id": 7370, + "token_id": 7338, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "lower", - "token_id": 7371, + "token_id": 7339, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "manhattan", - "token_id": 7372, + "token_id": 7340, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7373, + "token_id": 7341, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7374, + "token_id": 7342, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7375, + "token_id": 7343, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7376, + "token_id": 7344, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "{{", - "token_id": 7377, + "token_id": 7345, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "cite", - "token_id": 7378, + "token_id": 7346, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "web", - "token_id": 7379, + "token_id": 7347, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7380, + "token_id": 7348, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "date", - "token_id": 7381, + "token_id": 7349, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7382, + "token_id": 7350, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "2019", - "token_id": 7383, + "token_id": 7351, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7384, + "token_id": 7352, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "02", - "token_id": 7385, + "token_id": 7353, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7386, + "token_id": 7354, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "20", - "token_id": 7387, + "token_id": 7355, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7388, + "token_id": 7356, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "title", - "token_id": 7389, + "token_id": 7357, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7390, + "token_id": 7358, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "forgtmenot", - "token_id": 7391, + "token_id": 7359, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "{{", - "token_id": 7392, + "token_id": 7360, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "!", - "token_id": 7393, + "token_id": 7361, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "}}", - "token_id": 7394, + "token_id": 7362, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "new", - "token_id": 7395, + "token_id": 7363, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "york", - "token_id": 7396, + "token_id": 7364, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "magazine", - "token_id": 7397, + "token_id": 7365, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "{{", - "token_id": 7398, + "token_id": 7366, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "!", - "token_id": 7399, + "token_id": 7367, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "}}", - "token_id": 7400, + "token_id": 7368, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "the", - "token_id": 7401, + "token_id": 7369, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "thousand", - "token_id": 7402, + "token_id": 7370, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "best", - "token_id": 7403, + "token_id": 7371, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7404, + "token_id": 7372, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "url", - "token_id": 7405, + "token_id": 7373, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7406, + "token_id": 7374, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "https", - "token_id": 7407, + "token_id": 7375, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ":", - "token_id": 7408, + "token_id": 7376, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7409, + "token_id": 7377, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7410, + "token_id": 7378, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "nymag", - "token_id": 7411, + "token_id": 7379, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7412, + "token_id": 7380, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "com", - "token_id": 7413, + "token_id": 7381, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7414, + "token_id": 7382, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "listings", - "token_id": 7415, + "token_id": 7383, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7416, + "token_id": 7384, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "bar", - "token_id": 7417, + "token_id": 7385, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7418, + "token_id": 7386, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "forgtmenot", - "token_id": 7419, + "token_id": 7387, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7420, + "token_id": 7388, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7421, + "token_id": 7389, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "access", - "token_id": 7422, + "token_id": 7390, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7423, + "token_id": 7391, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "date", - "token_id": 7424, + "token_id": 7392, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7425, + "token_id": 7393, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "2025", - "token_id": 7426, + "token_id": 7394, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7427, + "token_id": 7395, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "10", - "token_id": 7428, + "token_id": 7396, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7429, + "token_id": 7397, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "05", - "token_id": 7430, + "token_id": 7398, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7431, + "token_id": 7399, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "website", - "token_id": 7432, + "token_id": 7400, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7433, + "token_id": 7401, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "new", - "token_id": 7434, + "token_id": 7402, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "york", - "token_id": 7435, + "token_id": 7403, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "magazine", - "token_id": 7436, + "token_id": 7404, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7437, + "token_id": 7405, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "language", - "token_id": 7438, + "token_id": 7406, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7439, + "token_id": 7407, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "en", - "token_id": 7440, + "token_id": 7408, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "}}", - "token_id": 7441, + "token_id": 7409, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7442, + "token_id": 7410, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7443, + "token_id": 7411, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7444, + "token_id": 7412, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7445, + "token_id": 7413, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7446, + "token_id": 7414, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7447, + "token_id": 7415, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7448, + "token_id": 7416, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "{{", - "token_id": 7449, + "token_id": 7417, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "cite", - "token_id": 7450, + "token_id": 7418, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "web", - "token_id": 7451, + "token_id": 7419, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7452, + "token_id": 7420, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "title", - "token_id": 7453, + "token_id": 7421, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7454, + "token_id": 7422, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "adam", - "token_id": 7455, + "token_id": 7423, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7456, + "token_id": 7424, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7457, + "token_id": 7425, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "biography", - "token_id": 7458, + "token_id": 7426, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7459, + "token_id": 7427, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "url", - "token_id": 7460, + "token_id": 7428, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7461, + "token_id": 7429, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "https", - "token_id": 7462, + "token_id": 7430, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ":", - "token_id": 7463, + "token_id": 7431, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7464, + "token_id": 7432, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7465, + "token_id": 7433, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "trotterandsholer", - "token_id": 7466, + "token_id": 7434, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ".", - "token_id": 7467, + "token_id": 7435, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "com", - "token_id": 7468, + "token_id": 7436, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7469, + "token_id": 7437, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "artists", - "token_id": 7470, + "token_id": 7438, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7471, + "token_id": 7439, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "30", - "token_id": 7472, + "token_id": 7440, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7473, + "token_id": 7441, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "adam", - "token_id": 7474, + "token_id": 7442, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7475, + "token_id": 7443, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 7476, + "token_id": 7444, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7477, + "token_id": 7445, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "biography", - "token_id": 7478, + "token_id": 7446, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7479, + "token_id": 7447, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7480, + "token_id": 7448, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "access", - "token_id": 7481, + "token_id": 7449, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7482, + "token_id": 7450, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "date", - "token_id": 7483, + "token_id": 7451, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7484, + "token_id": 7452, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "2025", - "token_id": 7485, + "token_id": 7453, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7486, + "token_id": 7454, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "10", - "token_id": 7487, + "token_id": 7455, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "-", - "token_id": 7488, + "token_id": 7456, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "05", - "token_id": 7489, + "token_id": 7457, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7490, + "token_id": 7458, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "website", - "token_id": 7491, + "token_id": 7459, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7492, + "token_id": 7460, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "trotter", - "token_id": 7493, + "token_id": 7461, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "&", - "token_id": 7494, + "token_id": 7462, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "sholer", - "token_id": 7495, + "token_id": 7463, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "|", - "token_id": 7496, + "token_id": 7464, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "language", - "token_id": 7497, + "token_id": 7465, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "=", - "token_id": 7498, + "token_id": 7466, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "en", - "token_id": 7499, + "token_id": 7467, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "}}", - "token_id": 7500, + "token_id": 7468, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "<", - "token_id": 7501, + "token_id": 7469, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "/", - "token_id": 7502, + "token_id": 7470, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "ref", - "token_id": 7503, + "token_id": 7471, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": ">", - "token_id": 7504, + "token_id": 7472, "o_rev_id": 1315155427, "in": [], "out": [] }, { "str": "as", - "token_id": 7505, + "token_id": 7473, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "adam", - "token_id": 7506, + "token_id": 7474, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "lucas", - "token_id": 7507, + "token_id": 7475, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ",", - "token_id": 7508, + "token_id": 7476, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "the", - "token_id": 7509, + "token_id": 7477, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "artist", - "token_id": 7510, + "token_id": 7478, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "painted", - "token_id": 7511, + "token_id": 7479, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "colorful", - "token_id": 7512, + "token_id": 7480, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "and", - "token_id": 7513, + "token_id": 7481, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "geometric", - "token_id": 7514, + "token_id": 7482, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "murals", - "token_id": 7515, + "token_id": 7483, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "throughout", - "token_id": 7516, + "token_id": 7484, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "manhattan", - "token_id": 7517, + "token_id": 7485, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "that", - "token_id": 7518, + "token_id": 7486, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "evoke", - "token_id": 7519, + "token_id": 7487, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "the", - "token_id": 7520, + "token_id": 7488, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "aesthetic", - "token_id": 7521, + "token_id": 7489, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "of", - "token_id": 7522, + "token_id": 7490, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "american", - "token_id": 7523, + "token_id": 7491, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "painter", - "token_id": 7524, + "token_id": 7492, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "[[", - "token_id": 7525, + "token_id": 7493, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "stuart", - "token_id": 7526, + "token_id": 7494, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "davis", - "token_id": 7527, + "token_id": 7495, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "(", - "token_id": 7528, + "token_id": 7496, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "painter", - "token_id": 7529, + "token_id": 7497, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ")", - "token_id": 7530, + "token_id": 7498, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7531, + "token_id": 7499, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "stuart", - "token_id": 7532, + "token_id": 7500, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "davis", - "token_id": 7533, + "token_id": 7501, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "]]", - "token_id": 7534, + "token_id": 7502, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ".", - "token_id": 7535, + "token_id": 7503, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "name", - "token_id": 7536, + "token_id": 7504, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7537, + "token_id": 7505, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "\"", - "token_id": 7538, + "token_id": 7506, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ":", - "token_id": 7539, + "token_id": 7507, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "6", - "token_id": 7540, + "token_id": 7508, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "\"", - "token_id": 7541, + "token_id": 7509, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "/", - "token_id": 7542, + "token_id": 7510, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ">", - "token_id": 7543, + "token_id": 7511, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "<", - "token_id": 7544, + "token_id": 7512, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "ref", - "token_id": 7545, + "token_id": 7513, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ">", - "token_id": 7546, + "token_id": 7514, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "{{", - "token_id": 7547, + "token_id": 7515, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "cite", - "token_id": 7548, + "token_id": 7516, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "web", - "token_id": 7549, + "token_id": 7517, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7550, + "token_id": 7518, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "last", - "token_id": 7551, + "token_id": 7519, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7552, + "token_id": 7520, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "perkal", - "token_id": 7553, + "token_id": 7521, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7554, + "token_id": 7522, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "first", - "token_id": 7555, + "token_id": 7523, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7556, + "token_id": 7524, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "zuzu", - "token_id": 7557, + "token_id": 7525, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7558, + "token_id": 7526, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "date", - "token_id": 7559, + "token_id": 7527, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7560, + "token_id": 7528, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "2017", - "token_id": 7561, + "token_id": 7529, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7562, + "token_id": 7530, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "11", - "token_id": 7563, + "token_id": 7531, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7564, + "token_id": 7532, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "23", - "token_id": 7565, + "token_id": 7533, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7566, + "token_id": 7534, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "title", - "token_id": 7567, + "token_id": 7535, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7568, + "token_id": 7536, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "adam", - "token_id": 7569, + "token_id": 7537, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "lucas", - "token_id": 7570, + "token_id": 7538, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "aka", - "token_id": 7571, + "token_id": 7539, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 7572, + "token_id": 7540, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "art", - "token_id": 7573, + "token_id": 7541, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "exhibit", - "token_id": 7574, + "token_id": 7542, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "in", - "token_id": 7575, + "token_id": 7543, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "new", - "token_id": 7576, + "token_id": 7544, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "york", - "token_id": 7577, + "token_id": 7545, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "city", - "token_id": 7578, + "token_id": 7546, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7579, + "token_id": 7547, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "url", - "token_id": 7580, + "token_id": 7548, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7581, + "token_id": 7549, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "https", - "token_id": 7582, + "token_id": 7550, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ":", - "token_id": 7583, + "token_id": 7551, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "/", - "token_id": 7584, + "token_id": 7552, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "/", - "token_id": 7585, + "token_id": 7553, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "spratx", - "token_id": 7586, + "token_id": 7554, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ".", - "token_id": 7587, + "token_id": 7555, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "com", - "token_id": 7588, + "token_id": 7556, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "/", - "token_id": 7589, + "token_id": 7557, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "adam", - "token_id": 7590, + "token_id": 7558, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7591, + "token_id": 7559, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "lucas", - "token_id": 7592, + "token_id": 7560, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7593, + "token_id": 7561, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "aka", - "token_id": 7594, + "token_id": 7562, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7595, + "token_id": 7563, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 7596, + "token_id": 7564, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7597, + "token_id": 7565, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "art", - "token_id": 7598, + "token_id": 7566, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7599, + "token_id": 7567, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "exhibit", - "token_id": 7600, + "token_id": 7568, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7601, + "token_id": 7569, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "in", - "token_id": 7602, + "token_id": 7570, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7603, + "token_id": 7571, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "new", - "token_id": 7604, + "token_id": 7572, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7605, + "token_id": 7573, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "york", - "token_id": 7606, + "token_id": 7574, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7607, + "token_id": 7575, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "city", - "token_id": 7608, + "token_id": 7576, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "/", - "token_id": 7609, + "token_id": 7577, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7610, + "token_id": 7578, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "access", - "token_id": 7611, + "token_id": 7579, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7612, + "token_id": 7580, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "date", - "token_id": 7613, + "token_id": 7581, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7614, + "token_id": 7582, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "2025", - "token_id": 7615, + "token_id": 7583, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7616, + "token_id": 7584, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "10", - "token_id": 7617, + "token_id": 7585, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7618, + "token_id": 7586, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "05", - "token_id": 7619, + "token_id": 7587, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7620, + "token_id": 7588, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "website", - "token_id": 7621, + "token_id": 7589, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7622, + "token_id": 7590, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "spratx", - "token_id": 7623, + "token_id": 7591, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "|", - "token_id": 7624, + "token_id": 7592, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "language", - "token_id": 7625, + "token_id": 7593, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7626, + "token_id": 7594, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "en", - "token_id": 7627, + "token_id": 7595, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "-", - "token_id": 7628, + "token_id": 7596, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "us", - "token_id": 7629, + "token_id": 7597, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "}}", - "token_id": 7630, + "token_id": 7598, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "<", - "token_id": 7631, + "token_id": 7599, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "/", - "token_id": 7632, + "token_id": 7600, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "ref", - "token_id": 7633, + "token_id": 7601, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ">", - "token_id": 7634, + "token_id": 7602, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "<", - "token_id": 7635, + "token_id": 7603, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "ref", - "token_id": 7636, + "token_id": 7604, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "name", - "token_id": 7637, + "token_id": 7605, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "=", - "token_id": 7638, + "token_id": 7606, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "\"", - "token_id": 7639, + "token_id": 7607, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": ":", - "token_id": 7640, + "token_id": 7608, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "6", - "token_id": 7641, + "token_id": 7609, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "\"", - "token_id": 7642, + "token_id": 7610, "o_rev_id": 1315297410, "in": [], "out": [] }, { "str": "\"", - "token_id": 7643, + "token_id": 7611, "o_rev_id": 1315322668, "in": [], "out": [] }, { "str": "just", - "token_id": 7644, + "token_id": 7612, "o_rev_id": 1315322668, "in": [], "out": [] }, { "str": "\"", - "token_id": 7645, + "token_id": 7613, "o_rev_id": 1315322668, "in": [], "out": [] }, { "str": "consisted", - "token_id": 7646, + "token_id": 7614, "o_rev_id": 1315322668, "in": [], "out": [] }, { "str": "ist", - "token_id": 7647, + "token_id": 7615, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "[[", - "token_id": 7648, + "token_id": 7616, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "]]", - "token_id": 7649, + "token_id": 7617, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "'", - "token_id": 7650, + "token_id": 7618, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "serenity", - "token_id": 7651, + "token_id": 7619, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "'", - "token_id": 7652, + "token_id": 7620, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "[[", - "token_id": 7653, + "token_id": 7621, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "1983", - "token_id": 7654, + "token_id": 7622, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "births", - "token_id": 7655, + "token_id": 7623, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": "]]", - "token_id": 7656, + "token_id": 7624, "o_rev_id": 1315450763, "in": [], "out": [] }, { "str": ".", - "token_id": 7657, + "token_id": 7625, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 7658, + "token_id": 7626, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 7659, + "token_id": 7627, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 7660, + "token_id": 7628, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "{{", - "token_id": 7661, + "token_id": 7629, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "cite", - "token_id": 7662, + "token_id": 7630, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "news", - "token_id": 7663, + "token_id": 7631, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7664, + "token_id": 7632, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "last", - "token_id": 7665, + "token_id": 7633, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7666, + "token_id": 7634, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "leland", - "token_id": 7667, + "token_id": 7635, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7668, + "token_id": 7636, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "first", - "token_id": 7669, + "token_id": 7637, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7670, + "token_id": 7638, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "john", - "token_id": 7671, + "token_id": 7639, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7672, + "token_id": 7640, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 7673, + "token_id": 7641, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7674, + "token_id": 7642, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2014", - "token_id": 7675, + "token_id": 7643, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7676, + "token_id": 7644, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "02", - "token_id": 7677, + "token_id": 7645, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7678, + "token_id": 7646, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "14", - "token_id": 7679, + "token_id": 7647, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7680, + "token_id": 7648, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "title", - "token_id": 7681, + "token_id": 7649, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7682, + "token_id": 7650, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "a", - "token_id": 7683, + "token_id": 7651, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "parodist", - "token_id": 7684, + "token_id": 7652, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "who", - "token_id": 7685, + "token_id": 7653, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "calls", - "token_id": 7686, + "token_id": 7654, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "himself", - "token_id": 7687, + "token_id": 7655, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 7688, + "token_id": 7656, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7689, + "token_id": 7657, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "url", - "token_id": 7690, + "token_id": 7658, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7691, + "token_id": 7659, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7692, + "token_id": 7660, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "access", - "token_id": 7693, + "token_id": 7661, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7694, + "token_id": 7662, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 7695, + "token_id": 7663, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7696, + "token_id": 7664, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2016", - "token_id": 7697, + "token_id": 7665, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7698, + "token_id": 7666, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "12", - "token_id": 7699, + "token_id": 7667, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7700, + "token_id": 7668, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "14", - "token_id": 7701, + "token_id": 7669, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7702, + "token_id": 7670, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "newspaper", - "token_id": 7703, + "token_id": 7671, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7704, + "token_id": 7672, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "new", - "token_id": 7705, + "token_id": 7673, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "york", - "token_id": 7706, + "token_id": 7674, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "times", - "token_id": 7707, + "token_id": 7675, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7708, + "token_id": 7676, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "issn", - "token_id": 7709, + "token_id": 7677, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7710, + "token_id": 7678, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "0362", - "token_id": 7711, + "token_id": 7679, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7712, + "token_id": 7680, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "4331", - "token_id": 7713, + "token_id": 7681, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "}}", - "token_id": 7714, + "token_id": 7682, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 7715, + "token_id": 7683, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7716, + "token_id": 7684, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 7717, + "token_id": 7685, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 7718, + "token_id": 7686, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "visual", - "token_id": 7719, + "token_id": 7687, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "wordplay", - "token_id": 7720, + "token_id": 7688, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "and", - "token_id": 7721, + "token_id": 7689, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "celebrity", - "token_id": 7722, + "token_id": 7690, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ",", - "token_id": 7723, + "token_id": 7691, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ",", - "token_id": 7724, + "token_id": 7692, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "the", - "token_id": 7725, + "token_id": 7693, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "image", - "token_id": 7726, + "token_id": 7694, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "became", - "token_id": 7727, + "token_id": 7695, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "one", - "token_id": 7728, + "token_id": 7696, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "of", - "token_id": 7729, + "token_id": 7697, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "the", - "token_id": 7730, + "token_id": 7698, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "most", - "token_id": 7731, + "token_id": 7699, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "recognizable", - "token_id": 7732, + "token_id": 7700, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "pieces", - "token_id": 7733, + "token_id": 7701, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "of", - "token_id": 7734, + "token_id": 7702, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "art", - "token_id": 7735, + "token_id": 7703, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "created", - "token_id": 7736, + "token_id": 7704, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "in", - "token_id": 7737, + "token_id": 7705, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "response", - "token_id": 7738, + "token_id": 7706, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "to", - "token_id": 7739, + "token_id": 7707, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "the", - "token_id": 7740, + "token_id": 7708, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "election", - "token_id": 7741, + "token_id": 7709, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "season", - "token_id": 7742, + "token_id": 7710, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7743, + "token_id": 7711, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "{{", - "token_id": 7744, + "token_id": 7712, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "web", - "token_id": 7745, + "token_id": 7713, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7746, + "token_id": 7714, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 7747, + "token_id": 7715, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7748, + "token_id": 7716, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2017", - "token_id": 7749, + "token_id": 7717, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7750, + "token_id": 7718, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "01", - "token_id": 7751, + "token_id": 7719, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7752, + "token_id": 7720, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "09", - "token_id": 7753, + "token_id": 7721, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7754, + "token_id": 7722, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "title", - "token_id": 7755, + "token_id": 7723, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7756, + "token_id": 7724, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 7757, + "token_id": 7725, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 7758, + "token_id": 7726, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "s", - "token_id": 7759, + "token_id": 7727, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "viral", - "token_id": 7760, + "token_id": 7728, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 7761, + "token_id": 7729, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "dump", - "token_id": 7762, + "token_id": 7730, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "trump", - "token_id": 7763, + "token_id": 7731, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 7764, + "token_id": 7732, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "mural", - "token_id": 7765, + "token_id": 7733, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "is", - "token_id": 7766, + "token_id": 7734, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "no", - "token_id": 7767, + "token_id": 7735, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "more", - "token_id": 7768, + "token_id": 7736, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7769, + "token_id": 7737, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "url", - "token_id": 7770, + "token_id": 7738, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7771, + "token_id": 7739, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "https", - "token_id": 7772, + "token_id": 7740, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ":", - "token_id": 7773, + "token_id": 7741, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7774, + "token_id": 7742, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7775, + "token_id": 7743, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7776, + "token_id": 7744, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "artnet", - "token_id": 7777, + "token_id": 7745, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7778, + "token_id": 7746, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "com", - "token_id": 7779, + "token_id": 7747, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7780, + "token_id": 7748, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "art", - "token_id": 7781, + "token_id": 7749, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7782, + "token_id": 7750, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "world", - "token_id": 7783, + "token_id": 7751, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7784, + "token_id": 7752, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "archives", - "token_id": 7785, + "token_id": 7753, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7786, + "token_id": 7754, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 7787, + "token_id": 7755, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7788, + "token_id": 7756, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "dump", - "token_id": 7789, + "token_id": 7757, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7790, + "token_id": 7758, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "trump", - "token_id": 7791, + "token_id": 7759, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7792, + "token_id": 7760, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "mural", - "token_id": 7793, + "token_id": 7761, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7794, + "token_id": 7762, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "removed", - "token_id": 7795, + "token_id": 7763, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7796, + "token_id": 7764, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "809333", - "token_id": 7797, + "token_id": 7765, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7798, + "token_id": 7766, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "access", - "token_id": 7799, + "token_id": 7767, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7800, + "token_id": 7768, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 7801, + "token_id": 7769, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7802, + "token_id": 7770, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2025", - "token_id": 7803, + "token_id": 7771, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7804, + "token_id": 7772, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "10", - "token_id": 7805, + "token_id": 7773, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7806, + "token_id": 7774, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "14", - "token_id": 7807, + "token_id": 7775, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7808, + "token_id": 7776, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "website", - "token_id": 7809, + "token_id": 7777, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7810, + "token_id": 7778, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "artnet", - "token_id": 7811, + "token_id": 7779, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "news", - "token_id": 7812, + "token_id": 7780, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7813, + "token_id": 7781, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "language", - "token_id": 7814, + "token_id": 7782, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7815, + "token_id": 7783, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "en", - "token_id": 7816, + "token_id": 7784, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7817, + "token_id": 7785, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "us", - "token_id": 7818, + "token_id": 7786, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "}}", - "token_id": 7819, + "token_id": 7787, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 7820, + "token_id": 7788, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7821, + "token_id": 7789, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 7822, + "token_id": 7790, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 7823, + "token_id": 7791, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "days", - "token_id": 7824, + "token_id": 7792, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "before", - "token_id": 7825, + "token_id": 7793, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "trump", - "token_id": 7826, + "token_id": 7794, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "was", - "token_id": 7827, + "token_id": 7795, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "inaugurated", - "token_id": 7828, + "token_id": 7796, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "into", - "token_id": 7829, + "token_id": 7797, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "office", - "token_id": 7830, + "token_id": 7798, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "in", - "token_id": 7831, + "token_id": 7799, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2017", - "token_id": 7832, + "token_id": 7800, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ",", - "token_id": 7833, + "token_id": 7801, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 7834, + "token_id": 7802, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 7835, + "token_id": 7803, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "s", - "token_id": 7836, + "token_id": 7804, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "mural", - "token_id": 7837, + "token_id": 7805, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "in", - "token_id": 7838, + "token_id": 7806, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "new", - "token_id": 7839, + "token_id": 7807, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "york", - "token_id": 7840, + "token_id": 7808, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "was", - "token_id": 7841, + "token_id": 7809, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "removed", - "token_id": 7842, + "token_id": 7810, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "because", - "token_id": 7843, + "token_id": 7811, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "the", - "token_id": 7844, + "token_id": 7812, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "owners", - "token_id": 7845, + "token_id": 7813, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "of", - "token_id": 7846, + "token_id": 7814, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "the", - "token_id": 7847, + "token_id": 7815, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "building", - "token_id": 7848, + "token_id": 7816, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "were", - "token_id": 7849, + "token_id": 7817, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "nervous", - "token_id": 7850, + "token_id": 7818, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "to", - "token_id": 7851, + "token_id": 7819, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "keep", - "token_id": 7852, + "token_id": 7820, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "it", - "token_id": 7853, + "token_id": 7821, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "up", - "token_id": 7854, + "token_id": 7822, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "after", - "token_id": 7855, + "token_id": 7823, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "trump", - "token_id": 7856, + "token_id": 7824, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "was", - "token_id": 7857, + "token_id": 7825, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "sworn", - "token_id": 7858, + "token_id": 7826, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "into", - "token_id": 7859, + "token_id": 7827, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "office", - "token_id": 7860, + "token_id": 7828, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7861, + "token_id": 7829, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 7862, + "token_id": 7830, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 7863, + "token_id": 7831, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 7864, + "token_id": 7832, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "{{", - "token_id": 7865, + "token_id": 7833, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "cite", - "token_id": 7866, + "token_id": 7834, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "web", - "token_id": 7867, + "token_id": 7835, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7868, + "token_id": 7836, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "title", - "token_id": 7869, + "token_id": 7837, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7870, + "token_id": 7838, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "dump", - "token_id": 7871, + "token_id": 7839, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "trump", - "token_id": 7872, + "token_id": 7840, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "mural", - "token_id": 7873, + "token_id": 7841, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7874, + "token_id": 7842, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7875, + "token_id": 7843, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "https", - "token_id": 7876, + "token_id": 7844, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ":", - "token_id": 7877, + "token_id": 7845, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7878, + "token_id": 7846, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7879, + "token_id": 7847, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "www", - "token_id": 7880, + "token_id": 7848, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7881, + "token_id": 7849, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "tactics4change", - "token_id": 7882, + "token_id": 7850, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7883, + "token_id": 7851, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "org", - "token_id": 7884, + "token_id": 7852, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7885, + "token_id": 7853, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7886, + "token_id": 7854, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "access", - "token_id": 7887, + "token_id": 7855, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7888, + "token_id": 7856, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 7889, + "token_id": 7857, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7890, + "token_id": 7858, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2025", - "token_id": 7891, + "token_id": 7859, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7892, + "token_id": 7860, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "10", - "token_id": 7893, + "token_id": 7861, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7894, + "token_id": 7862, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "14", - "token_id": 7895, + "token_id": 7863, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7896, + "token_id": 7864, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "website", - "token_id": 7897, + "token_id": 7865, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7898, + "token_id": 7866, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "www", - "token_id": 7899, + "token_id": 7867, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7900, + "token_id": 7868, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "tactics4change", - "token_id": 7901, + "token_id": 7869, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7902, + "token_id": 7870, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "org", - "token_id": 7903, + "token_id": 7871, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "}}", - "token_id": 7904, + "token_id": 7872, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 7905, + "token_id": 7873, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7906, + "token_id": 7874, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 7907, + "token_id": 7875, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 7908, + "token_id": 7876, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "[[", - "token_id": 7909, + "token_id": 7877, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "new", - "token_id": 7910, + "token_id": 7878, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "york", - "token_id": 7911, + "token_id": 7879, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "nico", - "token_id": 7912, + "token_id": 7880, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7913, + "token_id": 7881, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "nicolas", - "token_id": 7914, + "token_id": 7882, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "heller", - "token_id": 7915, + "token_id": 7883, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "]]", - "token_id": 7916, + "token_id": 7884, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "filmed", - "token_id": 7917, + "token_id": 7885, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "and", - "token_id": 7918, + "token_id": 7886, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "directed", - "token_id": 7919, + "token_id": 7887, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "a", - "token_id": 7920, + "token_id": 7888, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "show", - "token_id": 7921, + "token_id": 7889, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "entitled", - "token_id": 7922, + "token_id": 7890, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 7923, + "token_id": 7891, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 7924, + "token_id": 7892, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "surplus", - "token_id": 7925, + "token_id": 7893, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "candy", - "token_id": 7926, + "token_id": 7894, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 7927, + "token_id": 7895, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 7928, + "token_id": 7896, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "to", - "token_id": 7929, + "token_id": 7897, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "document", - "token_id": 7930, + "token_id": 7898, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "the", - "token_id": 7931, + "token_id": 7899, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "installations", - "token_id": 7932, + "token_id": 7900, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "and", - "token_id": 7933, + "token_id": 7901, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "process", - "token_id": 7934, + "token_id": 7902, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7935, + "token_id": 7903, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 7936, + "token_id": 7904, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 7937, + "token_id": 7905, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 7938, + "token_id": 7906, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "{{", - "token_id": 7939, + "token_id": 7907, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "cite", - "token_id": 7940, + "token_id": 7908, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "web", - "token_id": 7941, + "token_id": 7909, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7942, + "token_id": 7910, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "last", - "token_id": 7943, + "token_id": 7911, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7944, + "token_id": 7912, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "laskow", - "token_id": 7945, + "token_id": 7913, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7946, + "token_id": 7914, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "first", - "token_id": 7947, + "token_id": 7915, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7948, + "token_id": 7916, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "sarah", - "token_id": 7949, + "token_id": 7917, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7950, + "token_id": 7918, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 7951, + "token_id": 7919, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7952, + "token_id": 7920, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2014", - "token_id": 7953, + "token_id": 7921, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7954, + "token_id": 7922, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "02", - "token_id": 7955, + "token_id": 7923, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7956, + "token_id": 7924, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "19", - "token_id": 7957, + "token_id": 7925, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7958, + "token_id": 7926, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "title", - "token_id": 7959, + "token_id": 7927, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7960, + "token_id": 7928, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "watch", - "token_id": 7961, + "token_id": 7929, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "40", - "token_id": 7962, + "token_id": 7930, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "artists", - "token_id": 7963, + "token_id": 7931, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "turn", - "token_id": 7964, + "token_id": 7932, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "this", - "token_id": 7965, + "token_id": 7933, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "empty", - "token_id": 7966, + "token_id": 7934, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "building", - "token_id": 7967, + "token_id": 7935, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "into", - "token_id": 7968, + "token_id": 7936, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "an", - "token_id": 7969, + "token_id": 7937, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "illegal", - "token_id": 7970, + "token_id": 7938, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "graffiti", - "token_id": 7971, + "token_id": 7939, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "paradise", - "token_id": 7972, + "token_id": 7940, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 7973, + "token_id": 7941, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "url", - "token_id": 7974, + "token_id": 7942, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 7975, + "token_id": 7943, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "https", - "token_id": 7976, + "token_id": 7944, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ":", - "token_id": 7977, + "token_id": 7945, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7978, + "token_id": 7946, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7979, + "token_id": 7947, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "grist", - "token_id": 7980, + "token_id": 7948, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 7981, + "token_id": 7949, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "org", - "token_id": 7982, + "token_id": 7950, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7983, + "token_id": 7951, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "living", - "token_id": 7984, + "token_id": 7952, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 7985, + "token_id": 7953, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "watch", - "token_id": 7986, + "token_id": 7954, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7987, + "token_id": 7955, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "40", - "token_id": 7988, + "token_id": 7956, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7989, + "token_id": 7957, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "artists", - "token_id": 7990, + "token_id": 7958, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7991, + "token_id": 7959, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "turn", - "token_id": 7992, + "token_id": 7960, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7993, + "token_id": 7961, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "this", - "token_id": 7994, + "token_id": 7962, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7995, + "token_id": 7963, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "empty", - "token_id": 7996, + "token_id": 7964, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7997, + "token_id": 7965, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "building", - "token_id": 7998, + "token_id": 7966, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 7999, + "token_id": 7967, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "into", - "token_id": 8000, + "token_id": 7968, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8001, + "token_id": 7969, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "an", - "token_id": 8002, + "token_id": 7970, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8003, + "token_id": 7971, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "illegal", - "token_id": 8004, + "token_id": 7972, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8005, + "token_id": 7973, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "graffiti", - "token_id": 8006, + "token_id": 7974, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8007, + "token_id": 7975, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "paradise", - "token_id": 8008, + "token_id": 7976, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8009, + "token_id": 7977, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8010, + "token_id": 7978, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "access", - "token_id": 8011, + "token_id": 7979, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8012, + "token_id": 7980, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 8013, + "token_id": 7981, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8014, + "token_id": 7982, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2025", - "token_id": 8015, + "token_id": 7983, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8016, + "token_id": 7984, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "10", - "token_id": 8017, + "token_id": 7985, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8018, + "token_id": 7986, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "14", - "token_id": 8019, + "token_id": 7987, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8020, + "token_id": 7988, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "website", - "token_id": 8021, + "token_id": 7989, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8022, + "token_id": 7990, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "grist", - "token_id": 8023, + "token_id": 7991, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8024, + "token_id": 7992, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "language", - "token_id": 8025, + "token_id": 7993, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8026, + "token_id": 7994, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "en", - "token_id": 8027, + "token_id": 7995, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8028, + "token_id": 7996, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "us", - "token_id": 8029, + "token_id": 7997, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "}}", - "token_id": 8030, + "token_id": 7998, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 8031, + "token_id": 7999, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8032, + "token_id": 8000, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 8033, + "token_id": 8001, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 8034, + "token_id": 8002, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 8035, + "token_id": 8003, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 8036, + "token_id": 8004, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 8037, + "token_id": 8005, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "{{", - "token_id": 8038, + "token_id": 8006, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "cite", - "token_id": 8039, + "token_id": 8007, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "web", - "token_id": 8040, + "token_id": 8008, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8041, + "token_id": 8009, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "last", - "token_id": 8042, + "token_id": 8010, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8043, + "token_id": 8011, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "heller", - "token_id": 8044, + "token_id": 8012, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8045, + "token_id": 8013, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "first", - "token_id": 8046, + "token_id": 8014, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8047, + "token_id": 8015, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "steven", - "token_id": 8048, + "token_id": 8016, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8049, + "token_id": 8017, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 8050, + "token_id": 8018, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8051, + "token_id": 8019, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2014", - "token_id": 8052, + "token_id": 8020, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8053, + "token_id": 8021, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "01", - "token_id": 8054, + "token_id": 8022, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8055, + "token_id": 8023, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "13", - "token_id": 8056, + "token_id": 8024, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8057, + "token_id": 8025, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "title", - "token_id": 8058, + "token_id": 8026, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8059, + "token_id": 8027, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "home", - "token_id": 8060, + "token_id": 8028, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "alone", - "token_id": 8061, + "token_id": 8029, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "with", - "token_id": 8062, + "token_id": 8030, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "hanksy", - "token_id": 8063, + "token_id": 8031, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "’", - "token_id": 8064, + "token_id": 8032, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "s", - "token_id": 8065, + "token_id": 8033, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "house", - "token_id": 8066, + "token_id": 8034, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "painters", - "token_id": 8067, + "token_id": 8035, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8068, + "token_id": 8036, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "url", - "token_id": 8069, + "token_id": 8037, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8070, + "token_id": 8038, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "https", - "token_id": 8071, + "token_id": 8039, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ":", - "token_id": 8072, + "token_id": 8040, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8073, + "token_id": 8041, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8074, + "token_id": 8042, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "www", - "token_id": 8075, + "token_id": 8043, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8076, + "token_id": 8044, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "printmag", - "token_id": 8077, + "token_id": 8045, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8078, + "token_id": 8046, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "com", - "token_id": 8079, + "token_id": 8047, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8080, + "token_id": 8048, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "daily", - "token_id": 8081, + "token_id": 8049, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8082, + "token_id": 8050, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "heller", - "token_id": 8083, + "token_id": 8051, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8084, + "token_id": 8052, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "hanksys", - "token_id": 8085, + "token_id": 8053, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8086, + "token_id": 8054, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "house", - "token_id": 8087, + "token_id": 8055, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8088, + "token_id": 8056, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "painters", - "token_id": 8089, + "token_id": 8057, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8090, + "token_id": 8058, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8091, + "token_id": 8059, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "access", - "token_id": 8092, + "token_id": 8060, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8093, + "token_id": 8061, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 8094, + "token_id": 8062, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8095, + "token_id": 8063, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2025", - "token_id": 8096, + "token_id": 8064, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8097, + "token_id": 8065, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "10", - "token_id": 8098, + "token_id": 8066, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8099, + "token_id": 8067, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "14", - "token_id": 8100, + "token_id": 8068, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8101, + "token_id": 8069, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "website", - "token_id": 8102, + "token_id": 8070, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8103, + "token_id": 8071, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "print", - "token_id": 8104, + "token_id": 8072, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "magazine", - "token_id": 8105, + "token_id": 8073, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8106, + "token_id": 8074, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "language", - "token_id": 8107, + "token_id": 8075, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8108, + "token_id": 8076, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "en", - "token_id": 8109, + "token_id": 8077, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8110, + "token_id": 8078, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "us", - "token_id": 8111, + "token_id": 8079, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "}}", - "token_id": 8112, + "token_id": 8080, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 8113, + "token_id": 8081, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8114, + "token_id": 8082, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 8115, + "token_id": 8083, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 8116, + "token_id": 8084, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8117, + "token_id": 8085, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8118, + "token_id": 8086, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8119, + "token_id": 8087, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8120, + "token_id": 8088, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8121, + "token_id": 8089, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "serenity", - "token_id": 8122, + "token_id": 8090, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "now", - "token_id": 8123, + "token_id": 8091, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8124, + "token_id": 8092, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8125, + "token_id": 8093, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ",", - "token_id": 8126, + "token_id": 8094, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2025", - "token_id": 8127, + "token_id": 8095, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8128, + "token_id": 8096, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8129, + "token_id": 8097, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8130, + "token_id": 8098, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8131, + "token_id": 8099, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8132, + "token_id": 8100, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8133, + "token_id": 8101, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "additional", - "token_id": 8134, + "token_id": 8102, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8135, + "token_id": 8103, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8136, + "token_id": 8104, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8137, + "token_id": 8105, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "in", - "token_id": 8138, + "token_id": 8106, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2022", - "token_id": 8139, + "token_id": 8107, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ",", - "token_id": 8140, + "token_id": 8108, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "trotter", - "token_id": 8141, + "token_id": 8109, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "&", - "token_id": 8142, + "token_id": 8110, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "sholer", - "token_id": 8143, + "token_id": 8111, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "gallery", - "token_id": 8144, + "token_id": 8112, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "in", - "token_id": 8145, + "token_id": 8113, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "new", - "token_id": 8146, + "token_id": 8114, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "york", - "token_id": 8147, + "token_id": 8115, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "mounted", - "token_id": 8148, + "token_id": 8116, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "a", - "token_id": 8149, + "token_id": 8117, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "solo", - "token_id": 8150, + "token_id": 8118, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 8151, + "token_id": 8119, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "of", - "token_id": 8152, + "token_id": 8120, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 8153, + "token_id": 8121, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8154, + "token_id": 8122, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "s", - "token_id": 8155, + "token_id": 8123, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "work", - "token_id": 8156, + "token_id": 8124, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ",", - "token_id": 8157, + "token_id": 8125, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "entitled", - "token_id": 8158, + "token_id": 8126, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8159, + "token_id": 8127, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8160, + "token_id": 8128, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "retrospective", - "token_id": 8161, + "token_id": 8129, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8162, + "token_id": 8130, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8163, + "token_id": 8131, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8164, + "token_id": 8132, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 8165, + "token_id": 8133, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 8166, + "token_id": 8134, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 8167, + "token_id": 8135, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "{{", - "token_id": 8168, + "token_id": 8136, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "cite", - "token_id": 8169, + "token_id": 8137, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "web", - "token_id": 8170, + "token_id": 8138, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8171, + "token_id": 8139, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "title", - "token_id": 8172, + "token_id": 8140, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8173, + "token_id": 8141, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "retrospective", - "token_id": 8174, + "token_id": 8142, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8175, + "token_id": 8143, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "url", - "token_id": 8176, + "token_id": 8144, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8177, + "token_id": 8145, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "https", - "token_id": 8178, + "token_id": 8146, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ":", - "token_id": 8179, + "token_id": 8147, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8180, + "token_id": 8148, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8181, + "token_id": 8149, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "www", - "token_id": 8182, + "token_id": 8150, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8183, + "token_id": 8151, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "artsy", - "token_id": 8184, + "token_id": 8152, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8185, + "token_id": 8153, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "net", - "token_id": 8186, + "token_id": 8154, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8187, + "token_id": 8155, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "show", - "token_id": 8188, + "token_id": 8156, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8189, + "token_id": 8157, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "trotter", - "token_id": 8190, + "token_id": 8158, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8191, + "token_id": 8159, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "and", - "token_id": 8192, + "token_id": 8160, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8193, + "token_id": 8161, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "sholer", - "token_id": 8194, + "token_id": 8162, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8195, + "token_id": 8163, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "retrospective", - "token_id": 8196, + "token_id": 8164, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8197, + "token_id": 8165, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "access", - "token_id": 8198, + "token_id": 8166, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8199, + "token_id": 8167, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 8200, + "token_id": 8168, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8201, + "token_id": 8169, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2025", - "token_id": 8202, + "token_id": 8170, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8203, + "token_id": 8171, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "10", - "token_id": 8204, + "token_id": 8172, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8205, + "token_id": 8173, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "14", - "token_id": 8206, + "token_id": 8174, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8207, + "token_id": 8175, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "website", - "token_id": 8208, + "token_id": 8176, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8209, + "token_id": 8177, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "artsy", - "token_id": 8210, + "token_id": 8178, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8211, + "token_id": 8179, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "language", - "token_id": 8212, + "token_id": 8180, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8213, + "token_id": 8181, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "en", - "token_id": 8214, + "token_id": 8182, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "}}", - "token_id": 8215, + "token_id": 8183, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 8216, + "token_id": 8184, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8217, + "token_id": 8185, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 8218, + "token_id": 8186, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 8219, + "token_id": 8187, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "the", - "token_id": 8220, + "token_id": 8188, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "following", - "token_id": 8221, + "token_id": 8189, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "year", - "token_id": 8222, + "token_id": 8190, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ",", - "token_id": 8223, + "token_id": 8191, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 8224, + "token_id": 8192, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8225, + "token_id": 8193, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "s", - "token_id": 8226, + "token_id": 8194, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "work", - "token_id": 8227, + "token_id": 8195, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "was", - "token_id": 8228, + "token_id": 8196, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "included", - "token_id": 8229, + "token_id": 8197, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "in", - "token_id": 8230, + "token_id": 8198, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "a", - "token_id": 8231, + "token_id": 8199, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "group", - "token_id": 8232, + "token_id": 8200, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 8233, + "token_id": 8201, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "entitled", - "token_id": 8234, + "token_id": 8202, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8235, + "token_id": 8203, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8236, + "token_id": 8204, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "vapor", - "token_id": 8237, + "token_id": 8205, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "and", - "token_id": 8238, + "token_id": 8206, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "light", - "token_id": 8239, + "token_id": 8207, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8240, + "token_id": 8208, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "'", - "token_id": 8241, + "token_id": 8209, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "at", - "token_id": 8242, + "token_id": 8210, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "the", - "token_id": 8243, + "token_id": 8211, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "[[", - "token_id": 8244, + "token_id": 8212, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "shin", - "token_id": 8245, + "token_id": 8213, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "gallery", - "token_id": 8246, + "token_id": 8214, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "]]", - "token_id": 8247, + "token_id": 8215, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "in", - "token_id": 8248, + "token_id": 8216, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "[[", - "token_id": 8249, + "token_id": 8217, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "seoul", - "token_id": 8250, + "token_id": 8218, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8251, + "token_id": 8219, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "seoul", - "token_id": 8252, + "token_id": 8220, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ",", - "token_id": 8253, + "token_id": 8221, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "korea", - "token_id": 8254, + "token_id": 8222, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "]]", - "token_id": 8255, + "token_id": 8223, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8256, + "token_id": 8224, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 8257, + "token_id": 8225, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 8258, + "token_id": 8226, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 8259, + "token_id": 8227, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "{{", - "token_id": 8260, + "token_id": 8228, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "cite", - "token_id": 8261, + "token_id": 8229, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "web", - "token_id": 8262, + "token_id": 8230, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8263, + "token_id": 8231, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "title", - "token_id": 8264, + "token_id": 8232, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8265, + "token_id": 8233, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "shin", - "token_id": 8266, + "token_id": 8234, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "gallery", - "token_id": 8267, + "token_id": 8235, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8268, + "token_id": 8236, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "url", - "token_id": 8269, + "token_id": 8237, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8270, + "token_id": 8238, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "http", - "token_id": 8271, + "token_id": 8239, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ":", - "token_id": 8272, + "token_id": 8240, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8273, + "token_id": 8241, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8274, + "token_id": 8242, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "www", - "token_id": 8275, + "token_id": 8243, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8276, + "token_id": 8244, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "shin", - "token_id": 8277, + "token_id": 8245, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8278, + "token_id": 8246, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "gallery", - "token_id": 8279, + "token_id": 8247, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8280, + "token_id": 8248, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "com", - "token_id": 8281, + "token_id": 8249, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8282, + "token_id": 8250, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "exhibition", - "token_id": 8283, + "token_id": 8251, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8284, + "token_id": 8252, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "?", - "token_id": 8285, + "token_id": 8253, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ex", - "token_id": 8286, + "token_id": 8254, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "_", - "token_id": 8287, + "token_id": 8255, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "cd", - "token_id": 8288, + "token_id": 8256, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8289, + "token_id": 8257, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "132", - "token_id": 8290, + "token_id": 8258, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "&", - "token_id": 8291, + "token_id": 8259, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "view", - "token_id": 8292, + "token_id": 8260, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "_", - "token_id": 8293, + "token_id": 8261, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "fg", - "token_id": 8294, + "token_id": 8262, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8295, + "token_id": 8263, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "p", - "token_id": 8296, + "token_id": 8264, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "&", - "token_id": 8297, + "token_id": 8265, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "site", - "token_id": 8298, + "token_id": 8266, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "_", - "token_id": 8299, + "token_id": 8267, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "gb", - "token_id": 8300, + "token_id": 8268, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8301, + "token_id": 8269, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2", - "token_id": 8302, + "token_id": 8270, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8303, + "token_id": 8271, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "access", - "token_id": 8304, + "token_id": 8272, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8305, + "token_id": 8273, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "date", - "token_id": 8306, + "token_id": 8274, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8307, + "token_id": 8275, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "2025", - "token_id": 8308, + "token_id": 8276, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8309, + "token_id": 8277, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "10", - "token_id": 8310, + "token_id": 8278, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8311, + "token_id": 8279, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "14", - "token_id": 8312, + "token_id": 8280, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "|", - "token_id": 8313, + "token_id": 8281, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "website", - "token_id": 8314, + "token_id": 8282, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8315, + "token_id": 8283, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "www", - "token_id": 8316, + "token_id": 8284, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8317, + "token_id": 8285, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "shin", - "token_id": 8318, + "token_id": 8286, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "-", - "token_id": 8319, + "token_id": 8287, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "gallery", - "token_id": 8320, + "token_id": 8288, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ".", - "token_id": 8321, + "token_id": 8289, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "com", - "token_id": 8322, + "token_id": 8290, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "}}", - "token_id": 8323, + "token_id": 8291, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "<", - "token_id": 8324, + "token_id": 8292, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "/", - "token_id": 8325, + "token_id": 8293, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "ref", - "token_id": 8326, + "token_id": 8294, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": ">", - "token_id": 8327, + "token_id": 8295, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8328, + "token_id": 8296, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8329, + "token_id": 8297, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8330, + "token_id": 8298, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8331, + "token_id": 8299, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8332, + "token_id": 8300, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "=", - "token_id": 8333, + "token_id": 8301, "o_rev_id": 1316823741, "in": [], "out": [] }, { "str": "{{", - "token_id": 8334, + "token_id": 8302, "o_rev_id": 1350407953, "in": [], "out": [] }, { "str": "defaultsort", - "token_id": 8335, + "token_id": 8303, "o_rev_id": 1350407953, "in": [], "out": [] }, { "str": ":", - "token_id": 8336, + "token_id": 8304, "o_rev_id": 1350407953, "in": [], "out": [] }, { "str": "himebauch", - "token_id": 8337, + "token_id": 8305, "o_rev_id": 1350407953, "in": [], "out": [] }, { "str": ",", - "token_id": 8338, + "token_id": 8306, "o_rev_id": 1350407953, "in": [], "out": [] }, { "str": "adam", - "token_id": 8339, + "token_id": 8307, "o_rev_id": 1350407953, "in": [], "out": [] }, { "str": "}}", - "token_id": 8340, + "token_id": 8308, "o_rev_id": 1350407953, "in": [], "out": [] diff --git a/tests/fixtures/luis_donaldo_colosio_riojas_golden.json b/tests/fixtures/luis_donaldo_colosio_riojas_golden.json new file mode 100644 index 0000000..0f78d7d --- /dev/null +++ b/tests/fixtures/luis_donaldo_colosio_riojas_golden.json @@ -0,0 +1,50728 @@ +[ + { + "str": "{{", + "token_id": 0, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "short", + "token_id": 1, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "description", + "token_id": 2, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 4, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "politician", + "token_id": 5, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 6, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 7, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "family", + "token_id": 8, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 9, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "hatnote", + "token_id": 10, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 11, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 12, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 13, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 14, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 15, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "lang", + "token_id": 16, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 17, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "spanish", + "token_id": 18, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 19, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 20, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "infobox", + "token_id": 21, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "officeholder", + "token_id": 22, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 23, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 24, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 25, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 26, + "o_rev_id": 1010129207, + "in": [ + 1138718298 + ], + "out": [ + 1138718241 + ] + }, + { + "str": "donaldo", + "token_id": 27, + "o_rev_id": 1010129207, + "in": [ + 1138718298 + ], + "out": [ + 1138718241 + ] + }, + { + "str": "colosio", + "token_id": 28, + "o_rev_id": 1010129207, + "in": [ + 1138718298 + ], + "out": [ + 1138718241 + ] + }, + { + "str": "riojas", + "token_id": 29, + "o_rev_id": 1010129207, + "in": [ + 1138718298 + ], + "out": [ + 1138718241 + ] + }, + { + "str": "|", + "token_id": 30, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "image", + "token_id": 31, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 32, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "diputado", + "token_id": 33, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 34, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 35, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 36, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 37, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 38, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "jpg", + "token_id": 39, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 40, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "office", + "token_id": 41, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 42, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 43, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "term", + "token_id": 44, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 45, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "start", + "token_id": 46, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1028074078 + ] + }, + { + "str": "=", + "token_id": 47, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 48, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "term", + "token_id": 49, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 50, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "end", + "token_id": 51, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 52, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 53, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "president", + "token_id": 54, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012864421 + ] + }, + { + "str": "=", + "token_id": 55, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 56, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "predecessor", + "token_id": 57, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "=", + "token_id": 58, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "|", + "token_id": 59, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "successor", + "token_id": 60, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 61, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 62, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1028074078 + ] + }, + { + "str": "office2", + "token_id": 63, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1028074078 + ] + }, + { + "str": "=", + "token_id": 64, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1028074078 + ] + }, + { + "str": "|", + "token_id": 65, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "term", + "token_id": 66, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "_", + "token_id": 67, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "start2", + "token_id": 68, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "=", + "token_id": 69, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "|", + "token_id": 70, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "term", + "token_id": 71, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "_", + "token_id": 72, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "end2", + "token_id": 73, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "=", + "token_id": 74, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078, + 1347221443 + ] + }, + { + "str": "|", + "token_id": 75, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1028074078 + ] + }, + { + "str": "predecessor2", + "token_id": 76, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1028074078 + ] + }, + { + "str": "=", + "token_id": 77, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1028074078 + ] + }, + { + "str": "|", + "token_id": 78, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "successor2", + "token_id": 79, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "=", + "token_id": 80, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1028074078 + ] + }, + { + "str": "|", + "token_id": 81, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1227424767 + ] + }, + { + "str": "office3", + "token_id": 82, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1227424767 + ] + }, + { + "str": "=", + "token_id": 83, + "o_rev_id": 1010129207, + "in": [ + 1234010057 + ], + "out": [ + 1227424767 + ] + }, + { + "str": "|", + "token_id": 84, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "term", + "token_id": 85, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "_", + "token_id": 86, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "start3", + "token_id": 87, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "=", + "token_id": 88, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "|", + "token_id": 89, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "term", + "token_id": 90, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "_", + "token_id": 91, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "end3", + "token_id": 92, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "=", + "token_id": 93, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "|", + "token_id": 94, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "predecessor3", + "token_id": 95, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "=", + "token_id": 96, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "|", + "token_id": 97, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "successor3", + "token_id": 98, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "=", + "token_id": 99, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "|", + "token_id": 100, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "office4", + "token_id": 101, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 102, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 103, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "term", + "token_id": 104, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "_", + "token_id": 105, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "start4", + "token_id": 106, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 107, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 108, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1347221443 + ] + }, + { + "str": "term", + "token_id": 109, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "_", + "token_id": 110, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "end4", + "token_id": 111, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 112, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1347221443 + ] + }, + { + "str": "|", + "token_id": 113, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "predecessor4", + "token_id": 114, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 115, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "|", + "token_id": 116, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "successor4", + "token_id": 117, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 118, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "|", + "token_id": 119, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012864421 + ] + }, + { + "str": "birth", + "token_id": 120, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012864421 + ] + }, + { + "str": "_", + "token_id": 121, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012864421 + ] + }, + { + "str": "name", + "token_id": 122, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012864421 + ] + }, + { + "str": "=", + "token_id": 123, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012864421 + ] + }, + { + "str": "luis", + "token_id": 124, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 125, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012864421 + ] + }, + { + "str": "colosio", + "token_id": 126, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 127, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012864421 + ] + }, + { + "str": "|", + "token_id": 128, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "birth", + "token_id": 129, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 130, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 131, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 132, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 133, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012860664 + ] + }, + { + "str": "birth", + "token_id": 134, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 135, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 136, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012860664 + ] + }, + { + "str": "1986", + "token_id": 137, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1010154288 + ] + }, + { + "str": "|", + "token_id": 138, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012860664 + ] + }, + { + "str": "7", + "token_id": 139, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 140, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012860664 + ] + }, + { + "str": "31", + "token_id": 141, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 142, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012860664 + ] + }, + { + "str": "df", + "token_id": 143, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 144, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012860664 + ] + }, + { + "str": "y", + "token_id": 145, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 146, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1012860664 + ] + }, + { + "str": "|", + "token_id": 147, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "birth", + "token_id": 148, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 149, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "place", + "token_id": 150, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 151, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 152, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "magdalena", + "token_id": 153, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 154, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "kino", + "token_id": 155, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 156, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 157, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 158, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "sonora", + "token_id": 159, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 160, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 161, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 162, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 163, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 164, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 165, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "death", + "token_id": 166, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 167, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 168, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 169, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 170, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "death", + "token_id": 171, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 172, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "place", + "token_id": 173, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 174, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 175, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "resting", + "token_id": 176, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 177, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "place", + "token_id": 178, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 179, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 180, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "occupation", + "token_id": 181, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 182, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "lawyer", + "token_id": 183, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 184, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "politician", + "token_id": 185, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "|", + "token_id": 186, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "party", + "token_id": 187, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 188, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 189, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "movimiento", + "token_id": 190, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "ciudadano", + "token_id": 191, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "]]", + "token_id": 192, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "|", + "token_id": 193, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "spouse", + "token_id": 194, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 195, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 196, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "children", + "token_id": 197, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 198, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 199, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 200, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 201, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 202, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 203, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 204, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 205, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 206, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 207, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 208, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 209, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 210, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "born", + "token_id": 211, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "31", + "token_id": 212, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "july", + "token_id": 213, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "1986", + "token_id": 214, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1010154288 + ] + }, + { + "str": ")", + "token_id": 215, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 216, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 217, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 218, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1069133723 + ] + }, + { + "str": "mexico", + "token_id": 219, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1069133723 + ] + }, + { + "str": "|", + "token_id": 220, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1069133723 + ] + }, + { + "str": "mexican", + "token_id": 221, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 222, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1069133723 + ] + }, + { + "str": "lawyer", + "token_id": 223, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 224, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "politician", + "token_id": 225, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 226, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "he", + "token_id": 227, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 228, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 229, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "son", + "token_id": 230, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 231, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 232, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 233, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 234, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 235, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 236, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 237, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 238, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "[[", + "token_id": 239, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "institutional", + "token_id": 240, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "revolutionary", + "token_id": 241, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "party", + "token_id": 242, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "|", + "token_id": 243, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "pri", + "token_id": 244, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "]]", + "token_id": 245, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "presidential", + "token_id": 246, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "candidate", + "token_id": 247, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 248, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "who", + "token_id": 249, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 250, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 251, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "assassination", + "token_id": 252, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "|", + "token_id": 253, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "assassinated", + "token_id": 254, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 255, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "at", + "token_id": 256, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 257, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "campaign", + "token_id": 258, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "rally", + "token_id": 259, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 260, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 261, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "tijuana", + "token_id": 262, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 263, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "during", + "token_id": 264, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "the", + "token_id": 265, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "mexican", + "token_id": 266, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "presidential", + "token_id": 267, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "campaign", + "token_id": 268, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "of", + "token_id": 269, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "1994", + "token_id": 270, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": ".", + "token_id": 271, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 272, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1065761759 + ] + }, + { + "str": "january", + "token_id": 273, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 274, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 275, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 276, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 277, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "registered", + "token_id": 278, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 279, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 280, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "pre", + "token_id": 281, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "-", + "token_id": 282, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "candidate", + "token_id": 283, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "for", + "token_id": 284, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 285, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "of", + "token_id": 286, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 287, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1010339290 + ] + }, + { + "str": "monterrey", + "token_id": 288, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 289, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1010339290 + ] + }, + { + "str": "for", + "token_id": 290, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "the", + "token_id": 291, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "2021", + "token_id": 292, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "elections", + "token_id": 293, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ".", + "token_id": 294, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 295, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "was", + "token_id": 296, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "a", + "token_id": 297, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "deputy", + "token_id": 298, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1133319965 + ] + }, + { + "str": "in", + "token_id": 299, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 300, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 301, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "congress", + "token_id": 302, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 303, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 304, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 305, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 306, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 307, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "1", + "token_id": 308, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "september", + "token_id": 309, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "2018", + "token_id": 310, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 311, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "1", + "token_id": 312, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "february", + "token_id": 313, + "o_rev_id": 1010129207, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "2021", + "token_id": 314, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 315, + "o_rev_id": 1010129207, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 316, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "authority", + "token_id": 317, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "control", + "token_id": 318, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 319, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 320, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "defaultsort", + "token_id": 321, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 322, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 323, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 324, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 325, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 326, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 327, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 328, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 329, + "o_rev_id": 1010131220, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "category", + "token_id": 330, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 331, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "1986", + "token_id": 332, + "o_rev_id": 1010131220, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "births", + "token_id": 333, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 334, + "o_rev_id": 1010131220, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "[[", + "token_id": 335, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 336, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 337, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 338, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "institute", + "token_id": 339, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 340, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "technology", + "token_id": 341, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 342, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "higher", + "token_id": 343, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "education", + "token_id": 344, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "alumni", + "token_id": 345, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 346, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 347, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 348, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 349, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "politicians", + "token_id": 350, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 351, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "sonora", + "token_id": 352, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 353, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 354, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 355, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 356, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "21st", + "token_id": 357, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 358, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "century", + "token_id": 359, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 360, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "politicians", + "token_id": 361, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 362, + "o_rev_id": 1010131220, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 363, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 364, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "references", + "token_id": 365, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 366, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 367, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 368, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "references", + "token_id": 369, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 370, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 371, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 372, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 373, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "further", + "token_id": 374, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "reading", + "token_id": 375, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 376, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 377, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 378, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 379, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "jorge", + "token_id": 380, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "g", + "token_id": 381, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 382, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "castañeda", + "token_id": 383, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 384, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "castañeda", + "token_id": 385, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 386, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "jorge", + "token_id": 387, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "g", + "token_id": 388, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 389, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 390, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 391, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 392, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "perpetuating", + "token_id": 393, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "power", + "token_id": 394, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 395, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "how", + "token_id": 396, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 397, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "presidents", + "token_id": 398, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 399, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "chosen", + "token_id": 400, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 401, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 402, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 403, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "new", + "token_id": 404, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "york", + "token_id": 405, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 406, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 407, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "new", + "token_id": 408, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "press", + "token_id": 409, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "2000", + "token_id": 410, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 411, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 412, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "isbn", + "token_id": 413, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 414, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "1", + "token_id": 415, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 416, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "56584", + "token_id": 417, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 418, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "616", + "token_id": 419, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 420, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "8", + "token_id": 421, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 422, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 423, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 424, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "enrique", + "token_id": 425, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "krauze", + "token_id": 426, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 427, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "krauze", + "token_id": 428, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 429, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "enrique", + "token_id": 430, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 431, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 432, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 433, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 434, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 435, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 436, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "biography", + "token_id": 437, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 438, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "power", + "token_id": 439, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 440, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 441, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 442, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "new", + "token_id": 443, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "york", + "token_id": 444, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 445, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "harpercollins", + "token_id": 446, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "1997", + "token_id": 447, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 448, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 449, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "isbn", + "token_id": 450, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 451, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "0", + "token_id": 452, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 453, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 454, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 455, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "016325", + "token_id": 456, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 457, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "9", + "token_id": 458, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 459, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 460, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 461, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "external", + "token_id": 462, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "links", + "token_id": 463, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 464, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 465, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 466, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 467, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 468, + "o_rev_id": 1010131577, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "donaldo", + "token_id": 469, + "o_rev_id": 1010131577, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "colosio", + "token_id": 470, + "o_rev_id": 1010131577, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "riojas", + "token_id": 471, + "o_rev_id": 1010131577, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "]", + "token_id": 472, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 473, + "o_rev_id": 1010131577, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "official", + "token_id": 474, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "facebook", + "token_id": 475, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "page", + "token_id": 476, + "o_rev_id": 1010131577, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 477, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 478, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 479, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 480, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 481, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 482, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "facebook", + "token_id": 483, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 484, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 485, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 486, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "colosioriojas", + "token_id": 487, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 488, + "o_rev_id": 1010131687, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 489, + "o_rev_id": 1010133182, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "unreferenced", + "token_id": 490, + "o_rev_id": 1010133182, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 491, + "o_rev_id": 1010133182, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "date", + "token_id": 492, + "o_rev_id": 1010133182, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 493, + "o_rev_id": 1010133182, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "march", + "token_id": 494, + "o_rev_id": 1010133182, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "2021", + "token_id": 495, + "o_rev_id": 1010133182, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "}}", + "token_id": 496, + "o_rev_id": 1010133182, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 497, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 498, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "biography", + "token_id": 499, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "=", + "token_id": 500, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 501, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 502, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "donaldo", + "token_id": 503, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "colosio", + "token_id": 504, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "riojas", + "token_id": 505, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "was", + "token_id": 506, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "born", + "token_id": 507, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 508, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 509, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "magdalena", + "token_id": 510, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 511, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "kino", + "token_id": 512, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 513, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 514, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "31", + "token_id": 515, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "july", + "token_id": 516, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "1986", + "token_id": 517, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010154604 + ] + }, + { + "str": ".", + "token_id": 518, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "he", + "token_id": 519, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1012860262 + ] + }, + { + "str": "has", + "token_id": 520, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 521, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "younger", + "token_id": 522, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "sister", + "token_id": 523, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "named", + "token_id": 524, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "mariana", + "token_id": 525, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 526, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "riojas", + "token_id": 527, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ".", + "token_id": 528, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 529, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1035845373 + ] + }, + { + "str": "was", + "token_id": 530, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1035845373 + ] + }, + { + "str": "orphaned", + "token_id": 531, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1035845373 + ] + }, + { + "str": "in", + "token_id": 532, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "1994", + "token_id": 533, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "after", + "token_id": 534, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "the", + "token_id": 535, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "assassination", + "token_id": 536, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "of", + "token_id": 537, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "his", + "token_id": 538, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "father", + "token_id": 539, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "in", + "token_id": 540, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "march", + "token_id": 541, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "and", + "token_id": 542, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "the", + "token_id": 543, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "death", + "token_id": 544, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "of", + "token_id": 545, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "his", + "token_id": 546, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "mother", + "token_id": 547, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 548, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "november", + "token_id": 549, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "being", + "token_id": 550, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "8", + "token_id": 551, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "years", + "token_id": 552, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "old", + "token_id": 553, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "and", + "token_id": 554, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "his", + "token_id": 555, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "sister", + "token_id": 556, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "1", + "token_id": 557, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "year", + "token_id": 558, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "old", + "token_id": 559, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ".", + "token_id": 560, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 561, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "ref", + "token_id": 562, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": ">", + "token_id": 563, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "{{", + "token_id": 564, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "cita", + "token_id": 565, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "web", + "token_id": 566, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "|", + "token_id": 567, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "url", + "token_id": 568, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "=", + "token_id": 569, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "https", + "token_id": 570, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": ":", + "token_id": 571, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "/", + "token_id": 572, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "/", + "token_id": 573, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "lideresmexicanos", + "token_id": 574, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": ".", + "token_id": 575, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "com", + "token_id": 576, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "/", + "token_id": 577, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "noticias", + "token_id": 578, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "/", + "token_id": 579, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "diana", + "token_id": 580, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "-", + "token_id": 581, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "laura", + "token_id": 582, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "-", + "token_id": 583, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "25", + "token_id": 584, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "-", + "token_id": 585, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "aniversario", + "token_id": 586, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "-", + "token_id": 587, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "luctuoso", + "token_id": 588, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "/", + "token_id": 589, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "|", + "token_id": 590, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "título", + "token_id": 591, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 592, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "diana", + "token_id": 593, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "laura", + "token_id": 594, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": ",", + "token_id": 595, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "25", + "token_id": 596, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "aniversario", + "token_id": 597, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "luctuoso", + "token_id": 598, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 599, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "fecha", + "token_id": 600, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 601, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "5", + "token_id": 602, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "de", + "token_id": 603, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "diciembre", + "token_id": 604, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "de", + "token_id": 605, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "2019", + "token_id": 606, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 607, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "fechaacceso", + "token_id": 608, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 609, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "30", + "token_id": 610, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "de", + "token_id": 611, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "agosto", + "token_id": 612, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "de", + "token_id": 613, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "2020", + "token_id": 614, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 615, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "sitioweb", + "token_id": 616, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 617, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "líderes", + "token_id": 618, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "mexicanos", + "token_id": 619, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 620, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "apellido", + "token_id": 621, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 622, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "gamboa", + "token_id": 623, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 624, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "nombre", + "token_id": 625, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 626, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "fernando", + "token_id": 627, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "}}", + "token_id": 628, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "<", + "token_id": 629, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "/", + "token_id": 630, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "ref", + "token_id": 631, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": ">", + "token_id": 632, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "colosio", + "token_id": 633, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "riojas", + "token_id": 634, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "and", + "token_id": 635, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 636, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "sister", + "token_id": 637, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "were", + "token_id": 638, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "adopted", + "token_id": 639, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 640, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "maternal", + "token_id": 641, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "family", + "token_id": 642, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "members", + "token_id": 643, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "maría", + "token_id": 644, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "elisa", + "token_id": 645, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 646, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 647, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1128452329 + ] + }, + { + "str": "fernando", + "token_id": 648, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "cantú", + "token_id": 649, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 650, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 651, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 652, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 653, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 654, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "cita", + "token_id": 655, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "web", + "token_id": 656, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "|", + "token_id": 657, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "url", + "token_id": 658, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 659, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "https", + "token_id": 660, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 661, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 662, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 663, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 664, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 665, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "milenio", + "token_id": 666, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 667, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 668, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 669, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "politica", + "token_id": 670, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 671, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 672, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 673, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "que", + "token_id": 674, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 675, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "fue", + "token_id": 676, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 677, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 678, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 679, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "sus", + "token_id": 680, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 681, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "hijos", + "token_id": 682, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 683, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 684, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 685, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "esposa", + "token_id": 686, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 687, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "título", + "token_id": 688, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 689, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "esto", + "token_id": 690, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "ha", + "token_id": 691, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "pasado", + "token_id": 692, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "con", + "token_id": 693, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 694, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "hijos", + "token_id": 695, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 696, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 697, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 698, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 699, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 700, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "fecha", + "token_id": 701, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 702, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "23", + "token_id": 703, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "de", + "token_id": 704, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "marzo", + "token_id": 705, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "de", + "token_id": 706, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "2019", + "token_id": 707, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 708, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "fechaacceso", + "token_id": 709, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 710, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "30", + "token_id": 711, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "de", + "token_id": 712, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "agosto", + "token_id": 713, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "de", + "token_id": 714, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "0", + "token_id": 715, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "2020", + "token_id": 716, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 717, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "sitioweb", + "token_id": 718, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 719, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "milenio", + "token_id": 720, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "noticias", + "token_id": 721, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 722, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "apellido", + "token_id": 723, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 724, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "pacheco", + "token_id": 725, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "|", + "token_id": 726, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "nombre", + "token_id": 727, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "=", + "token_id": 728, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "gustavo", + "token_id": 729, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "}}", + "token_id": 730, + "o_rev_id": 1010135492, + "in": [], + "out": [ + 1010139865 + ] + }, + { + "str": "<", + "token_id": 731, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 732, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 733, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 734, + "o_rev_id": 1010135492, + "in": [], + "out": [] + }, + { + "str": "murrieta", + "token_id": 735, + "o_rev_id": 1010136399, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 736, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "cite", + "token_id": 737, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "|", + "token_id": 738, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "title", + "token_id": 739, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "=", + "token_id": 740, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "diana", + "token_id": 741, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "laura", + "token_id": 742, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": ",", + "token_id": 743, + "o_rev_id": 1010139865, + "in": [], + "out": [] + }, + { + "str": "25", + "token_id": 744, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "aniversario", + "token_id": 745, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "luctuoso", + "token_id": 746, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "|", + "token_id": 747, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "=", + "token_id": 748, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "}}", + "token_id": 749, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "{{", + "token_id": 750, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "cite", + "token_id": 751, + "o_rev_id": 1010139865, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 752, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "title", + "token_id": 753, + "o_rev_id": 1010139865, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 754, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "|", + "token_id": 755, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "=", + "token_id": 756, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "}}", + "token_id": 757, + "o_rev_id": 1010139865, + "in": [], + "out": [ + 1028090673 + ] + }, + { + "str": "=", + "token_id": 758, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 759, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "political", + "token_id": 760, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "career", + "token_id": 761, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 762, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 763, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 764, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 765, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 766, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 767, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 768, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 769, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 770, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 771, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 772, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "20", + "token_id": 773, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "february", + "token_id": 774, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "2021", + "token_id": 775, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 776, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 777, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 778, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 779, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1010340783 + ] + }, + { + "str": "luis", + "token_id": 780, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 781, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 782, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 783, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "va", + "token_id": 784, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "por", + "token_id": 785, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "la", + "token_id": 786, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "alcaldía", + "token_id": 787, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 788, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 789, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 790, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1010340783 + ] + }, + { + "str": "|", + "token_id": 791, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 792, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 793, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 794, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 795, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 796, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 797, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 798, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ".", + "token_id": 799, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "noroeste", + "token_id": 800, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ".", + "token_id": 801, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 802, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 803, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "mx", + "token_id": 804, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "/", + "token_id": 805, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "nacional", + "token_id": 806, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 807, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 808, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 809, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 810, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 811, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 812, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 813, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 814, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "-", + "token_id": 815, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "va", + "token_id": 816, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "-", + "token_id": 817, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 818, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "-", + "token_id": 819, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 820, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 821, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "alcaldia", + "token_id": 822, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 823, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 824, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 825, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 826, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 827, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "ibno1224387", + "token_id": 828, + "o_rev_id": 1010140582, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "}}", + "token_id": 829, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 830, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 831, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 832, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 833, + "o_rev_id": 1010140582, + "in": [], + "out": [] + }, + { + "str": "under", + "token_id": 834, + "o_rev_id": 1010140843, + "in": [], + "out": [ + 1241048146 + ] + }, + { + "str": "political", + "token_id": 835, + "o_rev_id": 1010140843, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "party", + "token_id": 836, + "o_rev_id": 1010140843, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "[[", + "token_id": 837, + "o_rev_id": 1010140843, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "movimiento", + "token_id": 838, + "o_rev_id": 1010140843, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "ciudadano", + "token_id": 839, + "o_rev_id": 1010140843, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "]]", + "token_id": 840, + "o_rev_id": 1010140843, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "1985", + "token_id": 841, + "o_rev_id": 1010154288, + "in": [], + "out": [] + }, + { + "str": "1985", + "token_id": 842, + "o_rev_id": 1010154288, + "in": [], + "out": [] + }, + { + "str": "1985", + "token_id": 843, + "o_rev_id": 1010154604, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 844, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "notability", + "token_id": 845, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "|", + "token_id": 846, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "1", + "token_id": 847, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "=", + "token_id": 848, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "biographies", + "token_id": 849, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "|", + "token_id": 850, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "date", + "token_id": 851, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "=", + "token_id": 852, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "march", + "token_id": 853, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "2021", + "token_id": 854, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "}}", + "token_id": 855, + "o_rev_id": 1010311008, + "in": [], + "out": [ + 1012864630 + ] + }, + { + "str": "colosio", + "token_id": 856, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 857, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "became", + "token_id": 858, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "the", + "token_id": 859, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "candidate", + "token_id": 860, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 861, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 862, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "iv", + "token_id": 863, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "district", + "token_id": 864, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 865, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 866, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010339290 + ] + }, + { + "str": "nuevo", + "token_id": 867, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "leon", + "token_id": 868, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010339290 + ] + }, + { + "str": "]]", + "token_id": 869, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010339290 + ] + }, + { + "str": "under", + "token_id": 870, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "political", + "token_id": 871, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "party", + "token_id": 872, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "[[", + "token_id": 873, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "movimiento", + "token_id": 874, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "ciudadano", + "token_id": 875, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "]]", + "token_id": 876, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "in", + "token_id": 877, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 878, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 879, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "statewide", + "token_id": 880, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "elections", + "token_id": 881, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "in", + "token_id": 882, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "which", + "token_id": 883, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "he", + "token_id": 884, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "won", + "token_id": 885, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 886, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "33", + "token_id": 887, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 888, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "41", + "token_id": 889, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 890, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "of", + "token_id": 891, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 892, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "votes", + "token_id": 893, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": ".", + "token_id": 894, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 895, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 896, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 897, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 898, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "cita", + "token_id": 899, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "web", + "token_id": 900, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 901, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "url", + "token_id": 902, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 903, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "https", + "token_id": 904, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 905, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 906, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 907, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 908, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 909, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "eluniversal", + "token_id": 910, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 911, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 912, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 913, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 914, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 915, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "elecciones", + "token_id": 916, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 917, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 918, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 919, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "hijo", + "token_id": 920, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 921, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 922, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 923, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 924, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 925, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "gana", + "token_id": 926, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 927, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "diputacion", + "token_id": 928, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 929, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 930, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 931, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "su", + "token_id": 932, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 933, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "debut", + "token_id": 934, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 935, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "politico", + "token_id": 936, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 937, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 938, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 939, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "nl", + "token_id": 940, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 941, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "título", + "token_id": 942, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 943, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "hijo", + "token_id": 944, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 945, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 946, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "gana", + "token_id": 947, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "diputación", + "token_id": 948, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 949, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "su", + "token_id": 950, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "debut", + "token_id": 951, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "político", + "token_id": 952, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 953, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "fecha", + "token_id": 954, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 955, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "4", + "token_id": 956, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "de", + "token_id": 957, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "julio", + "token_id": 958, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "de", + "token_id": 959, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "2018", + "token_id": 960, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "|", + "token_id": 961, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "fechaacceso", + "token_id": 962, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 963, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "30", + "token_id": 964, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "de", + "token_id": 965, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "agosto", + "token_id": 966, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "de", + "token_id": 967, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "2020", + "token_id": 968, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "|", + "token_id": 969, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "sitioweb", + "token_id": 970, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 971, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "el", + "token_id": 972, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "universal", + "token_id": 973, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "|", + "token_id": 974, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "apellido", + "token_id": 975, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 976, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "carrizales", + "token_id": 977, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "|", + "token_id": 978, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "nombre", + "token_id": 979, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 980, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "david", + "token_id": 981, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "}}", + "token_id": 982, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "<", + "token_id": 983, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 984, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 985, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 986, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 987, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "1", + "token_id": 988, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "september", + "token_id": 989, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 990, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 991, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 992, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "assumed", + "token_id": 993, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "office", + "token_id": 994, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "as", + "token_id": 995, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 996, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "member", + "token_id": 997, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 998, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 999, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "lxxv", + "token_id": 1000, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "legislature", + "token_id": 1001, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1002, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "the", + "token_id": 1003, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1004, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "congress", + "token_id": 1005, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1006, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 1007, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 1008, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1009, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1010, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1011, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1012, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1013, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1014, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "cita", + "token_id": 1015, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "web", + "token_id": 1016, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1017, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "url", + "token_id": 1018, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1019, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "https", + "token_id": 1020, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1021, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1022, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1023, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 1024, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1025, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "eleconomista", + "token_id": 1026, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1027, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 1028, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1029, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 1030, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1031, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "amp", + "token_id": 1032, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1296572619 + ] + }, + { + "str": "/", + "token_id": 1033, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1296572619 + ] + }, + { + "str": "economia", + "token_id": 1034, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1035, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "inicia", + "token_id": 1036, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1037, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "lxxv", + "token_id": 1038, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1039, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "legislatura", + "token_id": 1040, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1041, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1042, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1043, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 1044, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1045, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "leon", + "token_id": 1046, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1047, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "20180901", + "token_id": 1048, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1049, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "0017", + "token_id": 1050, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1051, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 1052, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1053, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "título", + "token_id": 1054, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 1055, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "inicia", + "token_id": 1056, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "lxxv", + "token_id": 1057, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "legislatura", + "token_id": 1058, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1059, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 1060, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 1061, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1062, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "fecha", + "token_id": 1063, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 1064, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "1", + "token_id": 1065, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "de", + "token_id": 1066, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "septiembre", + "token_id": 1067, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "de", + "token_id": 1068, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "2018", + "token_id": 1069, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "|", + "token_id": 1070, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "fechaacceso", + "token_id": 1071, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 1072, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "30", + "token_id": 1073, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "de", + "token_id": 1074, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "agosto", + "token_id": 1075, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "de", + "token_id": 1076, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "2020", + "token_id": 1077, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "|", + "token_id": 1078, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "sitioweb", + "token_id": 1079, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 1080, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "[[", + "token_id": 1081, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "el", + "token_id": 1082, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "economista", + "token_id": 1083, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "]]", + "token_id": 1084, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "|", + "token_id": 1085, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "apellido", + "token_id": 1086, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 1087, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "flores", + "token_id": 1088, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "|", + "token_id": 1089, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "nombre", + "token_id": 1090, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "=", + "token_id": 1091, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "lourdes", + "token_id": 1092, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "}}", + "token_id": 1093, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1010338435 + ] + }, + { + "str": "<", + "token_id": 1094, + "o_rev_id": 1010337929, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1095, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "ref", + "token_id": 1096, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ">", + "token_id": 1097, + "o_rev_id": 1010337929, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "{{", + "token_id": 1098, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 1099, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1100, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 1101, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1102, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1103, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1104, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1105, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1106, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 1107, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1108, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 1109, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1110, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1111, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1112, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1113, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1114, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "1985", + "token_id": 1115, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1116, + "o_rev_id": 1010338435, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1117, + "o_rev_id": 1010339290, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 1118, + "o_rev_id": 1010339290, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1119, + "o_rev_id": 1010339290, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1120, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1027927375 + ] + }, + { + "str": ",", + "token_id": 1121, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "nuevo", + "token_id": 1122, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "león", + "token_id": 1123, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "]]", + "token_id": 1124, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1027927375 + ] + }, + { + "str": "[[", + "token_id": 1125, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "2021", + "token_id": 1126, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "mexican", + "token_id": 1127, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "local", + "token_id": 1128, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "elections", + "token_id": 1129, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "|", + "token_id": 1130, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "]]", + "token_id": 1131, + "o_rev_id": 1010339290, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "deputy", + "token_id": 1132, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1065167764 + ] + }, + { + "str": "of", + "token_id": 1133, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1134, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "congress", + "token_id": 1135, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1136, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 1137, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 1138, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1139, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "date", + "token_id": 1140, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "|", + "token_id": 1141, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "9", + "token_id": 1142, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "|", + "token_id": 1143, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "1", + "token_id": 1144, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1145, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "2018", + "token_id": 1146, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1147, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "{{", + "token_id": 1148, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "date", + "token_id": 1149, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "|", + "token_id": 1150, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "2", + "token_id": 1151, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "|", + "token_id": 1152, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "1", + "token_id": 1153, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1154, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "2021", + "token_id": 1155, + "o_rev_id": 1010340007, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1156, + "o_rev_id": 1010340007, + "in": [], + "out": [ + 1010340186 + ] + }, + { + "str": "september", + "token_id": 1157, + "o_rev_id": 1010340186, + "in": [], + "out": [] + }, + { + "str": "february", + "token_id": 1158, + "o_rev_id": 1010340186, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1159, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1160, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "josé", + "token_id": 1161, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "arturo", + "token_id": 1162, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "salinas", + "token_id": 1163, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "garza", + "token_id": 1164, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "marco", + "token_id": 1165, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "antonio", + "token_id": 1166, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "decanini", + "token_id": 1167, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "contreras", + "token_id": 1168, + "o_rev_id": 1010340354, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1169, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "file", + "token_id": 1170, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": ":", + "token_id": 1171, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "mc", + "token_id": 1172, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "party", + "token_id": 1173, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "(", + "token_id": 1174, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "mexico", + "token_id": 1175, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": ")", + "token_id": 1176, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": ".", + "token_id": 1177, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "svg", + "token_id": 1178, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "|", + "token_id": 1179, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "20px", + "token_id": 1180, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "]]", + "token_id": 1181, + "o_rev_id": 1010340577, + "in": [], + "out": [ + 1222514326 + ] + }, + { + "str": "maría", + "token_id": 1182, + "o_rev_id": 1010340783, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1183, + "o_rev_id": 1010340783, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 1184, + "o_rev_id": 1010340783, + "in": [], + "out": [] + }, + { + "str": "luz", + "token_id": 1185, + "o_rev_id": 1010340783, + "in": [], + "out": [] + }, + { + "str": "garcía", + "token_id": 1186, + "o_rev_id": 1010340783, + "in": [], + "out": [] + }, + { + "str": "luna", + "token_id": 1187, + "o_rev_id": 1010340783, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 1188, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "donaldo", + "token_id": 1189, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "colosio", + "token_id": 1190, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "garcía", + "token_id": 1191, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "<", + "token_id": 1192, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "br", + "token_id": 1193, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "/", + "token_id": 1194, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ">", + "token_id": 1195, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "maría", + "token_id": 1196, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "emilia", + "token_id": 1197, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "colosio", + "token_id": 1198, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1168225322 + ] + }, + { + "str": "garcía", + "token_id": 1199, + "o_rev_id": 1010340783, + "in": [], + "out": [ + 1168225322 + ] + }, + { + "str": "|", + "token_id": 1200, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "education", + "token_id": 1201, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1202, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1203, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 1204, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "institute", + "token_id": 1205, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1206, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "technology", + "token_id": 1207, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 1208, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "higher", + "token_id": 1209, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "education", + "token_id": 1210, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1211, + "o_rev_id": 1010341188, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 1212, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "studied", + "token_id": 1213, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "[[", + "token_id": 1214, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "law", + "token_id": 1215, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "]]", + "token_id": 1216, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "in", + "token_id": 1217, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "the", + "token_id": 1218, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1219, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 1220, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "institute", + "token_id": 1221, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1222, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "technology", + "token_id": 1223, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 1224, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "higher", + "token_id": 1225, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "education", + "token_id": 1226, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1227, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 1228, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "graduated", + "token_id": 1229, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "in", + "token_id": 1230, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "2010", + "token_id": 1231, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1232, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 1233, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "received", + "token_id": 1234, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "a", + "token_id": 1235, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "postgraduate", + "token_id": 1236, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "diploma", + "token_id": 1237, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "in", + "token_id": 1238, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "financing", + "token_id": 1239, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "and", + "token_id": 1240, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "methods", + "token_id": 1241, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "of", + "token_id": 1242, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "international", + "token_id": 1243, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "payments", + "token_id": 1244, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ",", + "token_id": 1245, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "also", + "token_id": 1246, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "by", + "token_id": 1247, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "itesm", + "token_id": 1248, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ",", + "token_id": 1249, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "in", + "token_id": 1250, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "2016", + "token_id": 1251, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ".", + "token_id": 1252, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "he", + "token_id": 1253, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "currently", + "token_id": 1254, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "studies", + "token_id": 1255, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "a", + "token_id": 1256, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "master", + "token_id": 1257, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1258, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 1259, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1260, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "legal", + "token_id": 1261, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "studies", + "token_id": 1262, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "in", + "token_id": 1263, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "corporate", + "token_id": 1264, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "law", + "token_id": 1265, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1266, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "the", + "token_id": 1267, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1268, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "universidad", + "token_id": 1269, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "de", + "token_id": 1270, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 1271, + "o_rev_id": 1010341901, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1272, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1213897439 + ] + }, + { + "str": ".", + "token_id": 1273, + "o_rev_id": 1010341901, + "in": [], + "out": [ + 1213897439 + ] + }, + { + "str": "|", + "token_id": 1274, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 1275, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1276, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 1277, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1278, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1279, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1280, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 1281, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1282, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "colosioriojas", + "token_id": 1283, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1284, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 1285, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1286, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1287, + "o_rev_id": 1012860262, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "1994", + "token_id": 1288, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 1289, + "o_rev_id": 1012860262, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "general", + "token_id": 1290, + "o_rev_id": 1012860262, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "election", + "token_id": 1291, + "o_rev_id": 1012860262, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "|", + "token_id": 1292, + "o_rev_id": 1012860262, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "]]", + "token_id": 1293, + "o_rev_id": 1012860262, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": ",", + "token_id": 1294, + "o_rev_id": 1012860262, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "luis", + "token_id": 1295, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 1296, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1297, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 1298, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 1299, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1300, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1301, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1302, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 1303, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1304, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "colosioriojas", + "token_id": 1305, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1306, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 1307, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1308, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "official", + "token_id": 1309, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 1310, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "site", + "token_id": 1311, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 1312, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 1313, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 1314, + "o_rev_id": 1012860262, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1315, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "parents", + "token_id": 1316, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1317, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1318, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 1319, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 1320, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1321, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "murrieta", + "token_id": 1322, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1323, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1324, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "br", + "token_id": 1325, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1326, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1327, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "diana", + "token_id": 1328, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "laura", + "token_id": 1329, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 1330, + "o_rev_id": 1012860560, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1331, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 1332, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "age", + "token_id": 1333, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1334, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1335, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1336, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1337, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1338, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1339, + "o_rev_id": 1012860664, + "in": [], + "out": [] + }, + { + "str": "relatives", + "token_id": 1340, + "o_rev_id": 1012864421, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1341, + "o_rev_id": 1012864421, + "in": [], + "out": [] + }, + { + "str": "fernández", + "token_id": 1342, + "o_rev_id": 1012864421, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1343, + "o_rev_id": 1012864421, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 1344, + "o_rev_id": 1012864421, + "in": [], + "out": [] + }, + { + "str": "paternal", + "token_id": 1345, + "o_rev_id": 1012864421, + "in": [], + "out": [] + }, + { + "str": "grandfather", + "token_id": 1346, + "o_rev_id": 1012864421, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 1347, + "o_rev_id": 1012864421, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1348, + "o_rev_id": 1015536009, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1349, + "o_rev_id": 1015536009, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1350, + "o_rev_id": 1015536009, + "in": [], + "out": [] + }, + { + "str": "living", + "token_id": 1351, + "o_rev_id": 1015536009, + "in": [], + "out": [] + }, + { + "str": "people", + "token_id": 1352, + "o_rev_id": 1015536009, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1353, + "o_rev_id": 1015536009, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1354, + "o_rev_id": 1027927375, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "]]", + "token_id": 1355, + "o_rev_id": 1027927375, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "[[", + "token_id": 1356, + "o_rev_id": 1027927375, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "]]", + "token_id": 1357, + "o_rev_id": 1027927375, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "[[", + "token_id": 1358, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "municipal", + "token_id": 1359, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "president", + "token_id": 1360, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "of", + "token_id": 1361, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "monterrey", + "token_id": 1362, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "|", + "token_id": 1363, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1065167764 + ] + }, + { + "str": "mayor", + "token_id": 1364, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1065167764 + ] + }, + { + "str": "]]", + "token_id": 1365, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "of", + "token_id": 1366, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1065167764 + ] + }, + { + "str": "[[", + "token_id": 1367, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1065167764 + ] + }, + { + "str": "monterrey", + "token_id": 1368, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1065167764 + ] + }, + { + "str": "]]", + "token_id": 1369, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1065167764 + ] + }, + { + "str": "|", + "token_id": 1370, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "term", + "token_id": 1371, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 1372, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "start", + "token_id": 1373, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1374, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "1", + "token_id": 1375, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1050278062 + ] + }, + { + "str": "november", + "token_id": 1376, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1050278062 + ] + }, + { + "str": "2021", + "token_id": 1377, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1378, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "succeeding", + "token_id": 1379, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1071487850 + ] + }, + { + "str": "", + "token_id": 1382, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1071487850 + ] + }, + { + "str": "=", + "token_id": 1383, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1384, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1191480846 + ] + }, + { + "str": "adrián", + "token_id": 1385, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1386, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 1387, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "garza", + "token_id": 1388, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1389, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1191480846 + ] + }, + { + "str": "|", + "token_id": 1390, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "office2", + "token_id": 1391, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "=", + "token_id": 1392, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "start2", + "token_id": 1393, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "|", + "token_id": 1394, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "term", + "token_id": 1395, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 1396, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "end2", + "token_id": 1397, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "=", + "token_id": 1398, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "predecessor2", + "token_id": 1399, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "|", + "token_id": 1400, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "successor2", + "token_id": 1401, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1227424767 + ] + }, + { + "str": "=", + "token_id": 1402, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 1403, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "the", + "token_id": 1404, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1243951647 + ] + }, + { + "str": "mayor", + "token_id": 1405, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1065167764 + ] + }, + { + "str": "[[", + "token_id": 1406, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1050278062 + ] + }, + { + "str": "-", + "token_id": 1407, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1050278062 + ] + }, + { + "str": "elect", + "token_id": 1408, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1050278062 + ] + }, + { + "str": "]]", + "token_id": 1409, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1050278062 + ] + }, + { + "str": "of", + "token_id": 1410, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "[[", + "token_id": 1411, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "monterrey", + "token_id": 1412, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "]]", + "token_id": 1413, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "and", + "token_id": 1414, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "he", + "token_id": 1415, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "won", + "token_id": 1416, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1417, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "election", + "token_id": 1418, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1419, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "june", + "token_id": 1420, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "with", + "token_id": 1421, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "over", + "token_id": 1422, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "47", + "token_id": 1423, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 1424, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1425, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1426, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "vote", + "token_id": 1427, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1428, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 1429, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "8", + "token_id": 1430, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1156261339 + ] + }, + { + "str": "-", + "token_id": 1431, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "way", + "token_id": 1432, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "race", + "token_id": 1433, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1434, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1156261339 + ] + }, + { + "str": "defeating", + "token_id": 1435, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "his", + "token_id": 1436, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "nearest", + "token_id": 1437, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "opponent", + "token_id": 1438, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 1439, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "more", + "token_id": 1440, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "than", + "token_id": 1441, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "16", + "token_id": 1442, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 1443, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": ".", + "token_id": 1444, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1445, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1446, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1447, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1448, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 1449, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "news", + "token_id": 1450, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1451, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 1452, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1453, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 1454, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1455, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1456, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1457, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 1458, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1459, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "elfinanciero", + "token_id": 1460, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1461, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 1462, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1463, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 1464, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1465, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "elecciones", + "token_id": 1466, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1467, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 1468, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1469, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 1470, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1471, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 1472, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1473, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 1474, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1475, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 1476, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1477, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 1478, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1479, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1480, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1481, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "indira", + "token_id": 1482, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1483, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "vizcaino", + "token_id": 1484, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1485, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "samuel", + "token_id": 1486, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1487, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "garcia", + "token_id": 1488, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1489, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 1490, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1491, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "adolfo", + "token_id": 1492, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1493, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "cerqueda", + "token_id": 1494, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1495, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "las", + "token_id": 1496, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1497, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "nuevas", + "token_id": 1498, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1499, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "caras", + "token_id": 1500, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1501, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1502, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1503, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 1504, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1505, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "politica", + "token_id": 1506, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1507, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 1508, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1509, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 1510, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1511, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1512, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 1513, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1514, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1515, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1516, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "vizcaíno", + "token_id": 1517, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1518, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "marina", + "token_id": 1519, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 1520, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "cerqueda", + "token_id": 1521, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1522, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "las", + "token_id": 1523, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "nuevas", + "token_id": 1524, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "caras", + "token_id": 1525, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1526, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 1527, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "política", + "token_id": 1528, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 1529, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "méxico", + "token_id": 1530, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1531, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "publisher", + "token_id": 1532, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1533, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 1534, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "financiero", + "token_id": 1535, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1536, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1537, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1028139670 + ] + }, + { + "str": "bloomberg", + "token_id": 1538, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1539, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1028139670 + ] + }, + { + "str": "|", + "token_id": 1540, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 1541, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1542, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "8", + "token_id": 1543, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "june", + "token_id": 1544, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 1545, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1546, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1547, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1548, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1549, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1550, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1551, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1552, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1553, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1554, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 1555, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 1556, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1557, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 1558, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1559, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 1560, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1561, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1562, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1563, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 1564, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1565, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "sipre", + "token_id": 1566, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1567, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 1568, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1569, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "gc01m40", + "token_id": 1570, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1571, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "htm", + "token_id": 1572, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1573, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 1574, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1575, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "programa", + "token_id": 1576, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1577, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "resultados", + "token_id": 1578, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "electorales", + "token_id": 1579, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "preliminares", + "token_id": 1580, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 1581, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1582, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "elecciones", + "token_id": 1583, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "estatales", + "token_id": 1584, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1585, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 1586, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 1587, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1588, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "publisher", + "token_id": 1589, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1590, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "comisión", + "token_id": 1591, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "estatal", + "token_id": 1592, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "electoral", + "token_id": 1593, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 1594, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 1595, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1596, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "access", + "token_id": 1597, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "-", + "token_id": 1598, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "date", + "token_id": 1599, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "=", + "token_id": 1600, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "10", + "token_id": 1601, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "june", + "token_id": 1602, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "2021", + "token_id": 1603, + "o_rev_id": 1028074078, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "}}", + "token_id": 1604, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1605, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1606, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1607, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1608, + "o_rev_id": 1028074078, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1609, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "s", + "token_id": 1610, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "assassination", + "token_id": 1611, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "'", + "token_id": 1612, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "s", + "token_id": 1613, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "death", + "token_id": 1614, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "when", + "token_id": 1615, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "he", + "token_id": 1616, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "was", + "token_id": 1617, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "9", + "token_id": 1618, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "|", + "token_id": 1619, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "publisher", + "token_id": 1620, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "=", + "token_id": 1621, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "lideres", + "token_id": 1622, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "mexicanos", + "token_id": 1623, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "|", + "token_id": 1624, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "last", + "token_id": 1625, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "=", + "token_id": 1626, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "gamboa", + "token_id": 1627, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "|", + "token_id": 1628, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "first", + "token_id": 1629, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "=", + "token_id": 1630, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "fernando", + "token_id": 1631, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "|", + "token_id": 1632, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "date", + "token_id": 1633, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "=", + "token_id": 1634, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "5", + "token_id": 1635, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "december", + "token_id": 1636, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "2019", + "token_id": 1637, + "o_rev_id": 1028090673, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "their", + "token_id": 1638, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "aunt", + "token_id": 1639, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 1640, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "uncle", + "token_id": 1641, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "hilda", + "token_id": 1642, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1643, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "news", + "token_id": 1644, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1645, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1646, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1647, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1648, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1649, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "newspaper", + "token_id": 1650, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1651, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1652, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "milenio", + "token_id": 1653, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1654, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1655, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 1656, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1657, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "pacheco", + "token_id": 1658, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1659, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 1660, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1661, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "gustavo", + "token_id": 1662, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1663, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 1664, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1665, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "23", + "token_id": 1666, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "march", + "token_id": 1667, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "2019", + "token_id": 1668, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1669, + "o_rev_id": 1028090673, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1670, + "o_rev_id": 1028139670, + "in": [], + "out": [] + }, + { + "str": "l", + "token_id": 1671, + "o_rev_id": 1028139670, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1672, + "o_rev_id": 1028139670, + "in": [], + "out": [] + }, + { + "str": "p", + "token_id": 1673, + "o_rev_id": 1028139670, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1674, + "o_rev_id": 1028139670, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1675, + "o_rev_id": 1028139670, + "in": [], + "out": [] + }, + { + "str": "bloomberg", + "token_id": 1676, + "o_rev_id": 1028139670, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1677, + "o_rev_id": 1028139670, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 1678, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "resigned", + "token_id": 1679, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "from", + "token_id": 1680, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "movimiento", + "token_id": 1681, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "ciudadano", + "token_id": 1682, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "after", + "token_id": 1683, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "winning", + "token_id": 1684, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "the", + "token_id": 1685, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "election", + "token_id": 1686, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "for", + "token_id": 1687, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "mayor", + "token_id": 1688, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "of", + "token_id": 1689, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "monterrey", + "token_id": 1690, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": ",", + "token_id": 1691, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "nuevo", + "token_id": 1692, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "león", + "token_id": 1693, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "which", + "token_id": 1694, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "he", + "token_id": 1695, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "ran", + "token_id": 1696, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "as", + "token_id": 1697, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "a", + "token_id": 1698, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "candidate", + "token_id": 1699, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "of", + "token_id": 1700, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "mc", + "token_id": 1701, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": ".", + "token_id": 1702, + "o_rev_id": 1043644996, + "in": [], + "out": [ + 1043645868 + ] + }, + { + "str": "30", + "token_id": 1703, + "o_rev_id": 1050278062, + "in": [], + "out": [ + 1191481253 + ] + }, + { + "str": "september", + "token_id": 1704, + "o_rev_id": 1050278062, + "in": [], + "out": [ + 1191481253 + ] + }, + { + "str": "member", + "token_id": 1705, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1706, + "o_rev_id": 1065167764, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "br", + "token_id": 1707, + "o_rev_id": 1065167764, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "/", + "token_id": 1708, + "o_rev_id": 1065167764, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": ">", + "token_id": 1709, + "o_rev_id": 1065167764, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "from", + "token_id": 1710, + "o_rev_id": 1065167764, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "the", + "token_id": 1711, + "o_rev_id": 1065167764, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "4th", + "token_id": 1712, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "district", + "token_id": 1713, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "municipal", + "token_id": 1714, + "o_rev_id": 1065167764, + "in": [], + "out": [ + 1133319965 + ] + }, + { + "str": "president", + "token_id": 1715, + "o_rev_id": 1065167764, + "in": [], + "out": [ + 1133319965 + ] + }, + { + "str": "[[", + "token_id": 1716, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1717, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1718, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 1719, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1720, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 1721, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 1722, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 1723, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 1724, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "politicians", + "token_id": 1725, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1726, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1727, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1728, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1729, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "members", + "token_id": 1730, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1731, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1732, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "congress", + "token_id": 1733, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1734, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 1735, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 1736, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1737, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1738, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1739, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1740, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "municipal", + "token_id": 1741, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "presidents", + "token_id": 1742, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1743, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 1744, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1745, + "o_rev_id": 1065167764, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1746, + "o_rev_id": 1065761759, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "and", + "token_id": 1747, + "o_rev_id": 1128452329, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 1748, + "o_rev_id": 1133319965, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "of", + "token_id": 1749, + "o_rev_id": 1133319965, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "the", + "token_id": 1750, + "o_rev_id": 1133319965, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "city", + "token_id": 1751, + "o_rev_id": 1133319965, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "legislator", + "token_id": 1752, + "o_rev_id": 1133319965, + "in": [], + "out": [ + 1240517802 + ] + }, + { + "str": "se", + "token_id": 1753, + "o_rev_id": 1138718241, + "in": [], + "out": [ + 1138718298 + ] + }, + { + "str": "la", + "token_id": 1754, + "o_rev_id": 1138718241, + "in": [], + "out": [ + 1138718298 + ] + }, + { + "str": "chupo", + "token_id": 1755, + "o_rev_id": 1138718241, + "in": [], + "out": [ + 1138718298 + ] + }, + { + "str": "a", + "token_id": 1756, + "o_rev_id": 1138718241, + "in": [], + "out": [ + 1138718298 + ] + }, + { + "str": "eduardo", + "token_id": 1757, + "o_rev_id": 1138718241, + "in": [], + "out": [ + 1138718298 + ] + }, + { + "str": "cedeño", + "token_id": 1758, + "o_rev_id": 1138718241, + "in": [], + "out": [ + 1138718298 + ] + }, + { + "str": "[[", + "token_id": 1759, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1760, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1761, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": "people", + "token_id": 1762, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 1763, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": "magdalena", + "token_id": 1764, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1765, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": "kino", + "token_id": 1766, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1767, + "o_rev_id": 1152384983, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1768, + "o_rev_id": 1156261339, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "eight", + "token_id": 1769, + "o_rev_id": 1156261339, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 1770, + "o_rev_id": 1156261339, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "[[", + "token_id": 1771, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1772, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1773, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 1774, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "people", + "token_id": 1775, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1776, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "italian", + "token_id": 1777, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "descent", + "token_id": 1778, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1779, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1780, + "o_rev_id": 1175888700, + "in": [], + "out": [ + 1180746268 + ] + }, + { + "str": "category", + "token_id": 1781, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1782, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 1783, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "people", + "token_id": 1784, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1785, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "galician", + "token_id": 1786, + "o_rev_id": 1175888700, + "in": [], + "out": [ + 1180746268 + ] + }, + { + "str": "descent", + "token_id": 1787, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1788, + "o_rev_id": 1175888700, + "in": [], + "out": [ + 1180746268 + ] + }, + { + "str": "[[", + "token_id": 1789, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1790, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1791, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 1792, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "people", + "token_id": 1793, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1794, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "catalan", + "token_id": 1795, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "descent", + "token_id": 1796, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1797, + "o_rev_id": 1175888700, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1798, + "o_rev_id": 1180746268, + "in": [], + "out": [] + }, + { + "str": "basque", + "token_id": 1799, + "o_rev_id": 1180746268, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1800, + "o_rev_id": 1180746268, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1801, + "o_rev_id": 1191480846, + "in": [ + 1222581385 + ], + "out": [ + 1191480870 + ] + }, + { + "str": "santos", + "token_id": 1802, + "o_rev_id": 1191480846, + "in": [ + 1222581385 + ], + "out": [ + 1191480870 + ] + }, + { + "str": "|", + "token_id": 1803, + "o_rev_id": 1191480846, + "in": [ + 1222581385 + ], + "out": [ + 1191480870 + ] + }, + { + "str": "adrián", + "token_id": 1804, + "o_rev_id": 1191480846, + "in": [ + 1222581385 + ], + "out": [ + 1191480870 + ] + }, + { + "str": "de", + "token_id": 1805, + "o_rev_id": 1191480846, + "in": [ + 1222581385 + ], + "out": [ + 1191480870 + ] + }, + { + "str": "la", + "token_id": 1806, + "o_rev_id": 1191480846, + "in": [ + 1222581385 + ], + "out": [ + 1191480870 + ] + }, + { + "str": "garza", + "token_id": 1807, + "o_rev_id": 1191480846, + "in": [ + 1222581385 + ], + "out": [ + 1191480870 + ] + }, + { + "str": "]]", + "token_id": 1808, + "o_rev_id": 1191480846, + "in": [ + 1222581385 + ], + "out": [ + 1191480870 + ] + }, + { + "str": "1", + "token_id": 1809, + "o_rev_id": 1191481253, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "october", + "token_id": 1810, + "o_rev_id": 1191481253, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": ",", + "token_id": 1811, + "o_rev_id": 1193739135, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1812, + "o_rev_id": 1193739135, + "in": [], + "out": [] + }, + { + "str": "sonora", + "token_id": 1813, + "o_rev_id": 1193739135, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1814, + "o_rev_id": 1193739135, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1815, + "o_rev_id": 1193739135, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "he", + "token_id": 1816, + "o_rev_id": 1213897276, + "in": [], + "out": [ + 1213897439 + ] + }, + { + "str": "is", + "token_id": 1817, + "o_rev_id": 1213897276, + "in": [], + "out": [ + 1213897439 + ] + }, + { + "str": "famus", + "token_id": 1818, + "o_rev_id": 1213897276, + "in": [], + "out": [ + 1213897439 + ] + }, + { + "str": "]]", + "token_id": 1819, + "o_rev_id": 1220166917, + "in": [], + "out": [ + 1222367802 + ] + }, + { + "str": "29", + "token_id": 1820, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "february", + "token_id": 1821, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 1822, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "betsabé", + "token_id": 1823, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "rocha", + "token_id": 1824, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "nieto", + "token_id": 1825, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1826, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 1827, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1828, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 1829, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 1830, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 1831, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 1832, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1833, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 1834, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1835, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 1836, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1837, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 1838, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "early", + "token_id": 1839, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "life", + "token_id": 1840, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 1841, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "education", + "token_id": 1842, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1843, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 1844, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 1845, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1846, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "murrieta", + "token_id": 1847, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1848, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 1849, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "diana", + "token_id": 1850, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "laura", + "token_id": 1851, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1852, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 1853, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "father", + "token_id": 1854, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 1855, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "a", + "token_id": 1856, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "politician", + "token_id": 1857, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "who", + "token_id": 1858, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "was", + "token_id": 1859, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "a", + "token_id": 1860, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "presidential", + "token_id": 1861, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "candidate", + "token_id": 1862, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 1863, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1864, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "1994", + "token_id": 1865, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "election", + "token_id": 1866, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 1867, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "the", + "token_id": 1868, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "[[", + "token_id": 1869, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "institutional", + "token_id": 1870, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "revolutionary", + "token_id": 1871, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "party", + "token_id": 1872, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "]]", + "token_id": 1873, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": ".", + "token_id": 1874, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 1875, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mother", + "token_id": 1876, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 1877, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 1878, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "economist", + "token_id": 1879, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1880, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1881, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1882, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1883, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "father", + "token_id": 1884, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 1885, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "assassinated", + "token_id": 1886, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 1887, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 1888, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "campaign", + "token_id": 1889, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "rally", + "token_id": 1890, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1891, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "tijuana", + "token_id": 1892, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1893, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1894, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "eight", + "token_id": 1895, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "months", + "token_id": 1896, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "later", + "token_id": 1897, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": ",", + "token_id": 1898, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "died", + "token_id": 1899, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "to", + "token_id": 1900, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "[[", + "token_id": 1901, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "pancreatic", + "token_id": 1902, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "cancer", + "token_id": 1903, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1904, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "moved", + "token_id": 1905, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 1906, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1907, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 1908, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1909, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 1910, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1911, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 1912, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 1913, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1914, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "when", + "token_id": 1915, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "they", + "token_id": 1916, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222515761 + ] + }, + { + "str": "=", + "token_id": 1917, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1918, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1919, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "education", + "token_id": 1920, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1921, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1922, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1923, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1924, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "attended", + "token_id": 1925, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1926, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 1927, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "city", + "token_id": 1928, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "campus", + "token_id": 1929, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1930, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1931, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "where", + "token_id": 1932, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 1933, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "earned", + "token_id": 1934, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 1935, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1936, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "bachelor", + "token_id": 1937, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1938, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "laws", + "token_id": 1939, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1940, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 1941, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "pursuing", + "token_id": 1942, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "degree", + "token_id": 1943, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1944, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1945, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 1946, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1947, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "university", + "token_id": 1948, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1949, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 1950, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1951, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1952, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1953, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1954, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1955, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1956, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 1957, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 1958, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1959, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 1960, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1961, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "martinez", + "token_id": 1962, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1963, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 1964, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1965, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 1966, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "rubi", + "token_id": 1967, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1968, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 1969, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1970, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 1971, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1972, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "01", + "token_id": 1973, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1974, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "23", + "token_id": 1975, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1976, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 1977, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1978, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "éste", + "token_id": 1979, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 1980, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 1981, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "grado", + "token_id": 1982, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1983, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "estudios", + "token_id": 1984, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 1985, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 1986, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 1987, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 1988, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 1989, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1990, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 1991, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "alcalde", + "token_id": 1992, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "que", + "token_id": 1993, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "quiere", + "token_id": 1994, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "llegar", + "token_id": 1995, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 1996, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 1997, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "con", + "token_id": 1998, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mc", + "token_id": 1999, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2000, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 2001, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2002, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 2003, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2004, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2005, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2006, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 2007, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2008, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "infobae", + "token_id": 2009, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2010, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 2011, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2012, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 2013, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2014, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 2015, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2016, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "01", + "token_id": 2017, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2018, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "23", + "token_id": 2019, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2020, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "este", + "token_id": 2021, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2022, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 2023, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2024, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 2025, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2026, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "grado", + "token_id": 2027, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2028, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2029, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2030, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "estudios", + "token_id": 2031, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2032, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2033, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2034, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 2035, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2036, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 2037, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2038, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 2039, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2040, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 2041, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2042, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 2043, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2044, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "alcalde", + "token_id": 2045, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2046, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2047, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2048, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 2049, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2050, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "que", + "token_id": 2051, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2052, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "quiere", + "token_id": 2053, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2054, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "llegar", + "token_id": 2055, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2056, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 2057, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2058, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 2059, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2060, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "con", + "token_id": 2061, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2062, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mc", + "token_id": 2063, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2064, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2065, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 2066, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2067, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2068, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2069, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 2070, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2071, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2072, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2073, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2074, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2075, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 2076, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2077, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "infobae", + "token_id": 2078, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2079, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 2080, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2081, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 2082, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2083, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 2084, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 2085, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2086, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2087, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2088, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2089, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "early", + "token_id": 2090, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 2091, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "initially", + "token_id": 2092, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "discouraged", + "token_id": 2093, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 2094, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 2095, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "family", + "token_id": 2096, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 2097, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "pursuing", + "token_id": 2098, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 2099, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "political", + "token_id": 2100, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "career", + "token_id": 2101, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2102, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2103, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2006", + "token_id": 2104, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2105, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 2106, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "received", + "token_id": 2107, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 2108, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "offer", + "token_id": 2109, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 2110, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "be", + "token_id": 2111, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 2112, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "candidate", + "token_id": 2113, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 2114, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "plurinominal", + "token_id": 2115, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "deputy", + "token_id": 2116, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2117, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "which", + "token_id": 2118, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 2119, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "rejected", + "token_id": 2120, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2121, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2122, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2123, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 2124, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2125, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2126, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2127, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "0", + "token_id": 2128, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2129, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2130, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 2131, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 2132, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "news", + "token_id": 2133, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2134, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 2135, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2136, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "corona", + "token_id": 2137, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2138, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 2139, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2140, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "sonia", + "token_id": 2141, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2142, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2143, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2144, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 2145, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2146, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 2147, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2148, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "22", + "token_id": 2149, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2150, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 2151, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2152, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "basave", + "token_id": 2153, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 2154, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 2155, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2156, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 2157, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "relevo", + "token_id": 2158, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "político", + "token_id": 2159, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "que", + "token_id": 2160, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "se", + "token_id": 2161, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "cocina", + "token_id": 2162, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 2163, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 2164, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "norte", + "token_id": 2165, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2166, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "méxico", + "token_id": 2167, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2168, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 2169, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2170, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 2171, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2172, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2173, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2174, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "elpais", + "token_id": 2175, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2176, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 2177, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2178, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "internacional", + "token_id": 2179, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2180, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 2181, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2182, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 2183, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2184, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "21", + "token_id": 2185, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2186, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 2187, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2188, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "1529587416", + "token_id": 2189, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 2190, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "684884", + "token_id": 2191, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2192, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 2193, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2194, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 2195, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2196, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2197, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2198, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 2199, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2200, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2201, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2202, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2203, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2204, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "work", + "token_id": 2205, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2206, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 2207, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "país", + "token_id": 2208, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2209, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 2210, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2211, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 2212, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2213, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "issn", + "token_id": 2214, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2215, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "1134", + "token_id": 2216, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2217, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "6582", + "token_id": 2218, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 2219, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2220, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2221, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2222, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2223, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "shortly", + "token_id": 2224, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "after", + "token_id": 2225, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "graduating", + "token_id": 2226, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "as", + "token_id": 2227, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "a", + "token_id": 2228, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "lawyer", + "token_id": 2229, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "in", + "token_id": 2230, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2010", + "token_id": 2231, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2232, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 2233, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2234, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "along", + "token_id": 2235, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "with", + "token_id": 2236, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "agustín", + "token_id": 2237, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "basave", + "token_id": 2238, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "alanís", + "token_id": 2239, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2240, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "alejandro", + "token_id": 2241, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "basave", + "token_id": 2242, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2243, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2244, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "manuel", + "token_id": 2245, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "sánchez", + "token_id": 2246, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "o", + "token_id": 2247, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "’", + "token_id": 2248, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "sullivan", + "token_id": 2249, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2250, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "founded", + "token_id": 2251, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "law", + "token_id": 2252, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "firm", + "token_id": 2253, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2254, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "basave", + "token_id": 2255, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 2256, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "sánchez", + "token_id": 2257, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2258, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": ".", + "token_id": 2259, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 2260, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "the", + "token_id": 2261, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "firm", + "token_id": 2262, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2263, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "they", + "token_id": 2264, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "began", + "token_id": 2265, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "a", + "token_id": 2266, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "parliamentary", + "token_id": 2267, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "consultancy", + "token_id": 2268, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 2269, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "various", + "token_id": 2270, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "politicians", + "token_id": 2271, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "from", + "token_id": 2272, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "all", + "token_id": 2273, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "parties", + "token_id": 2274, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "as", + "token_id": 2275, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "clients", + "token_id": 2276, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": ".", + "token_id": 2277, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "there", + "token_id": 2278, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": ",", + "token_id": 2279, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "he", + "token_id": 2280, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "made", + "token_id": 2281, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "contact", + "token_id": 2282, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "with", + "token_id": 2283, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "leaders", + "token_id": 2284, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2285, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2286, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "[[", + "token_id": 2287, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 2288, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2289, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 2290, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 2291, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 2292, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 2293, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2294, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 2295, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2296, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 2297, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 2298, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2299, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "who", + "token_id": 2300, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "offered", + "token_id": 2301, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "him", + "token_id": 2302, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 2303, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "candidacy", + "token_id": 2304, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "for", + "token_id": 2305, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "local", + "token_id": 2306, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "deputy", + "token_id": 2307, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "in", + "token_id": 2308, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2309, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 2310, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "2018", + "token_id": 2311, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "mexican", + "token_id": 2312, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "general", + "token_id": 2313, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "election", + "token_id": 2314, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "|", + "token_id": 2315, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "2018", + "token_id": 2316, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "elections", + "token_id": 2317, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 2318, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": ",", + "token_id": 2319, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "which", + "token_id": 2320, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222537422 + ] + }, + { + "str": "he", + "token_id": 2321, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "ultimately", + "token_id": 2322, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "accepted", + "token_id": 2323, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "in", + "token_id": 2324, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "2017", + "token_id": 2325, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": ".", + "token_id": 2326, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2327, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2328, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 2329, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2330, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2331, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2332, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "0", + "token_id": 2333, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2334, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2335, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2336, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2337, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2338, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2339, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "local", + "token_id": 2340, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "deputy", + "token_id": 2341, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2342, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2343, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2344, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 2345, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 2346, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "nominated", + "token_id": 2347, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 2348, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 2349, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 2350, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2351, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 2352, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 2353, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 2354, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 2355, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2356, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 2357, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2358, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 2359, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 2360, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 2361, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 2362, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "4th", + "token_id": 2363, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "state", + "token_id": 2364, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "election", + "token_id": 2365, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2366, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 2367, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "nl", + "token_id": 2368, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2369, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2370, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 2371, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2372, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2373, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2374, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 2375, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2376, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2377, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2378, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2379, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2380, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 2381, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2382, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 2383, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "universal", + "token_id": 2384, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2385, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 2386, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2387, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 2388, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2389, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2390, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2391, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 2392, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "sworn", + "token_id": 2393, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2394, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2395, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2396, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2397, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 2398, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "of", + "token_id": 2399, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 2400, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2401, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2402, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2403, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2404, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2405, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "election", + "token_id": 2406, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2407, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2408, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2409, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 2410, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "25", + "token_id": 2411, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "precandidate", + "token_id": 2412, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 2413, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "municipal", + "token_id": 2414, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "president", + "token_id": 2415, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 2416, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 2417, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241048146 + ] + }, + { + "str": "'", + "token_id": 2418, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241048146 + ] + }, + { + "str": "movement", + "token_id": 2419, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241048146 + ] + }, + { + "str": "|", + "token_id": 2420, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 2421, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2422, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "vargas", + "token_id": 2423, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2424, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 2425, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2426, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "lidia", + "token_id": 2427, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2428, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "01", + "token_id": 2429, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2430, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "31", + "token_id": 2431, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "se", + "token_id": 2432, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "registra", + "token_id": 2433, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "como", + "token_id": 2434, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "precandidato", + "token_id": 2435, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 2436, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "lopezdoriga", + "token_id": 2437, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "se", + "token_id": 2438, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "registra", + "token_id": 2439, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "como", + "token_id": 2440, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2441, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "precandidato", + "token_id": 2442, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2443, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 2444, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2445, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2446, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 2447, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2448, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2449, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 2450, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2451, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2452, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2453, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2454, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2455, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 2456, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2457, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "lópez", + "token_id": 2458, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2459, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "dóriga", + "token_id": 2460, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "digital", + "token_id": 2461, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2462, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 2463, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2464, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 2465, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2466, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 2467, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2468, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "beating", + "token_id": 2469, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "over", + "token_id": 2470, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "points", + "token_id": 2471, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2472, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 2473, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2474, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2475, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2476, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "10", + "token_id": 2477, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "june", + "token_id": 2478, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 2479, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 2480, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2481, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2482, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2483, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2484, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2485, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2486, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2487, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "tenure", + "token_id": 2488, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2489, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2490, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2491, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 2492, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "proposed", + "token_id": 2493, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "the", + "token_id": 2494, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "creation", + "token_id": 2495, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "of", + "token_id": 2496, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "several", + "token_id": 2497, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "[[", + "token_id": 2498, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "green", + "token_id": 2499, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "corridor", + "token_id": 2500, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "|", + "token_id": 2501, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "green", + "token_id": 2502, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "corridors", + "token_id": 2503, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 2504, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "around", + "token_id": 2505, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "monterrey", + "token_id": 2506, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": ",", + "token_id": 2507, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "which", + "token_id": 2508, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "involve", + "token_id": 2509, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "expanding", + "token_id": 2510, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "sidewalks", + "token_id": 2511, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2512, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "installing", + "token_id": 2513, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "bike", + "token_id": 2514, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "lanes", + "token_id": 2515, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2516, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2517, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "planting", + "token_id": 2518, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "trees", + "token_id": 2519, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2520, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 2521, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "part", + "token_id": 2522, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "of", + "token_id": 2523, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "this", + "token_id": 2524, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "initiative", + "token_id": 2525, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ",", + "token_id": 2526, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2527, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2528, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2529, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "puente", + "token_id": 2530, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "verde", + "token_id": 2531, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2532, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2533, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 2534, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2535, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "english", + "token_id": 2536, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2537, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "green", + "token_id": 2538, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "bridge", + "token_id": 2539, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 2540, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 2541, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "constructed", + "token_id": 2542, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "and", + "token_id": 2543, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "inaugurated", + "token_id": 2544, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "in", + "token_id": 2545, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "2023", + "token_id": 2546, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ",", + "token_id": 2547, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "which", + "token_id": 2548, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "spans", + "token_id": 2549, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "the", + "token_id": 2550, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 2551, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "ill", + "token_id": 2552, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "|", + "token_id": 2553, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "santa", + "token_id": 2554, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "catarina", + "token_id": 2555, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "river", + "token_id": 2556, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 2557, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 2558, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 2559, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2560, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "lt", + "token_id": 2561, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "=", + "token_id": 2562, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "santa", + "token_id": 2563, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "catarina", + "token_id": 2564, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "river", + "token_id": 2565, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2566, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "es", + "token_id": 2567, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "|", + "token_id": 2568, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "río", + "token_id": 2569, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "santa", + "token_id": 2570, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "catarina", + "token_id": 2571, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "}}", + "token_id": 2572, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1296572597 + ] + }, + { + "str": "and", + "token_id": 2573, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "connects", + "token_id": 2574, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1222508286 + ] + }, + { + "str": "[[", + "token_id": 2575, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "fundidora", + "token_id": 2576, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "park", + "token_id": 2577, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "]]", + "token_id": 2578, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "and", + "token_id": 2579, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "parque", + "token_id": 2580, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "españa", + "token_id": 2581, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2582, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2583, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "ref", + "token_id": 2584, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ">", + "token_id": 2585, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "{{", + "token_id": 2586, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "cite", + "token_id": 2587, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "web", + "token_id": 2588, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "|", + "token_id": 2589, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "title", + "token_id": 2590, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "=", + "token_id": 2591, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "monterrey", + "token_id": 2592, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2593, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "gob", + "token_id": 2594, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2595, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "mx", + "token_id": 2596, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "|", + "token_id": 2597, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "url", + "token_id": 2598, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "=", + "token_id": 2599, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "https", + "token_id": 2600, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ":", + "token_id": 2601, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "/", + "token_id": 2602, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "/", + "token_id": 2603, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "www", + "token_id": 2604, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2605, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "monterrey", + "token_id": 2606, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2607, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "gob", + "token_id": 2608, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2609, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "mx", + "token_id": 2610, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "/", + "token_id": 2611, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "noticia", + "token_id": 2612, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "/", + "token_id": 2613, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "inaugura", + "token_id": 2614, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "-", + "token_id": 2615, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "monterrey", + "token_id": 2616, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "-", + "token_id": 2617, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "puente", + "token_id": 2618, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "-", + "token_id": 2619, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "verde", + "token_id": 2620, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "2024", + "token_id": 2621, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "-", + "token_id": 2622, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "05", + "token_id": 2623, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "-", + "token_id": 2624, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "05", + "token_id": 2625, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "|", + "token_id": 2626, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "website", + "token_id": 2627, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "=", + "token_id": 2628, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "www", + "token_id": 2629, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2630, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "monterrey", + "token_id": 2631, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2632, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "gob", + "token_id": 2633, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2634, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "mx", + "token_id": 2635, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "}}", + "token_id": 2636, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "<", + "token_id": 2637, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "/", + "token_id": 2638, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "ref", + "token_id": 2639, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ">", + "token_id": 2640, + "o_rev_id": 1222367802, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "between", + "token_id": 2641, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2022", + "token_id": 2642, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2643, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 2644, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2645, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2646, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 2647, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "government", + "token_id": 2648, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "repaved", + "token_id": 2649, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "about", + "token_id": 2650, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "729", + "token_id": 2651, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "thousand", + "token_id": 2652, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "cubic", + "token_id": 2653, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "meters", + "token_id": 2654, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2655, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "pavement", + "token_id": 2656, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "throughout", + "token_id": 2657, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2658, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "municipality", + "token_id": 2659, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2660, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "covering", + "token_id": 2661, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "eight", + "token_id": 2662, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2663, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2664, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "city", + "token_id": 2665, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2666, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 2667, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "major", + "token_id": 2668, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "avenues", + "token_id": 2669, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2670, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "streets", + "token_id": 2671, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2672, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "46", + "token_id": 2673, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "different", + "token_id": 2674, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "neighborhoods", + "token_id": 2675, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2676, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2677, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2678, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2679, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 2680, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 2681, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 2682, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2683, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 2684, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2685, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "briones", + "token_id": 2686, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2687, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 2688, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2689, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "jesús", + "token_id": 2690, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "iván", + "token_id": 2691, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "moreno", + "token_id": 2692, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2693, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2694, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2695, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 2696, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2697, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "01", + "token_id": 2698, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2699, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2700, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 2701, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2702, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "adiós", + "token_id": 2703, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "baches", + "token_id": 2704, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2705, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "estas", + "token_id": 2706, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "avenidas", + "token_id": 2707, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2708, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 2709, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ya", + "token_id": 2710, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "fueron", + "token_id": 2711, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "repavimentadas", + "token_id": 2712, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2713, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 2714, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2715, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 2716, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2717, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2718, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2719, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 2720, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2721, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "reporteindigo", + "token_id": 2722, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2723, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 2724, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2725, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 2726, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2727, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "adios", + "token_id": 2728, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2729, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "baches", + "token_id": 2730, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2731, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "principales", + "token_id": 2732, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2733, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "avenidas", + "token_id": 2734, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2735, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2736, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2737, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 2738, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2739, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "ya", + "token_id": 2740, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2741, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "fueron", + "token_id": 2742, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2743, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "repavimentadas", + "token_id": 2744, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2745, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2746, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 2747, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2748, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2749, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2750, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 2751, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2752, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2753, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2754, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2755, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2756, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 2757, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2758, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 2759, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "indigo", + "token_id": 2760, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2761, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 2762, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2763, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 2764, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2765, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 2766, + "o_rev_id": 1222367802, + "in": [], + "out": [] + }, + { + "str": "29", + "token_id": 2767, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "september", + "token_id": 2768, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 2769, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "1994", + "token_id": 2770, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 2771, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "general", + "token_id": 2772, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "election", + "token_id": 2773, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2774, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 2775, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "municipal", + "token_id": 2776, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "president", + "token_id": 2777, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 2778, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "inaugurated", + "token_id": 2779, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 2780, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "29", + "token_id": 2781, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "september", + "token_id": 2782, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 2783, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 2784, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 2785, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2786, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "55", + "token_id": 2787, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "p", + "token_id": 2788, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2789, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "m", + "token_id": 2790, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2791, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2792, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2793, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2794, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2795, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parks", + "token_id": 2796, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2797, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "green", + "token_id": 2798, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "corridors", + "token_id": 2799, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "=", + "token_id": 2800, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2801, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2802, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2803, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 2804, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "tackled", + "token_id": 2805, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "lack", + "token_id": 2806, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "green", + "token_id": 2807, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "areas", + "token_id": 2808, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "by", + "token_id": 2809, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "rehabilitating", + "token_id": 2810, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "and", + "token_id": 2811, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "reforesting", + "token_id": 2812, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "parks", + "token_id": 2813, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "and", + "token_id": 2814, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "connecting", + "token_id": 2815, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "these", + "token_id": 2816, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "with", + "token_id": 2817, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "tree", + "token_id": 2818, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "-", + "token_id": 2819, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "lined", + "token_id": 2820, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "paths", + "token_id": 2821, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ",", + "token_id": 2822, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "or", + "token_id": 2823, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2824, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "the", + "token_id": 2825, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "creation", + "token_id": 2826, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "of", + "token_id": 2827, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "these", + "token_id": 2828, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "corridors", + "token_id": 2829, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "involved", + "token_id": 2830, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "along", + "token_id": 2831, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "specific", + "token_id": 2832, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "avenues", + "token_id": 2833, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parks", + "token_id": 2834, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "such", + "token_id": 2835, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "as", + "token_id": 2836, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "parque", + "token_id": 2837, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "lago", + "token_id": 2838, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2839, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parque", + "token_id": 2840, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "alameda", + "token_id": 2841, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 2842, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "rehabilitated", + "token_id": 2843, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2844, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2845, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2846, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2847, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 2848, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 2849, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 2850, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2851, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 2852, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2853, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "supervisa", + "token_id": 2854, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "alcalde", + "token_id": 2855, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "regio", + "token_id": 2856, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "avance", + "token_id": 2857, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2858, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parque", + "token_id": 2859, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "lago", + "token_id": 2860, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2861, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 2862, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2863, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 2864, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2865, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2866, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2867, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "elporvenir", + "token_id": 2868, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2869, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 2870, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2871, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "local", + "token_id": 2872, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2873, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "supervisa", + "token_id": 2874, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2875, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "alcalde", + "token_id": 2876, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2877, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "regio", + "token_id": 2878, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2879, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "avance", + "token_id": 2880, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2881, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2882, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2883, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parque", + "token_id": 2884, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2885, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "lago", + "token_id": 2886, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2887, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "682177", + "token_id": 2888, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2889, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 2890, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2891, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2892, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2893, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 2894, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2895, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2896, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2897, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 2898, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2899, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 2900, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2901, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 2902, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "porvenir", + "token_id": 2903, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2904, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 2905, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2906, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 2907, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 2908, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2909, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2910, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2911, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2912, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2913, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2914, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2915, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 2916, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 2917, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 2918, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2919, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 2920, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2921, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "carreón", + "token_id": 2922, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2923, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 2924, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2925, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ricardo", + "token_id": 2926, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "alanís", + "token_id": 2927, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2928, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 2929, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2930, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 2931, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2932, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "12", + "token_id": 2933, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2934, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "12", + "token_id": 2935, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2936, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 2937, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2938, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "inicia", + "token_id": 2939, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 2940, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "última", + "token_id": 2941, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "etapa", + "token_id": 2942, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2943, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "rescate", + "token_id": 2944, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 2945, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 2946, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "alameda", + "token_id": 2947, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mariano", + "token_id": 2948, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "escobedo", + "token_id": 2949, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 2950, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 2951, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2952, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 2953, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2954, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2955, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2956, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 2957, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2958, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "reporteindigo", + "token_id": 2959, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2960, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 2961, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2962, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 2963, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2964, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "inicia", + "token_id": 2965, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2966, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 2967, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2968, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ultima", + "token_id": 2969, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2970, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "etapa", + "token_id": 2971, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2972, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 2973, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2974, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "rescate", + "token_id": 2975, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2976, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 2977, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2978, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 2979, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2980, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "alameda", + "token_id": 2981, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2982, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mariano", + "token_id": 2983, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2984, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "escobedo", + "token_id": 2985, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2986, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2987, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 2988, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "green", + "token_id": 2989, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "corridor", + "token_id": 2990, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "spanning", + "token_id": 2991, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2992, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "connecting", + "token_id": 2993, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 2994, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "<", + "token_id": 2995, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2996, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2997, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 2998, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 2999, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3000, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3001, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3002, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3003, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3004, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3005, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 3006, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3007, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "29", + "token_id": 3008, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3009, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3010, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3011, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "puente", + "token_id": 3012, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "verde", + "token_id": 3013, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 3014, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "inaugurado", + "token_id": 3015, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3016, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "medio", + "token_id": 3017, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3018, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3019, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "lluvia", + "token_id": 3020, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ";", + "token_id": 3021, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "conecta", + "token_id": 3022, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parque", + "token_id": 3023, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "fundidora", + "token_id": 3024, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 3025, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parque", + "token_id": 3026, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "españa", + "token_id": 3027, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3028, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3029, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3030, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3031, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3032, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3033, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3034, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mvsnoticias", + "token_id": 3035, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3036, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 3037, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3038, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 3039, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3040, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "leon", + "token_id": 3041, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3042, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3043, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3044, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "8", + "token_id": 3045, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3046, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "29", + "token_id": 3047, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3048, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "puente", + "token_id": 3049, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3050, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "verde", + "token_id": 3051, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3052, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 3053, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3054, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "inaugurado", + "token_id": 3055, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3056, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3057, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3058, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "medio", + "token_id": 3059, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3060, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3061, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3062, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3063, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3064, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "lluvia", + "token_id": 3065, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3066, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "conecta", + "token_id": 3067, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3068, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parque", + "token_id": 3069, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3070, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "fundidora", + "token_id": 3071, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3072, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "parque", + "token_id": 3073, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3074, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "espana", + "token_id": 3075, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3076, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "604702", + "token_id": 3077, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3078, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 3079, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3080, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 3081, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3082, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3083, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3084, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3085, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3086, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3087, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3088, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3089, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3090, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3091, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3092, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mvs", + "token_id": 3093, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "noticias", + "token_id": 3094, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3095, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 3096, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3097, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 3098, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3099, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3100, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3101, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3102, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3103, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "green", + "token_id": 3104, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "corridors", + "token_id": 3105, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "were", + "token_id": 3106, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "developed", + "token_id": 3107, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "along", + "token_id": 3108, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "avenues", + "token_id": 3109, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "in", + "token_id": 3110, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "downtown", + "token_id": 3111, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "monterrey", + "token_id": 3112, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "as", + "token_id": 3113, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "part", + "token_id": 3114, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "of", + "token_id": 3115, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "'", + "token_id": 3116, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "'", + "token_id": 3117, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "revive", + "token_id": 3118, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "al", + "token_id": 3119, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "centro", + "token_id": 3120, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "'", + "token_id": 3121, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "'", + "token_id": 3122, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ",", + "token_id": 3123, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "which", + "token_id": 3124, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "aimed", + "token_id": 3125, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "to", + "token_id": 3126, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "renovate", + "token_id": 3127, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "downtown", + "token_id": 3128, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "monterrey", + "token_id": 3129, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "'", + "token_id": 3130, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "s", + "token_id": 3131, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "urban", + "token_id": 3132, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "image", + "token_id": 3133, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 3134, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "however", + "token_id": 3135, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ",", + "token_id": 3136, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "criticism", + "token_id": 3137, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "emerged", + "token_id": 3138, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "regarding", + "token_id": 3139, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "the", + "token_id": 3140, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "slow", + "token_id": 3141, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "pace", + "token_id": 3142, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "of", + "token_id": 3143, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "construction", + "token_id": 3144, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "for", + "token_id": 3145, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "the", + "token_id": 3146, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "corridors", + "token_id": 3147, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "and", + "token_id": 3148, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "the", + "token_id": 3149, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "traffic", + "token_id": 3150, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "caused", + "token_id": 3151, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "by", + "token_id": 3152, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "lane", + "token_id": 3153, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "closures", + "token_id": 3154, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 3155, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "<", + "token_id": 3156, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3157, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3158, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3159, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3160, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3161, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3162, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3163, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3164, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 3165, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3166, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "01", + "token_id": 3167, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3168, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "01", + "token_id": 3169, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3170, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3171, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3172, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "siguen", + "token_id": 3173, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "detenidos", + "token_id": 3174, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 3175, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "trabajos", + "token_id": 3176, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 3177, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "corredor", + "token_id": 3178, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "verde", + "token_id": 3179, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3180, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "avenida", + "token_id": 3181, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ocampo", + "token_id": 3182, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3183, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3184, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3185, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3186, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3187, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3188, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3189, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 3190, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3191, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "posta", + "token_id": 3192, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3193, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 3194, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3195, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 3196, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3197, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "nuevoleon", + "token_id": 3198, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3199, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "siguen", + "token_id": 3200, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3201, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "detenidos", + "token_id": 3202, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3203, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 3204, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3205, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "trabajos", + "token_id": 3206, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3207, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 3208, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3209, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "corredor", + "token_id": 3210, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3211, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "verde", + "token_id": 3212, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3213, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3214, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3215, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "avenida", + "token_id": 3216, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3217, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ocampo", + "token_id": 3218, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3219, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "v", + "token_id": 3220, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3221, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "vl1534845", + "token_id": 3222, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3223, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 3224, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3225, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3226, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3227, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3228, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3229, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3230, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3231, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3232, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3233, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3234, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3235, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "posta", + "token_id": 3236, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 3237, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 3238, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3239, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 3240, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3241, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 3242, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3243, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3244, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3245, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3246, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3247, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3248, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3249, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3250, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3251, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "roads", + "token_id": 3252, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3253, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3254, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3255, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3256, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3257, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 3258, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3259, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3260, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3261, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3262, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3263, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3264, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3265, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3266, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3267, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3268, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3269, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 3270, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "indigo", + "token_id": 3271, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3272, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 3273, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3274, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 3275, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3276, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 3277, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3278, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3279, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3280, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3281, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3282, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 3283, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "august", + "token_id": 3284, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "2023", + "token_id": 3285, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ",", + "token_id": 3286, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "colosio", + "token_id": 3287, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "announced", + "token_id": 3288, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "the", + "token_id": 3289, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "construction", + "token_id": 3290, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "of", + "token_id": 3291, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "a", + "token_id": 3292, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "[[", + "token_id": 3293, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "roundabout", + "token_id": 3294, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "]]", + "token_id": 3295, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "around", + "token_id": 3296, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "monterrey", + "token_id": 3297, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "'", + "token_id": 3298, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 3299, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "independence", + "token_id": 3300, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "arch", + "token_id": 3301, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 3302, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "protect", + "token_id": 3303, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 3304, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 3305, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "vehicles", + "token_id": 3306, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3307, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "along", + "token_id": 3308, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "with", + "token_id": 3309, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "improvements", + "token_id": 3310, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "to", + "token_id": 3311, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "the", + "token_id": 3312, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "existing", + "token_id": 3313, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "crosswalks", + "token_id": 3314, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 3315, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "<", + "token_id": 3316, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3317, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3318, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3319, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3320, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3321, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3322, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 3323, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3324, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "marroquín", + "token_id": 3325, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3326, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 3327, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3328, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "josé", + "token_id": 3329, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 3330, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3331, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3332, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3333, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3334, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3335, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "09", + "token_id": 3336, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3337, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 3338, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3339, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3340, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3341, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "bolardos", + "token_id": 3342, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3343, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "arco", + "token_id": 3344, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3345, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3346, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "independencia", + "token_id": 3347, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3348, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3349, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "son", + "token_id": 3350, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "para", + "token_id": 3351, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cuidar", + "token_id": 3352, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 3353, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "patrimonio", + "token_id": 3354, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3355, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "enrique", + "token_id": 3356, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "adame", + "token_id": 3357, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3358, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3359, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3360, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3361, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3362, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3363, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3364, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 3365, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3366, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "telediario", + "token_id": 3367, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3368, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 3369, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3370, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "comunidad", + "token_id": 3371, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3372, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 3373, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3374, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "que", + "token_id": 3375, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3376, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cerraron", + "token_id": 3377, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3378, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "paso", + "token_id": 3379, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3380, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3381, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3382, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "arco", + "token_id": 3383, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3384, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3385, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3386, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3387, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3388, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "independencia", + "token_id": 3389, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3390, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3391, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3392, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3393, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3394, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 3395, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3396, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3397, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3398, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3399, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3400, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3401, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3402, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 3403, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3404, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3405, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3406, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "telediario", + "token_id": 3407, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3408, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3409, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3410, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3411, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3412, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 3413, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "november", + "token_id": 3414, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "2023", + "token_id": 3415, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ",", + "token_id": 3416, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "the", + "token_id": 3417, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "roundabout", + "token_id": 3418, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "was", + "token_id": 3419, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": "completed", + "token_id": 3420, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241016713 + ] + }, + { + "str": ".", + "token_id": 3421, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3422, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3423, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3424, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3425, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3426, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3427, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3428, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3429, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3430, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3431, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3432, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 3433, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3434, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "23", + "token_id": 3435, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3436, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3437, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3438, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "desde", + "token_id": 3439, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "este", + "token_id": 3440, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "jueves", + "token_id": 3441, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "se", + "token_id": 3442, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "reabre", + "token_id": 3443, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "vialidad", + "token_id": 3444, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3445, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "arco", + "token_id": 3446, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3447, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3448, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "independencia", + "token_id": 3449, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3450, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3451, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3452, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3453, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3454, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3455, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3456, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3457, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3458, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 3459, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3460, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "publimetro", + "token_id": 3461, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3462, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 3463, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3464, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 3465, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3466, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 3467, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3468, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "leon", + "token_id": 3469, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3470, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3471, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3472, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 3473, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3474, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "23", + "token_id": 3475, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3476, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "arco", + "token_id": 3477, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3478, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3479, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3480, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3481, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3482, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "independencia", + "token_id": 3483, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3484, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 3485, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3486, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3487, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3488, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "terminan", + "token_id": 3489, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3490, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "obras", + "token_id": 3491, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3492, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 3493, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3494, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "queda", + "token_id": 3495, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3496, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "libre", + "token_id": 3497, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3498, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3499, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3500, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "circulacion", + "token_id": 3501, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3502, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3503, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 3504, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3505, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3506, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3507, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3508, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3509, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3510, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3511, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 3512, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3513, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3514, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3515, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "publimetro", + "token_id": 3516, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "méxico", + "token_id": 3517, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3518, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 3519, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3520, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 3521, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3522, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3523, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3524, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3525, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3526, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3527, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3528, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3529, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3530, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "crime", + "token_id": 3531, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 3532, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "policing", + "token_id": 3533, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3534, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3535, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3536, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3537, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 3538, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "september", + "token_id": 3539, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "2022", + "token_id": 3540, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ",", + "token_id": 3541, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "colosio", + "token_id": 3542, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "announced", + "token_id": 3543, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "his", + "token_id": 3544, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "security", + "token_id": 3545, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "strategy", + "token_id": 3546, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3547, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "named", + "token_id": 3548, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3549, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3550, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3551, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "protege", + "token_id": 3552, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3553, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3554, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 3555, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 3556, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "english", + "token_id": 3557, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3558, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3559, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "protects", + "token_id": 3560, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 3561, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3562, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "this", + "token_id": 3563, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "strategy", + "token_id": 3564, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "involved", + "token_id": 3565, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "expanding", + "token_id": 3566, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "police", + "token_id": 3567, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "coverage", + "token_id": 3568, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 3569, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "177", + "token_id": 3570, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 3571, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "343", + "token_id": 3572, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "neighborhoods", + "token_id": 3573, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3574, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "repairing", + "token_id": 3575, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "1", + "token_id": 3576, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ",", + "token_id": 3577, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "700", + "token_id": 3578, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "cctv", + "token_id": 3579, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "cameras", + "token_id": 3580, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ",", + "token_id": 3581, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "and", + "token_id": 3582, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "adding", + "token_id": 3583, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "444", + "token_id": 3584, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "patrol", + "token_id": 3585, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "cars", + "token_id": 3586, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ".", + "token_id": 3587, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "<", + "token_id": 3588, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3589, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3590, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3591, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3592, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3593, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3594, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3595, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3596, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "presenta", + "token_id": 3597, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 3598, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3599, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "estrategia", + "token_id": 3600, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3601, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "seguridad", + "token_id": 3602, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "“monterrey", + "token_id": 3603, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "protege", + "token_id": 3604, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "”", + "token_id": 3605, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": ",", + "token_id": 3606, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "asume", + "token_id": 3607, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "policía", + "token_id": 3608, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "regia", + "token_id": 3609, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "vigilancia", + "token_id": 3610, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "del", + "token_id": 3611, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "norponiente", + "token_id": 3612, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "|", + "token_id": 3613, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3614, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3615, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3616, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3617, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3618, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3619, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 3620, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3621, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3622, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ".", + "token_id": 3623, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "gob", + "token_id": 3624, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ".", + "token_id": 3625, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "mx", + "token_id": 3626, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "/", + "token_id": 3627, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "noticia", + "token_id": 3628, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "/", + "token_id": 3629, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "presenta", + "token_id": 3630, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3631, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 3632, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3633, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "la", + "token_id": 3634, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "-", + "token_id": 3635, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "estrategia", + "token_id": 3636, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3637, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3638, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3639, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "seguridad", + "token_id": 3640, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3641, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3642, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3643, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "protege", + "token_id": 3644, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3645, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 3646, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3647, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3648, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3649, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3650, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3651, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3652, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "-", + "token_id": 3653, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 3654, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "|", + "token_id": 3655, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3656, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3657, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 3658, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ".", + "token_id": 3659, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "monterrey", + "token_id": 3660, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ".", + "token_id": 3661, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "gob", + "token_id": 3662, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ".", + "token_id": 3663, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "mx", + "token_id": 3664, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3665, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3666, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3667, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3668, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3669, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3670, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3671, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3672, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3673, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3674, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3675, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3676, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3677, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3678, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3679, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3680, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "12", + "token_id": 3681, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3682, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 3683, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3684, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3685, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3686, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "amplía", + "token_id": 3687, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3688, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 3689, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "número", + "token_id": 3690, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3691, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "sus", + "token_id": 3692, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "patrullas", + "token_id": 3693, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3694, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3695, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3696, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3697, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3698, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3699, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3700, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "abcnoticias", + "token_id": 3701, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3702, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 3703, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3704, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "local", + "token_id": 3705, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3706, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3707, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3708, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "12", + "token_id": 3709, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3710, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 3711, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3712, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "amplia", + "token_id": 3713, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3714, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3715, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3716, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 3717, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3718, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "numero", + "token_id": 3719, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3720, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3721, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3722, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "sus", + "token_id": 3723, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3724, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "patrullas", + "token_id": 3725, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3726, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "204944", + "token_id": 3727, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3728, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 3729, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3730, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 3731, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3732, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3733, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3734, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3735, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3736, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3737, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3738, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 3739, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3740, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3741, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3742, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "abc", + "token_id": 3743, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "noticias", + "token_id": 3744, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3745, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 3746, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3747, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 3748, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3749, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ar", + "token_id": 3750, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3751, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3752, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3753, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3754, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3755, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 3756, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "also", + "token_id": 3757, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "implemented", + "token_id": 3758, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "a", + "token_id": 3759, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "15", + "token_id": 3760, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 3761, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "increase", + "token_id": 3762, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "in", + "token_id": 3763, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "police", + "token_id": 3764, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "salaries", + "token_id": 3765, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "at", + "token_id": 3766, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3767, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "start", + "token_id": 3768, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "of", + "token_id": 3769, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 3770, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "tenure", + "token_id": 3771, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ",", + "token_id": 3772, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "and", + "token_id": 3773, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 3774, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "february", + "token_id": 3775, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "2024", + "token_id": 3776, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": ",", + "token_id": 3777, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "he", + "token_id": 3778, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "further", + "token_id": 3779, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "increased", + "token_id": 3780, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "it", + "token_id": 3781, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "by", + "token_id": 3782, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241030814 + ] + }, + { + "str": "an", + "token_id": 3783, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "additional", + "token_id": 3784, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "20", + "token_id": 3785, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 3786, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3787, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3788, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3789, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3790, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3791, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3792, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3793, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3794, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3795, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3796, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3797, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3798, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "02", + "token_id": 3799, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3800, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "16", + "token_id": 3801, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3802, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3803, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3804, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "¿", + "token_id": 3805, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cuánto", + "token_id": 3806, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ganarán", + "token_id": 3807, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 3808, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "policías", + "token_id": 3809, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3810, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3811, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "con", + "token_id": 3812, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 3813, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "aumento", + "token_id": 3814, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 3815, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "20", + "token_id": 3816, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 3817, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ciento", + "token_id": 3818, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "?", + "token_id": 3819, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3820, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3821, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3822, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3823, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3824, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3825, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3826, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mvsnoticias", + "token_id": 3827, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3828, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 3829, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3830, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 3831, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3832, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "leon", + "token_id": 3833, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3834, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3835, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3836, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 3837, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3838, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "16", + "token_id": 3839, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3840, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cuanto", + "token_id": 3841, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3842, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ganaran", + "token_id": 3843, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3844, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 3845, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3846, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "policias", + "token_id": 3847, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3848, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3849, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3850, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3851, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3852, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "con", + "token_id": 3853, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3854, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 3855, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3856, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "aumento", + "token_id": 3857, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3858, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 3859, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3860, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "20", + "token_id": 3861, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3862, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 3863, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3864, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ciento", + "token_id": 3865, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3866, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "626957", + "token_id": 3867, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3868, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 3869, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3870, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 3871, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3872, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3873, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3874, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3875, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3876, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 3877, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3878, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 3879, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3880, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3881, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3882, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mvs", + "token_id": 3883, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "noticias", + "token_id": 3884, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3885, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 3886, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3887, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 3888, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3889, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3890, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3891, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3892, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3893, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "despite", + "token_id": 3894, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 3895, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "efforts", + "token_id": 3896, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3897, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3898, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "homicide", + "token_id": 3899, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "rate", + "token_id": 3900, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 3901, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 3902, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "has", + "token_id": 3903, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "remained", + "token_id": 3904, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "relatively", + "token_id": 3905, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "unchanged", + "token_id": 3906, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "during", + "token_id": 3907, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 3908, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3909, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 3910, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "tenure", + "token_id": 3911, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3912, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "only", + "token_id": 3913, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "decreasing", + "token_id": 3914, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 3915, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "226", + "token_id": 3916, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 3917, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "223", + "token_id": 3918, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "annual", + "token_id": 3919, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "deaths", + "token_id": 3920, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "between", + "token_id": 3921, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 3922, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 3923, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3924, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3925, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3926, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3927, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3928, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3929, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3930, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3931, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3932, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3933, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3934, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3935, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3936, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "01", + "token_id": 3937, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3938, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 3939, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3940, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3941, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3942, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "fiscalía", + "token_id": 3943, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3944, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "nl", + "token_id": 3945, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "destaca", + "token_id": 3946, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 3947, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "operativos", + "token_id": 3948, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 3949, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "combate", + "token_id": 3950, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 3951, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3952, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "delincuencia", + "token_id": 3953, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "durante", + "token_id": 3954, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3955, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3956, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3957, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3958, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3959, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3960, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3961, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3962, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "abcnoticias", + "token_id": 3963, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3964, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 3965, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3966, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "seguridad", + "token_id": 3967, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3968, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 3969, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3970, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "1", + "token_id": 3971, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3972, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 3973, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3974, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "fiscalia", + "token_id": 3975, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3976, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 3977, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3978, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "nl", + "token_id": 3979, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3980, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "destaca", + "token_id": 3981, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3982, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 3983, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3984, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "operativos", + "token_id": 3985, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3986, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "combate", + "token_id": 3987, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3988, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 3989, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3990, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "delincuencia", + "token_id": 3991, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3992, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "durante", + "token_id": 3993, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3994, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 3995, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3996, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "207586", + "token_id": 3997, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3998, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 3999, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4000, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 4001, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4002, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4003, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4004, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4005, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4006, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 4007, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4008, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 4009, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4010, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 4011, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4012, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "abc", + "token_id": 4013, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "noticias", + "token_id": 4014, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4015, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 4016, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4017, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 4018, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4019, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4020, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4021, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4022, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4023, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "however", + "token_id": 4024, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4025, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "there", + "token_id": 4026, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "has", + "token_id": 4027, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "been", + "token_id": 4028, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4029, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "decrease", + "token_id": 4030, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4031, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4032, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "perception", + "token_id": 4033, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4034, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "insecurity", + "token_id": 4035, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4036, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 4037, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "69", + "token_id": 4038, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4039, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "8", + "token_id": 4040, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 4041, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "feeling", + "token_id": 4042, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "unsafe", + "token_id": 4043, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4044, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "december", + "token_id": 4045, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2022", + "token_id": 4046, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4047, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "only", + "token_id": 4048, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "58", + "token_id": 4049, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4050, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "6", + "token_id": 4051, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 4052, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "feeling", + "token_id": 4053, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "unsafe", + "token_id": 4054, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4055, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "december", + "token_id": 4056, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 4057, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4058, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4059, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "lowest", + "token_id": 4060, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "since", + "token_id": 4061, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2016", + "token_id": 4062, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4063, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4064, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4065, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4066, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4067, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 4068, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4069, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4070, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4071, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4072, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4073, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4074, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "02", + "token_id": 4075, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4076, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 4077, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4078, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 4079, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4080, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 4081, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "reduce", + "token_id": 4082, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "su", + "token_id": 4083, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "percepción", + "token_id": 4084, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4085, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "inseguridad", + "token_id": 4086, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 4087, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "58", + "token_id": 4088, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4089, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "6", + "token_id": 4090, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 4091, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4092, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 4093, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4094, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 4095, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4096, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4097, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4098, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "abcnoticias", + "token_id": 4099, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4100, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 4101, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4102, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "local", + "token_id": 4103, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4104, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4105, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4106, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 4107, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4108, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 4109, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4110, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 4111, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4112, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "reduce", + "token_id": 4113, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4114, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "su", + "token_id": 4115, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4116, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "percepcion", + "token_id": 4117, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4118, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4119, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4120, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "inseguridad", + "token_id": 4121, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4122, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 4123, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4124, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "586", + "token_id": 4125, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4126, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "209359", + "token_id": 4127, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4128, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 4129, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4130, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 4131, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4132, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4133, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4134, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4135, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4136, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 4137, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4138, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 4139, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4140, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 4141, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4142, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "abc", + "token_id": 4143, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "noticias", + "token_id": 4144, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4145, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 4146, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4147, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 4148, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4149, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ar", + "token_id": 4150, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4151, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4152, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4153, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4154, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4155, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "confidence", + "token_id": 4156, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4157, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4158, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "police", + "token_id": 4159, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "has", + "token_id": 4160, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "also", + "token_id": 4161, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "increased", + "token_id": 4162, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 4163, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "64", + "token_id": 4164, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4165, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "9", + "token_id": 4166, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 4167, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4168, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "68", + "token_id": 4169, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4170, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 4171, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 4172, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "between", + "token_id": 4173, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2022", + "token_id": 4174, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4175, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 4176, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4177, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4178, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "=", + "token_id": 4179, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "=", + "token_id": 4180, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "=", + "token_id": 4181, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "leave", + "token_id": 4182, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "=", + "token_id": 4183, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "=", + "token_id": 4184, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "=", + "token_id": 4185, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "=", + "token_id": 4186, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "on", + "token_id": 4187, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "16", + "token_id": 4188, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "february", + "token_id": 4189, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4190, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4191, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 4192, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "council", + "token_id": 4193, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "of", + "token_id": 4194, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "monterrey", + "token_id": 4195, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "approved", + "token_id": 4196, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "colosio", + "token_id": 4197, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4198, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "s", + "token_id": 4199, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "request", + "token_id": 4200, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "for", + "token_id": 4201, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "a", + "token_id": 4202, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "temporary", + "token_id": 4203, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "leave", + "token_id": 4204, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4205, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "pursue", + "token_id": 4206, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4207, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "senatorial", + "token_id": 4208, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "seat", + "token_id": 4209, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "in", + "token_id": 4210, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4211, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4212, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "2024", + "token_id": 4213, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 4214, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "general", + "token_id": 4215, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "election", + "token_id": 4216, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4217, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": "2024", + "token_id": 4218, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "elections", + "token_id": 4219, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4220, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1226024058 + ] + }, + { + "str": ".", + "token_id": 4221, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4222, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "leave", + "token_id": 4223, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "was", + "token_id": 4224, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "granted", + "token_id": 4225, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "from", + "token_id": 4226, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "the", + "token_id": 4227, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "last", + "token_id": 4228, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "minute", + "token_id": 4229, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "of", + "token_id": 4230, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "29", + "token_id": 4231, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "february", + "token_id": 4232, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "2024", + "token_id": 4233, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4234, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "3", + "token_id": 4235, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "june", + "token_id": 4236, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "2024", + "token_id": 4237, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": ".", + "token_id": 4238, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "betsabé", + "token_id": 4239, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "rocha", + "token_id": 4240, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "nieto", + "token_id": 4241, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 4242, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "appointed", + "token_id": 4243, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "as", + "token_id": 4244, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4245, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "interim", + "token_id": 4246, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "municipal", + "token_id": 4247, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "president", + "token_id": 4248, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "during", + "token_id": 4249, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "colosio", + "token_id": 4250, + "o_rev_id": 1222508286, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4251, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "s", + "token_id": 4252, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "absence", + "token_id": 4253, + "o_rev_id": 1222508286, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "{{", + "token_id": 4254, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "hlist", + "token_id": 4255, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4256, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "politician", + "token_id": 4257, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4258, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4259, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4260, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4261, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "marriage", + "token_id": 4262, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4263, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4264, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "2009", + "token_id": 4265, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4266, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4267, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4268, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "bachelor", + "token_id": 4269, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4270, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "laws", + "token_id": 4271, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4272, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "llb", + "token_id": 4273, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4274, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4275, + "o_rev_id": 1222514326, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4276, + "o_rev_id": 1222514410, + "in": [], + "out": [] + }, + { + "str": "interim", + "token_id": 4277, + "o_rev_id": 1222514410, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4278, + "o_rev_id": 1222514410, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4279, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "grandfather", + "token_id": 4280, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 4281, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "both", + "token_id": 4282, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "politicians", + "token_id": 4283, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "affiliated", + "token_id": 4284, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 4285, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4286, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4287, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "institutional", + "token_id": 4288, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "revolutionary", + "token_id": 4289, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "party", + "token_id": 4290, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4291, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4292, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "pri", + "token_id": 4293, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4294, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4295, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 4296, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 4297, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "father", + "token_id": 4298, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "being", + "token_id": 4299, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4300, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "pri", + "token_id": 4301, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4302, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 4303, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "when", + "token_id": 4304, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4305, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 4306, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "nine", + "token_id": 4307, + "o_rev_id": 1222515761, + "in": [], + "out": [ + 1222516204 + ] + }, + { + "str": "years", + "token_id": 4308, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "old", + "token_id": 4309, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 4310, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4311, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 4312, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "sister", + "token_id": 4313, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "became", + "token_id": 4314, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "orphans", + "token_id": 4315, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "after", + "token_id": 4316, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "their", + "token_id": 4317, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4318, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "1994", + "token_id": 4319, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "followed", + "token_id": 4320, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 4321, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "their", + "token_id": 4322, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4323, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 4324, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "death", + "token_id": 4325, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 4326, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "eight", + "token_id": 4327, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "months", + "token_id": 4328, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "later", + "token_id": 4329, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4330, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "siblings", + "token_id": 4331, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 4332, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "then", + "token_id": 4333, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4334, + "o_rev_id": 1222515761, + "in": [], + "out": [] + }, + { + "str": "eight", + "token_id": 4335, + "o_rev_id": 1222516204, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4336, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4337, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "co", + "token_id": 4338, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4339, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "providing", + "token_id": 4340, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "services", + "token_id": 4341, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "to", + "token_id": 4342, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "it", + "token_id": 4343, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "was", + "token_id": 4344, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "during", + "token_id": 4345, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "this", + "token_id": 4346, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "time", + "token_id": 4347, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "that", + "token_id": 4348, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "an", + "token_id": 4349, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "elected", + "token_id": 4350, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "office", + "token_id": 4351, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4352, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "proposition", + "token_id": 4353, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "in", + "token_id": 4354, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "january", + "token_id": 4355, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 4356, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4357, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4358, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "samuel", + "token_id": 4359, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "garcía", + "token_id": 4360, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4361, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "politician", + "token_id": 4362, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4363, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4364, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "samuel", + "token_id": 4365, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "garcía", + "token_id": 4366, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4367, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4368, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4369, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "then", + "token_id": 4370, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "coordinator", + "token_id": 4371, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4372, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "[[", + "token_id": 4373, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "citizens", + "token_id": 4374, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "'", + "token_id": 4375, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "movement", + "token_id": 4376, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "(", + "token_id": 4377, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "mexico", + "token_id": 4378, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": ")", + "token_id": 4379, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "|", + "token_id": 4380, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "citizens", + "token_id": 4381, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "'", + "token_id": 4382, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "movement", + "token_id": 4383, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "]]", + "token_id": 4384, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "in", + "token_id": 4385, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 4386, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 4387, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4388, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "introduced", + "token_id": 4389, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4390, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 4391, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4392, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "candidate", + "token_id": 4393, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 4394, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4395, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "popularly", + "token_id": 4396, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "elected", + "token_id": 4397, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "office", + "token_id": 4398, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": ",", + "token_id": 4399, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "either", + "token_id": 4400, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 4401, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "the", + "token_id": 4402, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "federal", + "token_id": 4403, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "or", + "token_id": 4404, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "state", + "token_id": 4405, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "level", + "token_id": 4406, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4407, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4408, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4409, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4410, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4411, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 4412, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4413, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4414, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 4415, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4416, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "hijos", + "token_id": 4417, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4418, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4419, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 4420, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "basave", + "token_id": 4421, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "buscan", + "token_id": 4422, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "ser", + "token_id": 4423, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "candidatos", + "token_id": 4424, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 4425, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "mc", + "token_id": 4426, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 4427, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 4428, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 4429, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4430, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 4431, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4432, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 4433, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4434, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4435, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4436, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 4437, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4438, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "eluniversal", + "token_id": 4439, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4440, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 4441, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4442, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 4443, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4444, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "elecciones", + "token_id": 4445, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4446, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 4447, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4448, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "hijos", + "token_id": 4449, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4450, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4451, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4452, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4453, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4454, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 4455, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4456, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "basave", + "token_id": 4457, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4458, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "buscan", + "token_id": 4459, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4460, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "ser", + "token_id": 4461, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4462, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "candidatos", + "token_id": 4463, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4464, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 4465, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4466, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "mc", + "token_id": 4467, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4468, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 4469, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4470, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 4471, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4472, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "leon", + "token_id": 4473, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4474, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4475, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 4476, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4477, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4478, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4479, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4480, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4481, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 4482, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4483, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 4484, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4485, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 4486, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4487, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 4488, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "universal", + "token_id": 4489, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4490, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 4491, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4492, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 4493, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4494, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4495, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4496, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4497, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4498, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4499, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "defeating", + "token_id": 4500, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4501, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "incumbent", + "token_id": 4502, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4503, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4504, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "josé", + "token_id": 4505, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "arturo", + "token_id": 4506, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "salinas", + "token_id": 4507, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "garza", + "token_id": 4508, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4509, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "arturo", + "token_id": 4510, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "salinas", + "token_id": 4511, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "garza", + "token_id": 4512, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": "]]", + "token_id": 4513, + "o_rev_id": 1222537422, + "in": [], + "out": [ + 1297970641 + ] + }, + { + "str": ",", + "token_id": 4514, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 4515, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "6", + "token_id": 4516, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4517, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "78", + "token_id": 4518, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "points", + "token_id": 4519, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4520, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 4521, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 4522, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4523, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "only", + "token_id": 4524, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "candidate", + "token_id": 4525, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 4526, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 4527, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4528, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 4529, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4530, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "secure", + "token_id": 4531, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4532, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "seat", + "token_id": 4533, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "through", + "token_id": 4534, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 4535, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4536, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "past", + "token_id": 4537, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4538, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4539, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4540, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "post", + "token_id": 4541, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "voting", + "token_id": 4542, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4543, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4544, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "election", + "token_id": 4545, + "o_rev_id": 1222537422, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4546, + "o_rev_id": 1226024058, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "monterrey", + "token_id": 4547, + "o_rev_id": 1226024058, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "city", + "token_id": 4548, + "o_rev_id": 1226024058, + "in": [], + "out": [ + 1240392688 + ] + }, + { + "str": "one", + "token_id": 4549, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4550, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 4551, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 4552, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4553, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 4554, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4555, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 4556, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4557, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 4558, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4559, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4560, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 4561, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4562, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "seats", + "token_id": 4563, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4564, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 4565, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4566, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4567, + "o_rev_id": 1226024058, + "in": [], + "out": [] + }, + { + "str": "4", + "token_id": 4568, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "june", + "token_id": 4569, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4570, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4571, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "predecessor", + "token_id": 4572, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 4573, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "betsabé", + "token_id": 4574, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "rocha", + "token_id": 4575, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "nieto", + "token_id": 4576, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4577, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "interim", + "token_id": 4578, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4579, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4580, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "term", + "token_id": 4581, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 4582, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "start2", + "token_id": 4583, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 4584, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4585, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "term", + "token_id": 4586, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 4587, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "end2", + "token_id": 4588, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 4589, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "predecessor2", + "token_id": 4590, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "|", + "token_id": 4591, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "successor2", + "token_id": 4592, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "=", + "token_id": 4593, + "o_rev_id": 1227424767, + "in": [], + "out": [] + }, + { + "str": "office3", + "token_id": 4594, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "start3", + "token_id": 4595, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "end3", + "token_id": 4596, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "predecessor3", + "token_id": 4597, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "successor3", + "token_id": 4598, + "o_rev_id": 1227424767, + "in": [], + "out": [ + 1234010057 + ] + }, + { + "str": "senator", + "token_id": 4599, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "-", + "token_id": 4600, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "elect", + "token_id": 4601, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "the", + "token_id": 4602, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "[[", + "token_id": 4603, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 4604, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4605, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4606, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "republic", + "token_id": 4607, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4608, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 4609, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4610, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4611, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "congress", + "token_id": 4612, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "of", + "token_id": 4613, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4614, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "union", + "token_id": 4615, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "]]", + "token_id": 4616, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4617, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "br", + "token_id": 4618, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "/", + "token_id": 4619, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": ">", + "token_id": 4620, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "for", + "token_id": 4621, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "[[", + "token_id": 4622, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "nuevo", + "token_id": 4623, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "león", + "token_id": 4624, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "]]", + "token_id": 4625, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "1", + "token_id": 4626, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "september", + "token_id": 4627, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4628, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "predecessor2", + "token_id": 4629, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "start3", + "token_id": 4630, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "end3", + "token_id": 4631, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "predecessor3", + "token_id": 4632, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "successor3", + "token_id": 4633, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "office4", + "token_id": 4634, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "start4", + "token_id": 4635, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "end4", + "token_id": 4636, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4637, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "predecessor4", + "token_id": 4638, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4639, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "successor4", + "token_id": 4640, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "succeeding", + "token_id": 4641, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1243950410 + ] + }, + { + "str": "[[", + "token_id": 4642, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "víctor", + "token_id": 4643, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "oswaldo", + "token_id": 4644, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "fuentes", + "token_id": 4645, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "solís", + "token_id": 4646, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4647, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "office2", + "token_id": 4648, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4649, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "municipal", + "token_id": 4650, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "president", + "token_id": 4651, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4652, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 4653, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4654, + "o_rev_id": 1234010057, + "in": [], + "out": [] + }, + { + "str": "termstart2", + "token_id": 4655, + "o_rev_id": 1234010057, + "in": [], + "out": [ + 1347221443 + ] + }, + { + "str": "took", + "token_id": 4656, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4657, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "absence", + "token_id": 4658, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4659, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4660, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4661, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4662, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 4663, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4664, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4665, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "=", + "token_id": 4666, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "jornada", + "token_id": 4667, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4668, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "first", + "token_id": 4669, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "=", + "token_id": 4670, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "la", + "token_id": 4671, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4672, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "last2", + "token_id": 4673, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4674, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "corresponsal", + "token_id": 4675, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4676, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "first2", + "token_id": 4677, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4678, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "raúl", + "token_id": 4679, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "robledo", + "token_id": 4680, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4681, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4682, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4683, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4684, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "02", + "token_id": 4685, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4686, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "15", + "token_id": 4687, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4688, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 4689, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4690, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "aprueba", + "token_id": 4691, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "congreso", + "token_id": 4692, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4693, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "nl", + "token_id": 4694, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "licencia", + "token_id": 4695, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "para", + "token_id": 4696, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 4697, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 4698, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4699, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "riojas", + "token_id": 4700, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4701, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 4702, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4703, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 4704, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4705, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4706, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4707, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 4708, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4709, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "jornada", + "token_id": 4710, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4711, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 4712, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4713, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 4714, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4715, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "noticia", + "token_id": 4716, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4717, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4718, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4719, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "02", + "token_id": 4720, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4721, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "15", + "token_id": 4722, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4723, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "estados", + "token_id": 4724, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4725, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "aprueba", + "token_id": 4726, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4727, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "congreso", + "token_id": 4728, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4729, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4730, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4731, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "nl", + "token_id": 4732, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4733, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "licencia", + "token_id": 4734, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4735, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "para", + "token_id": 4736, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4737, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 4738, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4739, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 4740, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4741, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4742, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4743, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "1011", + "token_id": 4744, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4745, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 4746, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4747, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4748, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4749, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4750, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4751, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 4752, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4753, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "15", + "token_id": 4754, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4755, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 4756, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4757, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 4758, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "jornada", + "token_id": 4759, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4760, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 4761, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4762, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 4763, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4764, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4765, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4766, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4767, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4768, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 4769, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "temporarily", + "token_id": 4770, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "handed", + "token_id": 4771, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "over", + "token_id": 4772, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 4773, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "duties", + "token_id": 4774, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 4775, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "29", + "token_id": 4776, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "february", + "token_id": 4777, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4778, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "secured", + "token_id": 4779, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4780, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 4781, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "seat", + "token_id": 4782, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4783, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4784, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241048146 + ] + }, + { + "str": "resumed", + "token_id": 4785, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 4786, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "role", + "token_id": 4787, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 4788, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 4789, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "4", + "token_id": 4790, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "june", + "token_id": 4791, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4792, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241048146 + ] + }, + { + "str": "<", + "token_id": 4793, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4794, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4795, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4796, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 4797, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4798, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4799, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4800, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4801, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4802, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4803, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 4804, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4805, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "04", + "token_id": 4806, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4807, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 4808, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4809, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 4810, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 4811, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4812, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "regresa", + "token_id": 4813, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4814, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 4815, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "alcaldía", + "token_id": 4816, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4817, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 4818, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ";", + "token_id": 4819, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "esperará", + "token_id": 4820, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "resultados", + "token_id": 4821, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "oficiales", + "token_id": 4822, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4823, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 4824, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "elección", + "token_id": 4825, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 4826, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 4827, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4828, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 4829, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4830, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 4831, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4832, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4833, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4834, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "latinus", + "token_id": 4835, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4836, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 4837, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4838, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "eleccion", + "token_id": 4839, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4840, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4841, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4842, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4843, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4844, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "6", + "token_id": 4845, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4846, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "4", + "token_id": 4847, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4848, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 4849, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4850, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 4851, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4852, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4853, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4854, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "regresa", + "token_id": 4855, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4856, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 4857, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4858, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "alcaldia", + "token_id": 4859, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4860, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4861, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4862, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 4863, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4864, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "esperara", + "token_id": 4865, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4866, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "resultados", + "token_id": 4867, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4868, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "oficiales", + "token_id": 4869, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4870, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4871, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4872, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 4873, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4874, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "eleccion", + "token_id": 4875, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4876, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 4877, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4878, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 4879, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4880, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "116688", + "token_id": 4881, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4882, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 4883, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4884, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 4885, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4886, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4887, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4888, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4889, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4890, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 4891, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4892, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "15", + "token_id": 4893, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4894, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 4895, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4896, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "latinus", + "token_id": 4897, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4898, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 4899, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4900, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 4901, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4902, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4903, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4904, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4905, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4906, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4907, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241048146 + ] + }, + { + "str": "is", + "token_id": 4908, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "set", + "token_id": 4909, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "to", + "token_id": 4910, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "step", + "token_id": 4911, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "down", + "token_id": 4912, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "again", + "token_id": 4913, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "to", + "token_id": 4914, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "assume", + "token_id": 4915, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "his", + "token_id": 4916, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "seat", + "token_id": 4917, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "in", + "token_id": 4918, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "senate", + "token_id": 4919, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": ".", + "token_id": 4920, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4921, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4922, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4923, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4924, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 4925, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4926, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4927, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 4928, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4929, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "rendirá", + "token_id": 4930, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "su", + "token_id": 4931, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "último", + "token_id": 4932, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "informe", + "token_id": 4933, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "antes", + "token_id": 4934, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "de", + "token_id": 4935, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "irse", + "token_id": 4936, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "al", + "token_id": 4937, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "senado", + "token_id": 4938, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "|", + "token_id": 4939, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 4940, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4941, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 4942, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4943, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4944, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4945, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "elporvenir", + "token_id": 4946, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 4947, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4948, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "local", + "token_id": 4949, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4950, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "rendira", + "token_id": 4951, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "-", + "token_id": 4952, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "su", + "token_id": 4953, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "-", + "token_id": 4954, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "ultimo", + "token_id": 4955, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "-", + "token_id": 4956, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "informe", + "token_id": 4957, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "-", + "token_id": 4958, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 4959, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4960, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "antes", + "token_id": 4961, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "-", + "token_id": 4962, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 4963, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4964, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "irse", + "token_id": 4965, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "-", + "token_id": 4966, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 4967, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "-", + "token_id": 4968, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 4969, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "/", + "token_id": 4970, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "760785", + "token_id": 4971, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "|", + "token_id": 4972, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 4973, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4974, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4975, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4976, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4977, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4978, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 4979, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4980, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "15", + "token_id": 4981, + "o_rev_id": 1240392688, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "|", + "token_id": 4982, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 4983, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4984, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 4985, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "porvenir", + "token_id": 4986, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4987, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 4988, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4989, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 4990, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4991, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4992, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4993, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4994, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4995, + "o_rev_id": 1240392688, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4996, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 4997, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "–", + "token_id": 4998, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 4999, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 5000, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "during", + "token_id": 5001, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 5002, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 5003, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "year", + "token_id": 5004, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5005, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 5006, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "enjoyed", + "token_id": 5007, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 5008, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "approval", + "token_id": 5009, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "rating", + "token_id": 5010, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 5011, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "54", + "token_id": 5012, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5013, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "4", + "token_id": 5014, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 5015, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5016, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "according", + "token_id": 5017, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 5018, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5019, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5020, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "¿", + "token_id": 5021, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "cómo", + "token_id": 5022, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "vamos", + "token_id": 5023, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 5024, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 5025, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "?", + "token_id": 5026, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5027, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5028, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5029, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5030, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5031, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5032, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 5033, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 5034, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 5035, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5036, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 5037, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5038, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "briones", + "token_id": 5039, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5040, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 5041, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5042, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "jesús", + "token_id": 5043, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "iván", + "token_id": 5044, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "moreno", + "token_id": 5045, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5046, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5047, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5048, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 5049, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5050, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "02", + "token_id": 5051, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5052, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "28", + "token_id": 5053, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5054, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 5055, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5056, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "estos", + "token_id": 5057, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "son", + "token_id": 5058, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 5059, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "alcaldes", + "token_id": 5060, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "con", + "token_id": 5061, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 5062, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "aprobación", + "token_id": 5063, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5064, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 5065, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "zona", + "token_id": 5066, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "metropolitana", + "token_id": 5067, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5068, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5069, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5070, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 5071, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5072, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 5073, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5074, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5075, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5076, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 5077, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5078, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "reporteindigo", + "token_id": 5079, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5080, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 5081, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5082, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 5083, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5084, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "estos", + "token_id": 5085, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5086, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "son", + "token_id": 5087, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5088, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 5089, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5090, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "alcaldes", + "token_id": 5091, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5092, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "con", + "token_id": 5093, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5094, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 5095, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5096, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "aprobacion", + "token_id": 5097, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5098, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5099, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5100, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 5101, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5102, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "zona", + "token_id": 5103, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5104, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "metropolitana", + "token_id": 5105, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5106, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5107, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5108, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5109, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5110, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5111, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 5112, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5113, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5114, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5115, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5116, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5117, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5118, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5119, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "15", + "token_id": 5120, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5121, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 5122, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5123, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 5124, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "indigo", + "token_id": 5125, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5126, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 5127, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5128, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 5129, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5130, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 5131, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 5132, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5133, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5134, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5135, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5136, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "however", + "token_id": 5137, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5138, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 5139, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "approval", + "token_id": 5140, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "rating", + "token_id": 5141, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "dropped", + "token_id": 5142, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 5143, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "23", + "token_id": 5144, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "points", + "token_id": 5145, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 5146, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 5147, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5148, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "largely", + "token_id": 5149, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "due", + "token_id": 5150, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 5151, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5152, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "slow", + "token_id": 5153, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "pace", + "token_id": 5154, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 5155, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "construction", + "token_id": 5156, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "projects", + "token_id": 5157, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 5158, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 5159, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "perceived", + "token_id": 5160, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "rise", + "token_id": 5161, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 5162, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "crime", + "token_id": 5163, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5164, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "becoming", + "token_id": 5165, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5166, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "lowest", + "token_id": 5167, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5168, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "rated", + "token_id": 5169, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 5170, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 5171, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5172, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 5173, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5174, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "metropolitan", + "token_id": 5175, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "area", + "token_id": 5176, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 5177, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5178, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5179, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5180, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5181, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 5182, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 5183, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 5184, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5185, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 5186, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5187, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "lpo", + "token_id": 5188, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 5189, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5190, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 5191, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5192, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 5193, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5194, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 5195, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "aprobación", + "token_id": 5196, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5197, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 5198, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "se", + "token_id": 5199, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "desploma", + "token_id": 5200, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 5201, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "se", + "token_id": 5202, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "refleja", + "token_id": 5203, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5204, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 5205, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "contienda", + "token_id": 5206, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 5207, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 5208, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 5209, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5210, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 5211, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5212, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 5213, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5214, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5215, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5216, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 5217, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5218, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "lapoliticaonline", + "token_id": 5219, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5220, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 5221, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5222, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 5223, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5224, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "nuevoleon", + "token_id": 5225, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5226, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 5227, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5228, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 5229, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5230, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 5231, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5232, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 5233, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5234, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "baja", + "token_id": 5235, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5236, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "pierde", + "token_id": 5237, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5238, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "hasta", + "token_id": 5239, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5240, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "20", + "token_id": 5241, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5242, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "puntos", + "token_id": 5243, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5244, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5245, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5246, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "aprobacion", + "token_id": 5247, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5248, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5249, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5250, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 5251, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5252, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "2023", + "token_id": 5253, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5254, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5255, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 5256, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5257, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5258, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5259, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5260, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5261, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5262, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5263, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "15", + "token_id": 5264, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5265, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 5266, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5267, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 5268, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5269, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "lapoliticaonline", + "token_id": 5270, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5271, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 5272, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5273, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 5274, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5275, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 5276, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5277, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "ar", + "token_id": 5278, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 5279, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5280, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5281, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5282, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5283, + "o_rev_id": 1240511617, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5284, + "o_rev_id": 1240517802, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "serving", + "token_id": 5285, + "o_rev_id": 1240517802, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "as", + "token_id": 5286, + "o_rev_id": 1240517802, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "since", + "token_id": 5287, + "o_rev_id": 1240517802, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "2021", + "token_id": 5288, + "o_rev_id": 1240517802, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": ".", + "token_id": 5289, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "member", + "token_id": 5290, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 5291, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 5292, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 5293, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5294, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 5295, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 5296, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 5297, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 5298, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5299, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 5300, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5301, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 5302, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 5303, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5304, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 5305, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "served", + "token_id": 5306, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 5307, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 5308, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "deputy", + "token_id": 5309, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 5310, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 5311, + "o_rev_id": 1240517802, + "in": [], + "out": [] + }, + { + "str": "urban", + "token_id": 5312, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "design", + "token_id": 5313, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 5314, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "launched", + "token_id": 5315, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5316, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5317, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "corredores", + "token_id": 5318, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "verdes", + "token_id": 5319, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5320, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5321, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 5322, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 5323, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "english", + "token_id": 5324, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5325, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 5326, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "initiative", + "token_id": 5327, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 5328, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "make", + "token_id": 5329, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5330, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "more", + "token_id": 5331, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "walkable", + "token_id": 5332, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 5333, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "improving", + "token_id": 5334, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "crosswalks", + "token_id": 5335, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5336, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "adding", + "token_id": 5337, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "key", + "token_id": 5338, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "downtown", + "token_id": 5339, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "however", + "token_id": 5340, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5341, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5342, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "initiative", + "token_id": 5343, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "faced", + "token_id": 5344, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "criticism", + "token_id": 5345, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 5346, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "causing", + "token_id": 5347, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "traffic", + "token_id": 5348, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "disruptions", + "token_id": 5349, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "due", + "token_id": 5350, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 5351, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "lane", + "token_id": 5352, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "closures", + "token_id": 5353, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 5354, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "delays", + "token_id": 5355, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 5356, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "construction", + "token_id": 5357, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5358, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5359, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5360, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5361, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 5362, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 5363, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 5364, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5365, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 5366, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5367, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "acumulan", + "token_id": 5368, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "retrasos", + "token_id": 5369, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "corredores", + "token_id": 5370, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "verdes", + "token_id": 5371, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5372, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 5373, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5374, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 5375, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5376, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5377, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5378, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 5379, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5380, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "elnorte", + "token_id": 5381, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5382, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 5383, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5384, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "acumulan", + "token_id": 5385, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5386, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "retrasos", + "token_id": 5387, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5388, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "corredores", + "token_id": 5389, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5390, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "verdes", + "token_id": 5391, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5392, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ar2840100", + "token_id": 5393, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5394, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 5395, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5396, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5397, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5398, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5399, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5400, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5401, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5402, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 5403, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5404, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 5405, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5406, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 5407, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5408, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "elnorte", + "token_id": 5409, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5410, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 5411, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5412, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 5413, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5414, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 5415, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 5416, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5417, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5418, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5419, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5420, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "drivers", + "token_id": 5421, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "also", + "token_id": 5422, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "voiced", + "token_id": 5423, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "frustration", + "token_id": 5424, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "over", + "token_id": 5425, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reduced", + "token_id": 5426, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "lanes", + "token_id": 5427, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 5428, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "parking", + "token_id": 5429, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "along", + "token_id": 5430, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5431, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reconfigured", + "token_id": 5432, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "avenues", + "token_id": 5433, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5434, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "infrastructure", + "token_id": 5435, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "improvements", + "token_id": 5436, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 5437, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "maintenance", + "token_id": 5438, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 5439, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "carried", + "token_id": 5440, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "out", + "token_id": 5441, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 5442, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "several", + "token_id": 5443, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5444, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "landmarks", + "token_id": 5445, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5446, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "including", + "token_id": 5447, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5448, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 5449, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "mirador", + "token_id": 5450, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 5451, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "obispado", + "token_id": 5452, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5453, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "'", + "token_id": 5454, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5455, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "mirador", + "token_id": 5456, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "del", + "token_id": 5457, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "obispado", + "token_id": 5458, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "'", + "token_id": 5459, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5460, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 5461, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": ",", + "token_id": 5462, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "the", + "token_id": 5463, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "[[", + "token_id": 5464, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "faro", + "token_id": 5465, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 5466, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "comercio", + "token_id": 5467, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5468, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "'", + "token_id": 5469, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5470, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "faro", + "token_id": 5471, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "del", + "token_id": 5472, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "comercio", + "token_id": 5473, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "'", + "token_id": 5474, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "'", + "token_id": 5475, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": "]]", + "token_id": 5476, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1262640912 + ] + }, + { + "str": ",", + "token_id": 5477, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 5478, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5479, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5480, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5481, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 5482, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "barrio", + "token_id": 5483, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "antiguo", + "token_id": 5484, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 5485, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5486, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 5487, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5488, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5489, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5490, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5491, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 5492, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 5493, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 5494, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5495, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5496, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5497, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5498, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5499, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "02", + "token_id": 5500, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5501, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "04", + "token_id": 5502, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5503, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 5504, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5505, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "obra", + "token_id": 5506, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5507, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "rehabilitación", + "token_id": 5508, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5509, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 5510, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "obispado", + "token_id": 5511, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "lleva", + "token_id": 5512, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "80", + "token_id": 5513, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 5514, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5515, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "avance", + "token_id": 5516, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5517, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "municipio", + "token_id": 5518, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5519, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5520, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5521, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 5522, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5523, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 5524, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5525, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5526, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5527, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "abcnoticias", + "token_id": 5528, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5529, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 5530, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5531, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "local", + "token_id": 5532, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5533, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5534, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5535, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 5536, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5537, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "4", + "token_id": 5538, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5539, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "obra", + "token_id": 5540, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5541, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5542, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5543, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "rehabilitacion", + "token_id": 5544, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5545, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5546, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5547, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 5548, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5549, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "obispado", + "token_id": 5550, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5551, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "lleva", + "token_id": 5552, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5553, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "80", + "token_id": 5554, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5555, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5556, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5557, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "avance", + "token_id": 5558, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5559, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "municipio", + "token_id": 5560, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5561, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5562, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5563, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5564, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5565, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "208784", + "token_id": 5566, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5567, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 5568, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5569, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 5570, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5571, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5572, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5573, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5574, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5575, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5576, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5577, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 5578, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5579, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 5580, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5581, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "abc", + "token_id": 5582, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "noticias", + "token_id": 5583, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5584, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 5585, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5586, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 5587, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5588, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ar", + "token_id": 5589, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 5590, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5591, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5592, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5593, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5594, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5595, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5596, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5597, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 5598, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 5599, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 5600, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5601, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 5602, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5603, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "martínez", + "token_id": 5604, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5605, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 5606, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5607, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "mónica", + "token_id": 5608, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "patricia", + "token_id": 5609, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "zúñiga", + "token_id": 5610, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5611, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5612, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5613, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5614, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5615, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5616, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5617, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "14", + "token_id": 5618, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5619, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 5620, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5621, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "municipio", + "token_id": 5622, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5623, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5624, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "termina", + "token_id": 5625, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "rehabilitación", + "token_id": 5626, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 5627, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "faro", + "token_id": 5628, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 5629, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "comercio", + "token_id": 5630, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5631, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 5632, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5633, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 5634, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5635, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5636, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5637, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 5638, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5639, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reporteindigo", + "token_id": 5640, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5641, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 5642, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5643, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 5644, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5645, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "concluyen", + "token_id": 5646, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5647, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "trabajos", + "token_id": 5648, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5649, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5650, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5651, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "rehabilitacion", + "token_id": 5652, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5653, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5654, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5655, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 5656, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5657, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "faro", + "token_id": 5658, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5659, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 5660, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5661, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "comercio", + "token_id": 5662, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5663, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5664, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5665, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5666, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5667, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5668, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 5669, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5670, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5671, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5672, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5673, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5674, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5675, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5676, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 5677, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5678, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 5679, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5680, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 5681, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "indigo", + "token_id": 5682, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5683, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 5684, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5685, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 5686, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5687, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 5688, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 5689, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5690, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5691, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5692, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5693, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 5694, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 5695, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "roundabout", + "token_id": 5696, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 5697, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 5698, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "constructed", + "token_id": 5699, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "around", + "token_id": 5700, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5701, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "city", + "token_id": 5702, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5703, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 5704, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "address", + "token_id": 5705, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5706, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "lack", + "token_id": 5707, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "green", + "token_id": 5708, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "spaces", + "token_id": 5709, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 5710, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5711, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 5712, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "rehabilitated", + "token_id": 5713, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "numerous", + "token_id": 5714, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "neighborhood", + "token_id": 5715, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "across", + "token_id": 5716, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5717, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "city", + "token_id": 5718, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5719, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5720, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5721, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5722, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 5723, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 5724, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 5725, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5726, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 5727, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5728, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "staff", + "token_id": 5729, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5730, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 5731, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5732, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "indigo", + "token_id": 5733, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5734, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5735, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5736, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2022", + "token_id": 5737, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5738, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "11", + "token_id": 5739, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5740, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "14", + "token_id": 5741, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5742, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 5743, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5744, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "programa", + "token_id": 5745, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "municipal", + "token_id": 5746, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "“monterrey", + "token_id": 5747, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "construye", + "token_id": 5748, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "”", + "token_id": 5749, + "o_rev_id": 1241016713, + "in": [], + "out": [ + 1287677921 + ] + }, + { + "str": "habilita", + "token_id": 5750, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "espacios", + "token_id": 5751, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "públicos", + "token_id": 5752, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 5753, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "vialidades", + "token_id": 5754, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5755, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "zona", + "token_id": 5756, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "sur", + "token_id": 5757, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5758, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 5759, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5760, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 5761, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5762, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5763, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5764, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 5765, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5766, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reporteindigo", + "token_id": 5767, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5768, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 5769, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5770, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 5771, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5772, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "programa", + "token_id": 5773, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5774, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "municipal", + "token_id": 5775, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5776, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5777, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5778, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "construye", + "token_id": 5779, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5780, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "habilita", + "token_id": 5781, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5782, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "espacios", + "token_id": 5783, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5784, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "publicos", + "token_id": 5785, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5786, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 5787, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5788, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "vialidades", + "token_id": 5789, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5790, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 5791, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5792, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "zona", + "token_id": 5793, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5794, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "sur", + "token_id": 5795, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5796, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5797, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 5798, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5799, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5800, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5801, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5802, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5803, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5804, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5805, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 5806, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5807, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 5808, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5809, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 5810, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "indigo", + "token_id": 5811, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5812, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 5813, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5814, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 5815, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5816, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 5817, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 5818, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5819, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5820, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5821, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5822, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "larger", + "token_id": 5823, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "parks", + "token_id": 5824, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5825, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "including", + "token_id": 5826, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5827, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "also", + "token_id": 5828, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "reforested", + "token_id": 5829, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 5830, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 5831, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "part", + "token_id": 5832, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 5833, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "these", + "token_id": 5834, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "efforts", + "token_id": 5835, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 5836, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "fundidora", + "token_id": 5837, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "park", + "token_id": 5838, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 5839, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 5840, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "parque", + "token_id": 5841, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "españa", + "token_id": 5842, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 5843, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "connected", + "token_id": 5844, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 5845, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "pedestrian", + "token_id": 5846, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "bridge", + "token_id": 5847, + "o_rev_id": 1241016713, + "in": [], + "out": [] + }, + { + "str": "introduced", + "token_id": 5848, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5849, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5850, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "which", + "token_id": 5851, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "expanded", + "token_id": 5852, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5853, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 5854, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5855, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "staff", + "token_id": 5856, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5857, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 5858, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5859, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "indigo", + "token_id": 5860, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5861, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5862, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5863, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "2022", + "token_id": 5864, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5865, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "09", + "token_id": 5866, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5867, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 5868, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 5869, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 5870, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "reporteindigo", + "token_id": 5871, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 5872, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 5873, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 5874, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5875, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 5876, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5877, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5878, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5879, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 5880, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "reporte", + "token_id": 5881, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "indigo", + "token_id": 5882, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5883, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 5884, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5885, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 5886, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5887, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "installed", + "token_id": 5888, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "6", + "token_id": 5889, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5890, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "000", + "token_id": 5891, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "security", + "token_id": 5892, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "cameras", + "token_id": 5893, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5894, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5895, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5896, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5897, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 5898, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 5899, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 5900, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5901, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5902, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5903, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5904, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5905, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 5906, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5907, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "13", + "token_id": 5908, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5909, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 5910, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5911, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5912, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "quiere", + "token_id": 5913, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "subir", + "token_id": 5914, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 5915, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "6", + "token_id": 5916, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "mil", + "token_id": 5917, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 5918, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "número", + "token_id": 5919, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5920, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "cámaras", + "token_id": 5921, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5922, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "seguridad", + "token_id": 5923, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5924, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 5925, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5926, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 5927, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 5928, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5929, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5930, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "abcnoticias", + "token_id": 5931, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5932, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 5933, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5934, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "seguridad", + "token_id": 5935, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5936, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5937, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5938, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "6", + "token_id": 5939, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5940, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "13", + "token_id": 5941, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5942, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 5943, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5944, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "quiere", + "token_id": 5945, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5946, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "subir", + "token_id": 5947, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5948, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "mil", + "token_id": 5949, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5950, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 5951, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5952, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "numero", + "token_id": 5953, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5954, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5955, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5956, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "camaras", + "token_id": 5957, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5958, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 5959, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5960, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "seguridad", + "token_id": 5961, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5962, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "218708", + "token_id": 5963, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 5964, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 5965, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5966, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 5967, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5968, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 5969, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5970, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 5971, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5972, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 5973, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5974, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 5975, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5976, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 5977, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5978, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "abc", + "token_id": 5979, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "noticias", + "token_id": 5980, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 5981, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 5982, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 5983, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 5984, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 5985, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5986, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 5987, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5988, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5989, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "placed", + "token_id": 5990, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "panic", + "token_id": 5991, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "buttons", + "token_id": 5992, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "throughout", + "token_id": 5993, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 5994, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "city", + "token_id": 5995, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 5996, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 5997, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 5998, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 5999, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 6000, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 6001, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 6002, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6003, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 6004, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6005, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "instala", + "token_id": 6006, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 6007, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "botones", + "token_id": 6008, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 6009, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "alerta", + "token_id": 6010, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6011, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 6012, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6013, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 6014, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 6015, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6016, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6017, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "elporvenir", + "token_id": 6018, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6019, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 6020, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6021, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "local", + "token_id": 6022, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6023, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "instala", + "token_id": 6024, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6025, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 6026, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6027, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "botones", + "token_id": 6028, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6029, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 6030, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6031, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "alerta", + "token_id": 6032, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6033, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "755543", + "token_id": 6034, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6035, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 6036, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6037, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 6038, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6039, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6040, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6041, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 6042, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6043, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 6044, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6045, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 6046, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6047, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 6048, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "porvenir", + "token_id": 6049, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6050, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 6051, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6052, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 6053, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 6054, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 6055, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6056, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 6057, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 6058, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6059, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "added", + "token_id": 6060, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "444", + "token_id": 6061, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "patrol", + "token_id": 6062, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "cars", + "token_id": 6063, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 6064, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6065, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "police", + "token_id": 6066, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "force", + "token_id": 6067, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6068, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "increased", + "token_id": 6069, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "police", + "token_id": 6070, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "salaries", + "token_id": 6071, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 6072, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "beginning", + "token_id": 6073, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "term", + "token_id": 6074, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "implemented", + "token_id": 6075, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "raise", + "token_id": 6076, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6077, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "february", + "token_id": 6078, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6079, + "o_rev_id": 1241030814, + "in": [], + "out": [] + }, + { + "str": "15", + "token_id": 6080, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "november", + "token_id": 6081, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "2020", + "token_id": 6082, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6083, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6084, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 6085, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6086, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 6087, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 6088, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 6089, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 6090, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6091, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 6092, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6093, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 6094, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6095, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "announced", + "token_id": 6096, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 6097, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "senator", + "token_id": 6098, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6099, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "samuel", + "token_id": 6100, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "garcía", + "token_id": 6101, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 6102, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "politician", + "token_id": 6103, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 6104, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6105, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "samuel", + "token_id": 6106, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "garcía", + "token_id": 6107, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6108, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6109, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6110, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 6111, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "seeking", + "token_id": 6112, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6113, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "party", + "token_id": 6114, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6115, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 6116, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "gubernatorial", + "token_id": 6117, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "nomination", + "token_id": 6118, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6119, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "garcía", + "token_id": 6120, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 6121, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "selected", + "token_id": 6122, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 6123, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6124, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "gubernatorial", + "token_id": 6125, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "nominee", + "token_id": 6126, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6127, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6128, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 6129, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "instead", + "token_id": 6130, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6131, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6132, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6133, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6134, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 6135, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6136, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6137, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "republic", + "token_id": 6138, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6139, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6140, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6141, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6142, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6143, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "election", + "token_id": 6144, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6145, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6146, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6147, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6148, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6149, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6150, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6151, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 6152, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 6153, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "election", + "token_id": 6154, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6155, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6156, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6157, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6158, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "martha", + "token_id": 6159, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "herrera", + "token_id": 6160, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "gonzález", + "token_id": 6161, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 6162, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "nominated", + "token_id": 6163, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 6164, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6165, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 6166, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6167, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 6168, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 6169, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 6170, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 6171, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6172, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "citizens", + "token_id": 6173, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6174, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "movement", + "token_id": 6175, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6176, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 6177, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "represent", + "token_id": 6178, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6179, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 6180, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 6181, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6182, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6183, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6184, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 6185, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6186, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 6187, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6188, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "leading", + "token_id": 6189, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6190, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "party", + "token_id": 6191, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6192, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 6193, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "two", + "token_id": 6194, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6195, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 6196, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "formula", + "token_id": 6197, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6198, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6199, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 6200, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "close", + "token_id": 6201, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "three", + "token_id": 6202, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6203, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "way", + "token_id": 6204, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "race", + "token_id": 6205, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6206, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 6207, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 6208, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 6209, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 6210, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 6211, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 6212, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6213, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 6214, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6215, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6216, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6217, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 6218, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6219, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "04", + "token_id": 6220, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6221, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 6222, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6223, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "cerrada", + "token_id": 6224, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "contienda", + "token_id": 6225, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 6226, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 6227, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 6228, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 6229, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 6230, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 6231, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 6232, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 6233, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 6234, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "revista", + "token_id": 6235, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "punto", + "token_id": 6236, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 6237, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "vista", + "token_id": 6238, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6239, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 6240, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6241, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 6242, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 6243, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6244, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6245, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "revistapuntodevista", + "token_id": 6246, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6247, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 6248, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6249, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 6250, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6251, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "seccion", + "token_id": 6252, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6253, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 6254, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6255, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "cerrada", + "token_id": 6256, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6257, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "contienda", + "token_id": 6258, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6259, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 6260, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6261, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "el", + "token_id": 6262, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6263, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 6264, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6265, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 6266, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6267, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 6268, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6269, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "leon", + "token_id": 6270, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6271, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "856968", + "token_id": 6272, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6273, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6274, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 6275, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6276, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 6277, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6278, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6279, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6280, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 6281, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6282, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "19", + "token_id": 6283, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6284, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 6285, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6286, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 6287, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 6288, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 6289, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6290, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 6291, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 6292, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6293, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6294, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "herrera", + "token_id": 6295, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "garnered", + "token_id": 6296, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "32", + "token_id": 6297, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6298, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "13", + "token_id": 6299, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 6300, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6301, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6302, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "vote", + "token_id": 6303, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6304, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "placing", + "token_id": 6305, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "second", + "token_id": 6306, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 6307, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6308, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "sigamos", + "token_id": 6309, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "haciendo", + "token_id": 6310, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "historia", + "token_id": 6311, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6312, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "sigamos", + "token_id": 6313, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "haciendo", + "token_id": 6314, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "historia", + "token_id": 6315, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "'", + "token_id": 6316, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 6317, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6318, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "formula", + "token_id": 6319, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6320, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "garnered", + "token_id": 6321, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "33", + "token_id": 6322, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6323, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "94", + "token_id": 6324, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1286174663 + ] + }, + { + "str": "%", + "token_id": 6325, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6326, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6327, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "ahead", + "token_id": 6328, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6329, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6330, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "fuerza", + "token_id": 6331, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "y", + "token_id": 6332, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "corazón", + "token_id": 6333, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 6334, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "méxico", + "token_id": 6335, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6336, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "fuerza", + "token_id": 6337, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "y", + "token_id": 6338, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "corazón", + "token_id": 6339, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "por", + "token_id": 6340, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "méxico", + "token_id": 6341, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": "'", + "token_id": 6342, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 6343, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6344, + "o_rev_id": 1241048146, + "in": [], + "out": [ + 1241790017 + ] + }, + { + "str": ",", + "token_id": 6345, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "which", + "token_id": 6346, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "received", + "token_id": 6347, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "31", + "token_id": 6348, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6349, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "51", + "token_id": 6350, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "%", + "token_id": 6351, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6352, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 6353, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6354, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 6355, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6356, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 6357, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "party", + "token_id": 6358, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6359, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 6360, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "formula", + "token_id": 6361, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6362, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6363, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "won", + "token_id": 6364, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 6365, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "seat", + "token_id": 6366, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "through", + "token_id": 6367, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 6368, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "minority", + "token_id": 6369, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6370, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 6371, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 6372, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 6373, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 6374, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 6375, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 6376, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6377, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 6378, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6379, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "herrera", + "token_id": 6380, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6381, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 6382, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6383, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 6384, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "olivia", + "token_id": 6385, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "vázquez", + "token_id": 6386, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6387, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 6388, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6389, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6390, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6391, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 6392, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6393, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "09", + "token_id": 6394, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6395, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 6396, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6397, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 6398, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 6399, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6400, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "sí", + "token_id": 6401, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "será", + "token_id": 6402, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "senador", + "token_id": 6403, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 6404, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "mc", + "token_id": 6405, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "tras", + "token_id": 6406, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "darle", + "token_id": 6407, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 6408, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "vuelta", + "token_id": 6409, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 6410, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "prian", + "token_id": 6411, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 6412, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 6413, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "cómputos", + "token_id": 6414, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "distritales", + "token_id": 6415, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6416, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 6417, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6418, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 6419, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 6420, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6421, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6422, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 6423, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6424, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "infobae", + "token_id": 6425, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6426, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 6427, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6428, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 6429, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6430, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6431, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6432, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "06", + "token_id": 6433, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6434, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "09", + "token_id": 6435, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6436, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "luis", + "token_id": 6437, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6438, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "donaldo", + "token_id": 6439, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6440, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6441, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6442, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "si", + "token_id": 6443, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6444, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "sera", + "token_id": 6445, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6446, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "senador", + "token_id": 6447, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6448, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "por", + "token_id": 6449, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6450, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "mc", + "token_id": 6451, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6452, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "tras", + "token_id": 6453, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6454, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "darle", + "token_id": 6455, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6456, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 6457, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6458, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "vuelta", + "token_id": 6459, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6460, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 6461, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6462, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "prian", + "token_id": 6463, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6464, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "en", + "token_id": 6465, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6466, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "los", + "token_id": 6467, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6468, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "computos", + "token_id": 6469, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6470, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "distritales", + "token_id": 6471, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6472, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6473, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 6474, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6475, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 6476, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6477, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6478, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6479, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "08", + "token_id": 6480, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6481, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "19", + "token_id": 6482, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6483, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 6484, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6485, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "infobae", + "token_id": 6486, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6487, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 6488, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6489, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 6490, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6491, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "es", + "token_id": 6492, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 6493, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 6494, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6495, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 6496, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 6497, + "o_rev_id": 1241048146, + "in": [], + "out": [] + }, + { + "str": "which", + "token_id": 6498, + "o_rev_id": 1241074132, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6499, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "francisco", + "token_id": 6500, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "donaciano", + "token_id": 6501, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "bahena", + "token_id": 6502, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "sampogna", + "token_id": 6503, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6504, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 6505, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "acting", + "token_id": 6506, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 6507, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6508, + "o_rev_id": 1241790017, + "in": [], + "out": [ + 1347221443 + ] + }, + { + "str": "termend2", + "token_id": 6509, + "o_rev_id": 1241790017, + "in": [], + "out": [ + 1347221443 + ] + }, + { + "str": "=", + "token_id": 6510, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "22", + "token_id": 6511, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "august", + "token_id": 6512, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6513, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "who", + "token_id": 6514, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 6515, + "o_rev_id": 1241790017, + "in": [], + "out": [ + 1243951647 + ] + }, + { + "str": "currently", + "token_id": 6516, + "o_rev_id": 1241790017, + "in": [], + "out": [ + 1243951647 + ] + }, + { + "str": "senator", + "token_id": 6517, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6518, + "o_rev_id": 1241790017, + "in": [], + "out": [ + 1243951647 + ] + }, + { + "str": "elect", + "token_id": 6519, + "o_rev_id": 1241790017, + "in": [], + "out": [ + 1243951647 + ] + }, + { + "str": "from", + "token_id": 6520, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 6521, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 6522, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "previously", + "token_id": 6523, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6524, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 6525, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 6526, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6527, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6528, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 6529, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6530, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 6531, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "2021", + "token_id": 6532, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 6533, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6534, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "stepped", + "token_id": 6535, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 6536, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 6537, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 6538, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "22", + "token_id": 6539, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "august", + "token_id": 6540, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6541, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 6542, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "francisco", + "token_id": 6543, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "donaciano", + "token_id": 6544, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "bahena", + "token_id": 6545, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "sampogna", + "token_id": 6546, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "taking", + "token_id": 6547, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "place", + "token_id": 6548, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 6549, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "acting", + "token_id": 6550, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "mayor", + "token_id": 6551, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "deja", + "token_id": 6552, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "alcaldía", + "token_id": 6553, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 6554, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 6555, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "manera", + "token_id": 6556, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "definitiva", + "token_id": 6557, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "deja", + "token_id": 6558, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "alcaldia", + "token_id": 6559, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 6560, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 6561, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "manera", + "token_id": 6562, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6563, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "definitiva", + "token_id": 6564, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "763995", + "token_id": 6565, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "23", + "token_id": 6566, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6567, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6568, + "o_rev_id": 1241790017, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6569, + "o_rev_id": 1243950410, + "in": [], + "out": [] + }, + { + "str": "senator", + "token_id": 6570, + "o_rev_id": 1243950410, + "in": [], + "out": [] + }, + { + "str": "republic", + "token_id": 6571, + "o_rev_id": 1243950410, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 6572, + "o_rev_id": 1243950410, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "serves", + "token_id": 6573, + "o_rev_id": 1243951647, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 6574, + "o_rev_id": 1243951647, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 6575, + "o_rev_id": 1243951647, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 6576, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6577, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "–", + "token_id": 6578, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "present", + "token_id": 6579, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 6580, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6581, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6582, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6583, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "tenure", + "token_id": 6584, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6585, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6586, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6587, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "upon", + "token_id": 6588, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "being", + "token_id": 6589, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "sworn", + "token_id": 6590, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6591, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6592, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6593, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 6594, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "chosen", + "token_id": 6595, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 6596, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 6597, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6598, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "four", + "token_id": 6599, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "secretaries", + "token_id": 6600, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6601, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6602, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 6603, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6604, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 6605, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "board", + "token_id": 6606, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6607, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "directors", + "token_id": 6608, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 6609, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6610, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 6611, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "session", + "token_id": 6612, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6613, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6614, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6615, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "lxvi", + "token_id": 6616, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "legislature", + "token_id": 6617, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6618, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6619, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "mexican", + "token_id": 6620, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "congress", + "token_id": 6621, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6622, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "lxvi", + "token_id": 6623, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "legislature", + "token_id": 6624, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6625, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6626, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 6627, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 6628, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 6629, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 6630, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 6631, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 6632, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6633, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 6634, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6635, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "coordinación", + "token_id": 6636, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 6637, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "comunicación", + "token_id": 6638, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "social", + "token_id": 6639, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6640, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "eligen", + "token_id": 6641, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 6642, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "senador", + "token_id": 6643, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "gerardo", + "token_id": 6644, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "fernández", + "token_id": 6645, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "noroña", + "token_id": 6646, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "como", + "token_id": 6647, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "presidente", + "token_id": 6648, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 6649, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 6650, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "mesa", + "token_id": 6651, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "directiva", + "token_id": 6652, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 6653, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 6654, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6655, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 6656, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6657, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 6658, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 6659, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6660, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6661, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "comunicacionsocial", + "token_id": 6662, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6663, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 6664, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6665, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "gob", + "token_id": 6666, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6667, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 6668, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6669, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "informacion", + "token_id": 6670, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6671, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "comunicados", + "token_id": 6672, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6673, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "9540", + "token_id": 6674, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6675, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "eligen", + "token_id": 6676, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6677, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 6678, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6679, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "senador", + "token_id": 6680, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6681, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "gerardo", + "token_id": 6682, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6683, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "fernandez", + "token_id": 6684, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6685, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "norona", + "token_id": 6686, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6687, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "como", + "token_id": 6688, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6689, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "presidente", + "token_id": 6690, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6691, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 6692, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6693, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "la", + "token_id": 6694, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6695, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "mesa", + "token_id": 6696, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6697, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "directiva", + "token_id": 6698, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6699, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "del", + "token_id": 6700, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6701, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 6702, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6703, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 6704, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6705, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 6706, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6707, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "2024", + "token_id": 6708, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6709, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "09", + "token_id": 6710, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 6711, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "05", + "token_id": 6712, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6713, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 6714, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6715, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "comunicacionsocial", + "token_id": 6716, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6717, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "senado", + "token_id": 6718, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6719, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "gob", + "token_id": 6720, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6721, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "mx", + "token_id": 6722, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 6723, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 6724, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 6725, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 6726, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 6727, + "o_rev_id": 1244125761, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 6728, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "br", + "token_id": 6729, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "/", + "token_id": 6730, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": ">", + "token_id": 6731, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "{{", + "token_id": 6732, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "small", + "token_id": 6733, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "|", + "token_id": 6734, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "first", + "token_id": 6735, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "minority", + "token_id": 6736, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": "}}", + "token_id": 6737, + "o_rev_id": 1244140064, + "in": [], + "out": [ + 1302213186 + ] + }, + { + "str": ",", + "token_id": 6738, + "o_rev_id": 1245134134, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6739, + "o_rev_id": 1262640912, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6740, + "o_rev_id": 1262640912, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6741, + "o_rev_id": 1262640912, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6742, + "o_rev_id": 1262640912, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6743, + "o_rev_id": 1262640912, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6744, + "o_rev_id": 1262640912, + "in": [], + "out": [] + }, + { + "str": "95", + "token_id": 6745, + "o_rev_id": 1286174663, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6746, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 6747, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6748, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "september", + "token_id": 6749, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 6750, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6751, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "last1", + "token_id": 6752, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6753, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6754, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "first1", + "token_id": 6755, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6756, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 6757, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 6758, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 6759, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 6760, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "monterrey", + "token_id": 6761, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 6762, + "o_rev_id": 1287677921, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6763, + "o_rev_id": 1296572597, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6764, + "o_rev_id": 1296572597, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6765, + "o_rev_id": 1296572597, + "in": [], + "out": [] + }, + { + "str": "obtaining", + "token_id": 6766, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 6767, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "law", + "token_id": 6768, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "degree", + "token_id": 6769, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6770, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "alongside", + "token_id": 6771, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "specialized", + "token_id": 6772, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6773, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6774, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "advising", + "token_id": 6775, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "public", + "token_id": 6776, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "officials", + "token_id": 6777, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 6778, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "political", + "token_id": 6779, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "figures", + "token_id": 6780, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "period", + "token_id": 6781, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6782, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6783, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "established", + "token_id": 6784, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "relationships", + "token_id": 6785, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6786, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 6787, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "mc", + "token_id": 6788, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 6789, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "would", + "token_id": 6790, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "later", + "token_id": 6791, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "encourage", + "token_id": 6792, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 6793, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "seek", + "token_id": 6794, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 6795, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 6796, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "2017", + "token_id": 6797, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6798, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "colosio", + "token_id": 6799, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "formally", + "token_id": 6800, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "accepted", + "token_id": 6801, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 6802, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "invitation", + "token_id": 6803, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 6804, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "mc", + "token_id": 6805, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 6806, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "run", + "token_id": 6807, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 6808, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 6809, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "candidate", + "token_id": 6810, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "party", + "token_id": 6811, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 6812, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 6813, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "publicly", + "token_id": 6814, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "prospective", + "token_id": 6815, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "position", + "token_id": 6816, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 6817, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "state", + "token_id": 6818, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "or", + "token_id": 6819, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6820, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "seat", + "token_id": 6821, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "percent", + "token_id": 6822, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "vote", + "token_id": 6823, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6824, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6825, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "national", + "token_id": 6826, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "action", + "token_id": 6827, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "party", + "token_id": 6828, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 6829, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "pan", + "token_id": 6830, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 6831, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 6832, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "margin", + "token_id": 6833, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6834, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 6835, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "flipping", + "token_id": 6836, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6837, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "district", + "token_id": 6838, + "o_rev_id": 1297970641, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6839, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "constituency", + "token_id": 6840, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6841, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6842, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 6843, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 6844, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6845, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 6846, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "constituency4", + "token_id": 6847, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 6848, + "o_rev_id": 1302213186, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 6849, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 6850, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 6851, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "members", + "token_id": 6852, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6853, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6854, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "senate", + "token_id": 6855, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 6856, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 6857, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "republic", + "token_id": 6858, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 6859, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "mexico", + "token_id": 6860, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 6861, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 6862, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "nuevo", + "token_id": 6863, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "león", + "token_id": 6864, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 6865, + "o_rev_id": 1316723168, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 6866, + "o_rev_id": 1347221443, + "in": [], + "out": [] + }, + { + "str": "nbsp", + "token_id": 6867, + "o_rev_id": 1347221443, + "in": [], + "out": [] + }, + { + "str": ";", + "token_id": 6868, + "o_rev_id": 1347221443, + "in": [], + "out": [] + } +] \ No newline at end of file diff --git a/tests/fixtures/luis_donaldo_colosio_riojas_revisions.json b/tests/fixtures/luis_donaldo_colosio_riojas_revisions.json new file mode 100644 index 0000000..d37e08c --- /dev/null +++ b/tests/fixtures/luis_donaldo_colosio_riojas_revisions.json @@ -0,0 +1,1121 @@ +[ + { + "revid": 1010129207, + "parentid": 0, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-03T23:10:49Z", + "sha1": "606fc81018b11a4fb83ae2a67177ff5cfdb3d0d9", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "[[WP:AES|←]]Created page with '{{short description|Mexican politician}}{{family name hatnote|Colosio|Riojas|lang=Spanish}} {{Infobox officeholder | name = Luis Donaldo Colosio Riojas | image...'", + "*": "{{short description|Mexican politician}}{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. On January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021." + }, + { + "revid": 1010131220, + "parentid": 1010129207, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-03T23:25:21Z", + "sha1": "efbb8074bec1d2f64cd8d89ebc7d15f402e8640a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. On January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010131577, + "parentid": 1010131220, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-03T23:27:27Z", + "sha1": "e16060bad8ce6e2b375167e1a9840360ce2c780f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. On January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010131687, + "parentid": 1010131577, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-03T23:28:14Z", + "sha1": "a83a6b1b8aa1f520ccf1a0dec42504a0d7269b3a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* External links */", + "*": "{{short description|Mexican politician}}{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. On January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010133182, + "parentid": 1010131687, + "minor": "", + "user": "EDG 543", + "userid": 31984018, + "timestamp": "2021-03-03T23:38:11Z", + "sha1": "ffcd02f4e7d222bc9c355f3070e8ae8651d5dc9f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added {{[[Template:Unreferenced|Unreferenced]]}} tag", + "*": "{{short description|Mexican politician}}{{Unreferenced|date=March 2021}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. On January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010135492, + "parentid": 1010133182, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-03T23:52:10Z", + "sha1": "813373171b44ab143a34c6e5f0e0e3055b3f6222", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}{{Unreferenced|date=March 2021}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. On January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1986. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{cita web |url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/ |título=Diana Laura, 25 aniversario luctuoso |fecha=5 de diciembre de 2019 |fechaacceso=30 de agosto de 2020 |sitioweb= Líderes Mexicanos |apellido=Gamboa |nombre=Fernando}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{cita web |url= https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |título=Esto ha pasado con los hijos de Luis Donaldo Colosio |fecha= 23 de marzo de 2019 |fechaacceso= 30 de agosto de 0\n2020 |sitioweb= Milenio Noticias |apellido=Pacheco |nombre=Gustavo}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010136399, + "parentid": 1010135492, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-03T23:57:41Z", + "sha1": "a8be1fea0630a33ec27e75da61543909a4f94dbc", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}{{Unreferenced|date=March 2021}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. On January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1986. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{cita web |url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/ |título=Diana Laura, 25 aniversario luctuoso |fecha=5 de diciembre de 2019 |fechaacceso=30 de agosto de 2020 |sitioweb= Líderes Mexicanos |apellido=Gamboa |nombre=Fernando}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{cita web |url= https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |título=Esto ha pasado con los hijos de Luis Donaldo Colosio |fecha= 23 de marzo de 2019 |fechaacceso= 30 de agosto de 0\n2020 |sitioweb= Milenio Noticias |apellido=Pacheco |nombre=Gustavo}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010139865, + "parentid": 1010136399, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-04T00:19:29Z", + "sha1": "211cf3c6dc5fae45c95cee6be698138870a356bd", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. On January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1986. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010140582, + "parentid": 1010139865, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-04T00:24:29Z", + "sha1": "a3cdc0e84637d681d736ab410654821c1da5e544", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1986. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections.{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010140843, + "parentid": 1010140582, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-04T00:26:07Z", + "sha1": "ea9b83bdcf2c877819d3dca7c5b5e5c721a7fbe4", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Political career */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1986|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1986) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1986. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010154288, + "parentid": 1010140843, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-04T01:54:35Z", + "sha1": "14fe36209964edbbbb45eb15db4ae41642479b18", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1986. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010154604, + "parentid": 1010154288, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-04T01:56:56Z", + "sha1": "3a7e1d2cebc7855a95b5f7e17fd610c4fd9e7ff4", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Biography */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010311008, + "parentid": 1010154604, + "user": "John B123", + "userid": 21715336, + "timestamp": "2021-03-04T21:08:40Z", + "sha1": "f54158aab4d111436d5f7bae80fc84accb378a0d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added tags to the page using [[Wikipedia:Page Curation|Page Curation]] (notability)", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010337929, + "parentid": 1010311008, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:19:37Z", + "sha1": "dc028a529340bbb840bc6fb0181a9780e59dd14d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Political career */", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo Leon]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{cita web |url= https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl |título=Hijo de Colosio gana diputación en su debut político |fecha=4 de julio de 2018 |fechaacceso=30 de agosto de 2020\n|sitioweb=El Universal |apellido=Carrizales |nombre=David}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{cita web |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html |título=Inicia LXXV Legislatura de Nuevo León |fecha=1 de septiembre de 2018 |fechaacceso= 30 de agosto de 2020 |sitioweb=[[El Economista]] |apellido=Flores |nombre=Lourdes}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1986 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010338435, + "parentid": 1010337929, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:23:27Z", + "sha1": "a80c784143c3fd63564950e2fba9b70e8b72c66a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo Leon]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]] for the 2021 elections under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010339290, + "parentid": 1010338435, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:29:57Z", + "sha1": "ff4550654dcbc2aba134183d1725baf0f6b178d2", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Political career */", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = \n| term_start = \n| term_end = \n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010340007, + "parentid": 1010339290, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:35:36Z", + "sha1": "6c1b1be9946cee1dfdd308612b8fffe01a812a37", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the Congress of Nuevo León\n| term_start = {{date|9|1|2018}}\n| term_end = {{date|2|1|2021}}\n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010340186, + "parentid": 1010340007, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:36:57Z", + "sha1": "842004974f722a19667cc702f3b3235e3607e25f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the Congress of Nuevo León\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = \n| successor = \n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010340354, + "parentid": 1010340186, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:38:19Z", + "sha1": "3db7584cf8e13031113156c051b297cc45b771a9", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010340577, + "parentid": 1010340354, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:40:10Z", + "sha1": "aa70c11efee24a354c9cb5c565cb15d8026853ca", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| spouse = \n| children = \n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=\"Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey\"|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010340783, + "parentid": 1010340577, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:41:53Z", + "sha1": "fe0ead5bfd27e333557214f12febe0d6068b2358", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010341188, + "parentid": 1010340783, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:45:01Z", + "sha1": "b3eb91b48335ae3392a3308ca86704232bb7fe0d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| education = [[Monterrey Institute of Technology and Higher Education]]\n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1010341901, + "parentid": 1010341188, + "user": "UsuarioNeutralMX", + "userid": 1886583, + "timestamp": "2021-03-05T00:50:06Z", + "sha1": "f96d87f48e8e55029460baf82d5789c0b3c69ed3", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Biography */", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| education = [[Monterrey Institute of Technology and Higher Education]]\n}}\n\n'''Luis Donaldo Colosio Riojas''' (Born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the Mexican presidential campaign of 1994. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nLuis Donaldo Colosio Riojas was born in [[Magdalena de Kino]] on 31 July 1985. He has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.facebook.com/colosioriojas/ Luis Donaldo Colosio Riojas], Official Facebook Page\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1012860262, + "parentid": 1010341901, + "user": "OCNative", + "userid": 181247, + "timestamp": "2021-03-18T18:41:39Z", + "sha1": "12d02ba99f7f99344e4669e7c25df82fb5b538f3", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Add official web site. Minor copyediting.", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]]. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1012860560, + "parentid": 1012860262, + "minor": "", + "user": "OCNative", + "userid": 181247, + "timestamp": "2021-03-18T18:43:47Z", + "sha1": "a998d7c456b53357b8aa2e1c1544b79a4a9b7609", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]]. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1012860664, + "parentid": 1012860560, + "minor": "", + "user": "OCNative", + "userid": 181247, + "timestamp": "2021-03-18T18:44:32Z", + "sha1": "2624fd360ad1d8faed3d5a87a3e334d4e5e189a5", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{notability|1=Biographies|date=March 2021}}\n\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| president = \n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_name = Luis Donaldo Colosio Riojas\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]]. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1012864421, + "parentid": 1012860664, + "user": "OCNative", + "userid": 181247, + "timestamp": "2021-03-18T19:10:54Z", + "sha1": "3dba6ba20b63ef7776b627fb7ea0d651d48661f4", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Fill in infobox", + "*": "{{notability|1=Biographies|date=March 2021}}\n{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]]. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1012864630, + "parentid": 1012864421, + "user": "OCNative", + "userid": 181247, + "timestamp": "2021-03-18T19:12:22Z", + "sha1": "4e9e1e0d3e15773d2be2e94d32bbeb56ad8b274a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Remove tag. As a Deputy of the [[Congress of Nuevo León]], he meets the notability criteria of [[WP:POLITICIAN]]", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]]. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1015536009, + "parentid": 1012864630, + "user": "Bamyers99", + "userid": 12311825, + "timestamp": "2021-04-02T01:08:03Z", + "sha1": "e3d6727f2ddf2dcca6527095bd2a76ddd7af1d35", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added [[Category:Living people]] using [[WP:HC|HotCat]]", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]]. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey, Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1027927375, + "parentid": 1015536009, + "minor": "", + "user": "OCNative", + "userid": 181247, + "timestamp": "2021-06-10T20:24:39Z", + "sha1": "5a3cc05cb87d2e273afbe1a494bdb21d4065b0cc", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Deputy of the [[Congress of Nuevo León]]\n| term_start = 1 September 2018\n| term_end = 1 February 2021\n| predecessor = José Arturo Salinas Garza\n| successor = Marco Antonio Decanini Contreras\n| office2 = \n| term_start2 = \n| term_end2 = \n| predecessor2 = \n| successor2 = \n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]]. He was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021.\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1028074078, + "parentid": 1027927375, + "user": "OCNative", + "userid": 181247, + "timestamp": "2021-06-11T17:49:57Z", + "sha1": "000bdf5264750ace1af458493be73489308d4b0c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Mayor-elect of Monterrey", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey|Mayor]] of [[Monterrey]]\n| term_start = 1 November 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Deputy of the [[Congress of Nuevo León]]\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the mayor[[-elect]] of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after the assassination of his father in March and the death of his mother in November being 8 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/}} Colosio Riojas and his sister were adopted by maternal family members María Elisa Riojas y Fernando Cantú.{{Cite web|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1028090673, + "parentid": 1028074078, + "user": "OCNative", + "userid": 181247, + "timestamp": "2021-06-11T19:49:22Z", + "sha1": "5b571285c60358f1aeeed45b231fc37c46852993", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Biography */ Tighten up the language, fix the math, and fix the refs", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey|Mayor]] of [[Monterrey]]\n| term_start = 1 November 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Deputy of the [[Congress of Nuevo León]]\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the mayor[[-elect]] of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1028139670, + "parentid": 1028090673, + "minor": "", + "user": "BD2412", + "userid": 196446, + "timestamp": "2021-06-12T03:34:43Z", + "sha1": "2aa39f8f310fcbc91346bd0f8f0660de60fbb06e", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Political career */Fixing [[Wikipedia:Disambiguation pages with links|links to disambiguation pages]]", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey|Mayor]] of [[Monterrey]]\n| term_start = 1 November 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Deputy of the [[Congress of Nuevo León]]\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the mayor[[-elect]] of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nHe was orphaned in 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1035845373, + "parentid": 1028139670, + "user": "2600:6C50:727F:AB2D:3CDC:BF57:D90D:5EE", + "anon": "", + "userid": 0, + "timestamp": "2021-07-28T01:03:53Z", + "sha1": "761a971f1e30ea24242bef98c9b161b3fc772f70", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Biography */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey|Mayor]] of [[Monterrey]]\n| term_start = 1 November 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Deputy of the [[Congress of Nuevo León]]\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the mayor[[-elect]] of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1043644996, + "parentid": 1035845373, + "user": "2603:8001:5000:464B:F104:648D:A82A:A0CF", + "anon": "", + "userid": 0, + "timestamp": "2021-09-11T05:59:56Z", + "sha1": "afaf28dd0c77682a0416d9bc1493409d13527bd1", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Refreshed newest updates of his political career", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey|Mayor]] of [[Monterrey]]\n| term_start = 1 November 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Deputy of the [[Congress of Nuevo León]]\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the mayor[[-elect]] of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%. He resigned from Movimiento Ciudadano after winning the election for Mayor of Monterrey, Nuevo León which he ran as a candidate of MC. {{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1043645868, + "parentid": 1043644996, + "minor": "", + "user": "Cassiopeia", + "userid": 31051948, + "timestamp": "2021-09-11T06:07:25Z", + "sha1": "761a971f1e30ea24242bef98c9b161b3fc772f70", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Reverted edits by [[Special:Contributions/2603:8001:5000:464B:F104:648D:A82A:A0CF|2603:8001:5000:464B:F104:648D:A82A:A0CF]] ([[User talk:2603:8001:5000:464B:F104:648D:A82A:A0CF|talk]]): not providing a [[WP:RS|reliable source]] ([[WP:CITE]], [[WP:RS]]) ([[WP:HG|HG]]) (3.4.9)", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey|Mayor]] of [[Monterrey]]\n| term_start = 1 November 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Deputy of the [[Congress of Nuevo León]]\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place= \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the mayor[[-elect]] of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1050278062, + "parentid": 1043645868, + "minor": "", + "user": "Albertojsv1", + "userid": 32161222, + "timestamp": "2021-10-16T21:31:25Z", + "sha1": "d60c4723c0d67853f4c0499fdc13d0f631f2348a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey|Mayor]] of [[Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Deputy of the [[Congress of Nuevo León]]\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the mayor of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:1985 births]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:Living people]]" + }, + { + "revid": 1065167764, + "parentid": 1050278062, + "user": "JTtheOG", + "userid": 17944471, + "timestamp": "2022-01-12T04:57:19Z", + "sha1": "60a7497b8be711e0217447f36c612ec3702a90d7", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the municipal president of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nOn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1065761759, + "parentid": 1065167764, + "minor": "", + "user": "Nat965", + "userid": 8578365, + "timestamp": "2022-01-15T05:04:24Z", + "sha1": "52332183e0ae147ae833fdaf56c37baa960af80a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Political career */Apply [[WP:AWB/GF|Gen fix(es)]], [[WP:AWB/T|typo(s) fixed]]: On January 2021 → In January 2021", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a [[Mexico|Mexican]] lawyer and politician. He is the municipal president of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1069133723, + "parentid": 1065761759, + "minor": "", + "user": "SdkbBot", + "userid": 41840956, + "timestamp": "2022-01-31T19:41:21Z", + "sha1": "57148c1c5ff2d76a46a538268eb1c6a7e9125ff8", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* top */Removed [[MOS:OVERLINK|overlinked]] country wikilink and [[WP:GENFIX|general fixes]] ([[Wikipedia:Bots/Requests_for_approval/SdkbBot_2|task 2]])", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| succeeding = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the municipal president of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1071487850, + "parentid": 1069133723, + "minor": "", + "user": "Joshmaul", + "userid": 370000, + "timestamp": "2022-02-12T22:07:56Z", + "sha1": "4caf5a322a806edbda7d0f4c03f9f74c4f5bd458", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the municipal president of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas y Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1128452329, + "parentid": 1071487850, + "user": "2806:108E:11:66DD:A543:9AE:7A99:2B20", + "anon": "", + "userid": 0, + "timestamp": "2022-12-20T05:59:00Z", + "sha1": "e25f69f5347f73cb5ae487c38db60945a2b85577", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Biography */ Fixed typo", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the municipal president of [[Monterrey]] and was a deputy in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1133319965, + "parentid": 1128452329, + "user": "96.8.130.196", + "anon": "", + "userid": 0, + "timestamp": "2023-01-13T05:44:48Z", + "sha1": "5e1db78ce7470b07eac7f097dc66993294a88b19", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Replaced incorrect terms (municipal president is not an english term). The correct term is mayor", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1138718241, + "parentid": 1133319965, + "user": "2806:2F0:4060:EEB1:A845:B021:36D0:9355", + "anon": "", + "userid": 0, + "timestamp": "2023-02-11T06:02:41Z", + "sha1": "ec4c51e98d9f5cd794b71f8c7be4139c23f9c09c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Se la chupo a Eduardo Cedeño \n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1138718298, + "parentid": 1138718241, + "minor": "", + "user": "Fehufanga", + "userid": 33077729, + "timestamp": "2023-02-11T06:03:08Z", + "sha1": "5e1db78ce7470b07eac7f097dc66993294a88b19", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "[[WP:ROLLBACK|Reverted]] edits by [[Special:Contributions/2806:2F0:4060:EEB1:A845:B021:36D0:9355|2806:2F0:4060:EEB1:A845:B021:36D0:9355]] ([[User talk:2806:2F0:4060:EEB1:A845:B021:36D0:9355|talk]]) to last revision by 96.8.130.196: nonconstructive edits", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]" + }, + { + "revid": 1152384983, + "parentid": 1138718298, + "user": "JTtheOG", + "userid": 17944471, + "timestamp": "2023-04-29T22:55:17Z", + "sha1": "0938e9fa724a44f288f9a7748c6d344a636e85f5", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added [[Category:People from Magdalena de Kino]] using [[WP:HC|HotCat]]", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an 8-way race, defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1156261339, + "parentid": 1152384983, + "user": "23.233.149.194", + "anon": "", + "userid": 0, + "timestamp": "2023-05-22T01:05:32Z", + "sha1": "a0333a954956d140d68472f282a2e9e6cd83cd3d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Political career */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia Colosio García\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1168225322, + "parentid": 1156261339, + "user": "174.233.18.108", + "anon": "", + "userid": 0, + "timestamp": "2023-08-01T14:57:14Z", + "sha1": "8562ca8e57727adf270e75838f7c2f6d43e5dcdd", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1175888700, + "parentid": 1168225322, + "user": "186.96.26.101", + "anon": "", + "userid": 0, + "timestamp": "2023-09-18T02:45:21Z", + "sha1": "80c687290197bd32a39deef6fdb37d1ebd7496bb", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Galician descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1180746268, + "parentid": 1175888700, + "user": "128.177.31.180", + "anon": "", + "userid": 0, + "timestamp": "2023-10-18T15:37:01Z", + "sha1": "a060098d264e862222014c5d3b3d6b3e63404cc9", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1191480846, + "parentid": 1180746268, + "user": "2806:2F0:97A1:F35B:6591:A95F:FF4A:1B5A", + "anon": "", + "userid": 0, + "timestamp": "2023-12-23T20:57:24Z", + "sha1": "1c426f33ab4778f95820bf0be0b19229a8262d73", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1191480870, + "parentid": 1191480846, + "user": "2806:2F0:97A1:F35B:6591:A95F:FF4A:1B5A", + "anon": "", + "userid": 0, + "timestamp": "2023-12-23T20:57:41Z", + "sha1": "253fd46bfcd4b181ad3fde64bff89d3542741596", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 30 September 2021\n| term_end = \n| predecessor = Adrián de la Garza\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1191481253, + "parentid": 1191480870, + "user": "2806:2F0:97A1:F35B:6591:A95F:FF4A:1B5A", + "anon": "", + "userid": 0, + "timestamp": "2023-12-23T21:01:15Z", + "sha1": "0624808c0e27270e0633c1748abe4caca6d060ed", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 1 October 2021\n| term_end = \n| predecessor = Adrián de la Garza\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]] on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1193739135, + "parentid": 1191481253, + "user": "37.170.194.189", + "anon": "", + "userid": 0, + "timestamp": "2024-01-05T10:49:11Z", + "sha1": "cb2b9870de235337310cb557d1255e5358b548ba", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Biography */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 1 October 2021\n| term_end = \n| predecessor = Adrián de la Garza\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]], [[Sonora]], on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]].\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1213897276, + "parentid": 1193739135, + "user": "201.156.226.107", + "anon": "", + "userid": 0, + "timestamp": "2024-03-15T19:51:16Z", + "sha1": "29dea1b02837d66bb226d2e487d2e8d7f5c7e656", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Biography */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 1 October 2021\n| term_end = \n| predecessor = Adrián de la Garza\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]], [[Sonora]], on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]]. He is famus\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1213897439, + "parentid": 1213897276, + "user": "201.156.226.107", + "anon": "", + "userid": 0, + "timestamp": "2024-03-15T19:52:29Z", + "sha1": "921b1de1f6070499e7bdd506e4737efd3b137225", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 1 October 2021\n| term_end = \n| predecessor = Adrián de la Garza\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]], [[Sonora]], on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1220166917, + "parentid": 1213897439, + "minor": "", + "user": "JVIPLOFNA", + "userid": 25641162, + "timestamp": "2024-04-22T05:54:09Z", + "sha1": "ad2657c2be34b1fb763874ca80c811ae593d8004", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added links #article-section-source-editor", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 1 October 2021\n| term_end = \n| predecessor = Adrián de la Garza\n| successor = \n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Movimiento Ciudadano]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = Luis Donaldo Colosio García
María Emilia\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Biography==\nBorn in [[Magdalena de Kino]], [[Sonora]], on 31 July 1985, Luis Donaldo Colosio Riojas has a younger sister named Mariana Colosio Riojas.\n\nIn 1994 after his father's assassination in March and his mother's death in November when he was 9 years old and his sister 1 year old.{{Cite web|title=Diana Laura, 25 aniversario luctuoso|url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/|publisher=Lideres Mexicanos|last=Gamboa|first=Fernando|date=5 December 2019}} Colosio Riojas and his sister were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news|title=Esto ha pasado con los hijos de Luis Donaldo Colosio|url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa|newspaper=[[Milenio]]|last=Pacheco|first=Gustavo|date=23 March 2019}}\n\nHe studied [[law]] in the [[Monterrey Institute of Technology and Higher Education]] and graduated in 2010. He received a postgraduate diploma in Financing and Methods of International Payments, also by ITESM, in 2016. He currently studies a Master's of Legal Studies in Corporate Law in the [[Universidad de Monterrey]]\n\n==Political career==\nColosio Riojas became the candidate for the IV District of [[Nuevo León]] under political party [[Movimiento Ciudadano]] in the 2018 statewide elections in which he won with 33.41% of the votes.{{Cite web|title=Hijo de Colosio gana diputación en su debut político|url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl}} On 1 September 2018, he assumed office as a member of the LXXV Legislature in the [[Congress of Nuevo León]].{{Cite web|title=Inicia LXXV Legislatura de Nuevo León|url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\nIn January 2021, Colosio Riojas registered as a pre-candidate for mayor of [[Monterrey]], [[Nuevo León]] for the [[2021 Mexican local elections|2021 elections]] under the political party [[Movimiento Ciudadano]].{{Cite web|date=20 February 2021|title=Luis Donaldo Colosio Riojas va por la Alcaldía de Monterrey|url=https://www.noroeste.com.mx/nacional/luis-donaldo-colosio-riojas-va-por-la-alcaldia-de-monterrey-IBNO1224387}} He won the election in June with over 47% of the vote in an eight-way race by defeating his nearest opponent by more than 16%.{{cite news|url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/|title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México|publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]|date=8 June 2021}}{{cite web|url=https://www.sipre.mx/GC01M40.htm|title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León|publisher=Comisión Estatal Electoral Nuevo León|access-date=10 June 2021}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1222367802, + "parentid": 1220166917, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-05-05T16:41:35Z", + "sha1": "7e7b92b441d8c6037b9fb5d13a414b89e740bf72", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "restructured information", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 1 October 2021\n| term_end = 29 February 2024\n| predecessor = Adrián de la Garza\n| successor = Betsabé Rocha Nieto\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father was a politician who was a presidential candidate for the 1994 election for the [[Institutional Revolutionary Party]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nIn 1994, Colosio's father was assassinated at a campaign rally in [[Tijuana]]. Eight months later, his mother died to [[pancreatic cancer]].{{Cite web |last=Gamboa |first=Fernando |date=5 December 2019 |title=Diana Laura, 25 aniversario luctuoso |url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/ |publisher=Lideres Mexicanos}} Colosio and his sister moved to [[Monterrey|Monterrey, Nuevo León]] when they were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio, along with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan, founded the law firm \"Basave Colosio Sánchez\". At the firm, they began a parliamentary consultancy with various politicians from all parties as clients. There, he made contact with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for local deputy in the [[2018 Mexican general election|2018 elections]], which he ultimately accepted in 2017.\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} On 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Mayor of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio proposed the creation of several [[Green corridor|green corridors]] around Monterrey, which involve expanding sidewalks, installing bike lanes, and planting trees. As part of this initiative, the ''Puente Verde'' (in English: Green Bridge) was constructed and inaugurated in 2023, which spans the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}} and connects [[Fundidora Park]] and Parque España.{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} \n\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1222508286, + "parentid": 1222367802, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-05-06T10:34:32Z", + "sha1": "0a9fbe7a2073bc8ba7f6cd2654f9b32bdf27564f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Mayor of Monterrey */ added information", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 29 September 2021\n| term_end = 29 February 2024\n| predecessor = Adrián de la Garza\n| successor = Betsabé Rocha Nieto\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = Lawyer and Politician\n| party = [[File:MC Party (Mexico).svg|20px]] [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = María de la Luz García Luna\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]]\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father was a politician who was a presidential candidate for the [[1994 Mexican general election|1994 election]] for the [[Institutional Revolutionary Party]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nIn 1994, Colosio's father was assassinated at a campaign rally in [[Tijuana]]. Eight months later, his mother died to [[pancreatic cancer]].{{Cite web |last=Gamboa |first=Fernando |date=5 December 2019 |title=Diana Laura, 25 aniversario luctuoso |url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/ |publisher=Lideres Mexicanos}} Colosio and his sister moved to [[Monterrey|Monterrey, Nuevo León]] when they were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio, along with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan, founded the law firm \"Basave Colosio Sánchez\". At the firm, they began a parliamentary consultancy with various politicians from all parties as clients. There, he made contact with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for local deputy in the [[2018 Mexican general election|2018 elections]], which he ultimately accepted in 2017.\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} On 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, he Council of Monterrey approved Colosio's request for a temporary leave to pursue a senatorial seat in the [[2024 Mexican general election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1222514326, + "parentid": 1222508286, + "minor": "", + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-05-06T11:37:32Z", + "sha1": "9fe35a3b7f4f5cd893148e63a679ca61f92b6440", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "cleaned up infobox", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 29 September 2021\n| term_end = 29 February 2024\n| predecessor = Adrián de la Garza\n| successor = Betsabé Rocha Nieto\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father was a politician who was a presidential candidate for the [[1994 Mexican general election|1994 election]] for the [[Institutional Revolutionary Party]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nIn 1994, Colosio's father was assassinated at a campaign rally in [[Tijuana]]. Eight months later, his mother died to [[pancreatic cancer]].{{Cite web |last=Gamboa |first=Fernando |date=5 December 2019 |title=Diana Laura, 25 aniversario luctuoso |url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/ |publisher=Lideres Mexicanos}} Colosio and his sister moved to [[Monterrey|Monterrey, Nuevo León]] when they were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio, along with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan, founded the law firm \"Basave Colosio Sánchez\". At the firm, they began a parliamentary consultancy with various politicians from all parties as clients. There, he made contact with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for local deputy in the [[2018 Mexican general election|2018 elections]], which he ultimately accepted in 2017.\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} On 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, he Council of Monterrey approved Colosio's request for a temporary leave to pursue a senatorial seat in the [[2024 Mexican general election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1222514410, + "parentid": 1222514326, + "minor": "", + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-05-06T11:38:15Z", + "sha1": "dbd7223bf883ac6ed78f60a5d37cc859b7645d5d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "infobox added interim municipal president", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 29 September 2021\n| term_end = 29 February 2024\n| predecessor = Adrián de la Garza\n| successor = Betsabé Rocha Nieto (interim)\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father was a politician who was a presidential candidate for the [[1994 Mexican general election|1994 election]] for the [[Institutional Revolutionary Party]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nIn 1994, Colosio's father was assassinated at a campaign rally in [[Tijuana]]. Eight months later, his mother died to [[pancreatic cancer]].{{Cite web |last=Gamboa |first=Fernando |date=5 December 2019 |title=Diana Laura, 25 aniversario luctuoso |url=https://lideresmexicanos.com/noticias/diana-laura-25-aniversario-luctuoso/ |publisher=Lideres Mexicanos}} Colosio and his sister moved to [[Monterrey|Monterrey, Nuevo León]] when they were adopted by their maternal aunt and uncle Hilda Elisa Riojas and Fernando Cantú.{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio, along with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan, founded the law firm \"Basave Colosio Sánchez\". At the firm, they began a parliamentary consultancy with various politicians from all parties as clients. There, he made contact with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for local deputy in the [[2018 Mexican general election|2018 elections]], which he ultimately accepted in 2017.\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} On 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, he Council of Monterrey approved Colosio's request for a temporary leave to pursue a senatorial seat in the [[2024 Mexican general election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1222515761, + "parentid": 1222514410, + "minor": "", + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-05-06T11:51:48Z", + "sha1": "544603158779f2241c755a0df551251476ccca97", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "early life and education", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 29 September 2021\n| term_end = 29 February 2024\n| predecessor = Adrián de la Garza\n| successor = Betsabé Rocha Nieto (interim)\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was nine years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio, along with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan, founded the law firm \"Basave Colosio Sánchez\". At the firm, they began a parliamentary consultancy with various politicians from all parties as clients. There, he made contact with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for local deputy in the [[2018 Mexican general election|2018 elections]], which he ultimately accepted in 2017.\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} On 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, he Council of Monterrey approved Colosio's request for a temporary leave to pursue a senatorial seat in the [[2024 Mexican general election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1222516204, + "parentid": 1222515761, + "minor": "", + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-05-06T11:56:22Z", + "sha1": "d17081b5a8f2e0144ab450bc2534efc8162d7b9c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Early life and education */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 29 September 2021\n| term_end = 29 February 2024\n| predecessor = Adrián de la Garza\n| successor = Betsabé Rocha Nieto (interim)\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = José Arturo Salinas Garza\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio, along with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan, founded the law firm \"Basave Colosio Sánchez\". At the firm, they began a parliamentary consultancy with various politicians from all parties as clients. There, he made contact with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for local deputy in the [[2018 Mexican general election|2018 elections]], which he ultimately accepted in 2017.\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} On 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, he Council of Monterrey approved Colosio's request for a temporary leave to pursue a senatorial seat in the [[2024 Mexican general election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1222537422, + "parentid": 1222516204, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-05-06T14:37:08Z", + "sha1": "97fe68030276860678f81b94a2ed75afffdb7fdc", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Early political career */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 29 September 2021\n| term_end = 29 February 2024\n| predecessor = Adrián de la Garza\n| successor = Betsabé Rocha Nieto (interim)\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = [[José Arturo Salinas Garza]]\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, he Council of Monterrey approved Colosio's request for a temporary leave to pursue a senatorial seat in the [[2024 Mexican general election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1222581385, + "parentid": 1222537422, + "minor": "", + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-05-06T19:18:24Z", + "sha1": "d540534d1c24694912dfe7f845f228f9fa3ac064", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added link to adrian de la garza page", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 29 September 2021\n| term_end = 29 February 2024\n| predecessor = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor = Betsabé Rocha Nieto (interim)\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = [[José Arturo Salinas Garza]]\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, he Council of Monterrey approved Colosio's request for a temporary leave to pursue a senatorial seat in the [[2024 Mexican general election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1226024058, + "parentid": 1222581385, + "user": "Moscow Mule", + "userid": 30438843, + "timestamp": "2024-05-28T04:01:58Z", + "sha1": "8803131000694823bf7ed77e0a3d71455b24c24b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Leave */ rwd, lk", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 29 September 2021\n| term_end = 29 February 2024\n| predecessor = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor = Betsabé Rocha Nieto (interim)\n| office2 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start2 = 1 September 2018\n| term_end2 = 1 February 2021\n| predecessor2 = [[José Arturo Salinas Garza]]\n| successor2 = Marco Antonio Decanini Contreras\n| office3 = \n| term_start3 = \n| term_end3 = \n| predecessor3 = \n| successor3 = \n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, the Monterrey City Council approved Colosio's request for a temporary leave to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1227424767, + "parentid": 1226024058, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-06-05T17:01:58Z", + "sha1": "f3a3b7e0526136b64d163794a9f2ae386296f084", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "infobox update", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Municipal president of Monterrey]]\n| term_start = 4 June 2024\n| term_end = \n| predecessor = Betsabé Rocha Nieto (interim)\n| successor =\n| term_start2 = 29 September 2021\n| term_end2 = 29 February 2024\n| predecessor2 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor2 = Betsabé Rocha Nieto (interim)\n| office3 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start3 = 1 September 2018\n| term_end3 = 1 February 2021\n| predecessor3 = [[José Arturo Salinas Garza]]\n| successor3 = Marco Antonio Decanini Contreras\n| office4 = \n| term_start4 = \n| term_end4 = \n| predecessor4 = \n| successor4 = \n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, the Monterrey City Council approved Colosio's request for a temporary leave to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1234010057, + "parentid": 1227424767, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-07-12T03:06:51Z", + "sha1": "4f2125b9ca380bad7d7b1dcd5bcfb548508365b7", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added senator-elect", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = \n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==== Leave ====\nOn 16 February 2024, the Monterrey City Council approved Colosio's request for a temporary leave to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]]. The leave was granted from the last minute of 29 February 2024 to 3 June 2024. Betsabé Rocha Nieto was appointed as the interim municipal president during Colosio's absence.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1240392688, + "parentid": 1234010057, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-08-15T04:45:18Z", + "sha1": "416fbb3c26da70622296655f3c42881a6580f042", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Tenure */ moved leave section", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = \n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, and resumed his role as mayor on 4 June.{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} Colosio is set to step down again to assume his seat in the Senate.{{Cite web |title=Rendirá su último informe Colosio antes de irse al Senado |url=https://elporvenir.mx/local/rendira-su-ultimo-informe-colosio-antes-de-irse-al-senado/760785 |access-date=2024-08-15 |website=El Porvenir |language=es}}\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1240511617, + "parentid": 1240392688, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-08-15T19:35:16Z", + "sha1": "76bc07523798396511a16143f2d1ac83890c5e3b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added approval ratings to tenure of municipal president", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = \n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician. He is the mayor of the city of [[Monterrey]] and was a legislator in the [[Congress of Nuevo León]] from 1 September 2018 to 1 February 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], the [[Institutional Revolutionary Party|PRI]] presidential candidate, who was [[assassination|assassinated]] at a campaign rally in [[Tijuana]] during the [[1994 Mexican general election|Mexican presidential campaign of 1994]].\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, and resumed his role as mayor on 4 June.{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} Colosio is set to step down again to assume his seat in the Senate.{{Cite web |title=Rendirá su último informe Colosio antes de irse al Senado |url=https://elporvenir.mx/local/rendira-su-ultimo-informe-colosio-antes-de-irse-al-senado/760785 |access-date=2024-08-15 |website=El Porvenir |language=es}}\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1240517802, + "parentid": 1240511617, + "minor": "", + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-08-15T20:18:18Z", + "sha1": "60ab7315ab82ecb9a84743551ccb82daef3ef87e", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "lead", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = \n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician, serving as the mayor of [[Monterrey]] since 2021. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, and resumed his role as mayor on 4 June.{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} Colosio is set to step down again to assume his seat in the Senate.{{Cite web |title=Rendirá su último informe Colosio antes de irse al Senado |url=https://elporvenir.mx/local/rendira-su-ultimo-informe-colosio-antes-de-irse-al-senado/760785 |access-date=2024-08-15 |website=El Porvenir |language=es}}\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\n==== Parks and green corridors ====\nColosio tackled the lack of green areas by rehabilitating and reforesting parks and connecting these with tree-lined paths, or [[Green corridor|green corridors]]. The creation of these corridors involved expanding sidewalks, installing bike lanes, and planting trees along specific avenues. \n\nAs part of this initiative, parks such as Parque Lago and Parque Alameda were rehabilitated.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} The ''Puente Verde'' (in English: Green Bridge), a green corridor spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}, was constructed and inaugurated in 2023,{{Cite web |title=monterrey.gob.mx |url=https://www.monterrey.gob.mx/noticia/inaugura-monterrey-puente-verde |access-date=2024-05-05 |website=www.monterrey.gob.mx}} connecting [[Fundidora Park]] and Parque España.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} Green corridors were developed along avenues in downtown Monterrey as part of ''Revive al Centro'', which aimed to renovate downtown Monterrey's urban image. However, criticism emerged regarding the slow pace of construction for the corridors and the traffic caused by lane closures.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} \n\nIn August 2023, Colosio announced the construction of a [[roundabout]] around Monterrey's Independence Arch to protect it from vehicles, along with improvements to the existing crosswalks.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}} By November 2023, the roundabout was completed.{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1241016713, + "parentid": 1240517802, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-08-18T20:56:54Z", + "sha1": "1a2f72445daf953aad833304becee4225ec520ac", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Tenure */ updated", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = \n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician, serving as the mayor of [[Monterrey]] since 2021. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, and resumed his role as mayor on 4 June.{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} Colosio is set to step down again to assume his seat in the Senate.{{Cite web |title=Rendirá su último informe Colosio antes de irse al Senado |url=https://elporvenir.mx/local/rendira-su-ultimo-informe-colosio-antes-de-irse-al-senado/760785 |access-date=2024-08-15 |website=El Porvenir |language=es}}\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nIn September 2022, Colosio announced his security strategy, named ''Monterrey Protege'' (in English: Monterrey Protects). This strategy involved expanding police coverage from 177 to 343 neighborhoods, repairing 1,700 CCTV cameras, and adding 444 patrol cars.{{Cite web |title=Presenta Colosio la estrategia de seguridad “Monterrey Protege”, asume Policía Regia vigilancia del norponiente |url=https://www.monterrey.gob.mx/noticia/presenta-colosio-la-estrategia-de-seguridad-monterrey-protege |access-date=2024-05-06 |website=www.monterrey.gob.mx}}{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also implemented a 15% increase in police salaries at the start of his tenure, and in February 2024, he further increased it by an additional 20%.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1241030814, + "parentid": 1241016713, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-08-18T22:41:14Z", + "sha1": "1c32ed1cfe9903be9f7b781682d552b1f4e86acf", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Crime and policing */ update", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = \n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician, serving as the mayor of [[Monterrey]] since 2021. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] under Citizens' Movement.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, and resumed his role as mayor on 4 June.{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} Colosio is set to step down again to assume his seat in the Senate.{{Cite web |title=Rendirá su último informe Colosio antes de irse al Senado |url=https://elporvenir.mx/local/rendira-su-ultimo-informe-colosio-antes-de-irse-al-senado/760785 |access-date=2024-08-15 |website=El Porvenir |language=es}}\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1241048146, + "parentid": 1241030814, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-08-19T01:02:51Z", + "sha1": "e9c1956a5cd2ae7ac0261dc27395b1500ef1292d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added more context to mayor and senate elections", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = \n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician, serving as the mayor of [[Monterrey]] since 2021. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and is set to step down again to assume his seat in the Senate.{{Cite web |title=Rendirá su último informe Colosio antes de irse al Senado |url=https://elporvenir.mx/local/rendira-su-ultimo-informe-colosio-antes-de-irse-al-senado/760785 |access-date=2024-08-15 |website=El Porvenir |language=es}}\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia|Sigamos Haciendo Historia's]] formula, garnered 33.94%, and ahead of [[Fuerza y Corazón por México|Fuerza y Corazón por México's]], which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1241074132, + "parentid": 1241048146, + "minor": "", + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-08-19T05:12:36Z", + "sha1": "1dd590b718f90ae0a5d4d6ce071cf4f86301382a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Election */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = \n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician, serving as the mayor of [[Monterrey]] since 2021. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and is set to step down again to assume his seat in the Senate.{{Cite web |title=Rendirá su último informe Colosio antes de irse al Senado |url=https://elporvenir.mx/local/rendira-su-ultimo-informe-colosio-antes-de-irse-al-senado/760785 |access-date=2024-08-15 |website=El Porvenir |language=es}}\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia|Sigamos Haciendo Historia's]] formula, which garnered 33.94%, and ahead of [[Fuerza y Corazón por México|Fuerza y Corazón por México's]], which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1241790017, + "parentid": 1241074132, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-08-23T04:21:44Z", + "sha1": "96b26b82b96d6ce7b6532284e303de7f74d030dc", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added end of term as mayor", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = Senator-elect of the [[Senate of the Republic (Mexico)|Congress of the Union]]
for [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = \n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| succeeding = [[Víctor Oswaldo Fuentes Solís]]\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who is currently the senator-elect from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.94%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1243950410, + "parentid": 1241790017, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-09-04T07:56:59Z", + "sha1": "b3fa6ab60843dfea89a90ffda4ca36e077f9b97e", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "LXVI senator", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who is currently the senator-elect from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.94%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1243951647, + "parentid": 1243950410, + "minor": "", + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-09-04T08:10:13Z", + "sha1": "0555c15ebf9aa31d467a179b81a252ee6b279e64", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "senator", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.94%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1244125761, + "parentid": 1243951647, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-09-05T05:33:56Z", + "sha1": "f05eacbef227f8d667819c67b677ff30e94071e5", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Senate of the Republic */", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.94%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1244140064, + "parentid": 1244125761, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2024-09-05T08:13:37Z", + "sha1": "57e1abc5cad08c90a48b97f54ecfa51b9e41210b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added first minority", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]
{{small|First minority}}\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]] to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.94%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1245134134, + "parentid": 1244140064, + "minor": "", + "user": "Moscow Mule", + "userid": 30438843, + "timestamp": "2024-09-11T06:13:49Z", + "sha1": "d70049d924503ab506ea00f6fc458d4e5b54e09c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Early life and education */ ,", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]
{{small|First minority}}\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the [[Mirador del Obispado|''Mirador del Obispado'']], the [[Faro del Comercio|''Faro del Comercio'']], and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.94%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1262640912, + "parentid": 1245134134, + "minor": "", + "user": "Aadirulez8", + "userid": 24465790, + "timestamp": "2024-12-12T12:54:25Z", + "sha1": "d68853c88dcbd2f3b724ed6db0d28af7f5578294", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "v2.05 - Autofix / Fix errors for [[WP:WCW|CW project]] (Link equal to linktext)", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]
{{small|First minority}}\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.94%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1286174663, + "parentid": 1262640912, + "user": "Asuka Langley Shikinami", + "userid": 22937593, + "timestamp": "2025-04-18T05:46:07Z", + "sha1": "38f3e4370c80d8e75f8b59a4857055cb3cb701bc", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Election */ Rounding up 33.9484%.", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]
{{small|First minority}}\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last=Jornada |first=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal “Monterrey Construye” habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad “Monterrey Protege” |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.95%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1287677921, + "parentid": 1286174663, + "user": "Citation bot", + "userid": 7903804, + "timestamp": "2025-04-27T19:15:22Z", + "sha1": "21d1db60055084a9bac2cf7750add5541af592c1", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Altered title. Add: date, authors 1-1. Removed parameters. Some additions/deletions were parameter name changes. | [[:en:WP:UCB|Use this bot]]. [[:en:WP:DBUG|Report bugs]]. | Suggested by Abductive | [[Category:Monterrey Institute of Technology and Higher Education alumni]] | #UCB_Category 190/209", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]
{{small|First minority}}\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |date=September 2018 |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last1=Jornada |first1=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal \"Monterrey Construye\" habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the {{ill|Santa Catarina River (Mexico)|lt=Santa Catarina River|es|Río Santa Catarina}}.{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad \"Monterrey Protege\" |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.95%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1296572597, + "parentid": 1287677921, + "minor": "", + "user": "Cewbot", + "userid": 23646674, + "timestamp": "2025-06-20T20:34:48Z", + "sha1": "dc275b3be66253a30ab36bc0096563d9cf41574c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Convert [[Santa Catarina River (Mexico)|Santa Catarina River]] to wikilink (The bot operation is completed 12.2% in total)", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]
{{small|First minority}}\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |date=September 2018 |url=https://www.eleconomista.com.mx/amp/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last1=Jornada |first1=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal \"Monterrey Construye\" habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the [[Santa Catarina River (Mexico)|Santa Catarina River]].{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad \"Monterrey Protege\" |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.95%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1296572619, + "parentid": 1296572597, + "user": "KiranBOT", + "userid": 32983869, + "timestamp": "2025-06-20T20:35:00Z", + "sha1": "955541982cbccbe2258af01d1475656c7ad349ac", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "removed AMP tracking from URLs ([[:m:User:KiranBOT/AMP|details]]) ([[User talk:Usernamekiran|report error]]) v2.2.7r", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]
{{small|First minority}}\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nShortly after graduating as a lawyer in 2010, Colosio co-founded the law firm \"Basave Colosio Sánchez\" with Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. At the firm, they began providing parliamentary consultancy services to various politicians. It was during this time that he made contact with leaders of [[Citizens' Movement (Mexico)|Citizens' Movement]], who offered him a candidacy for an elected office in the [[2018 Mexican general election|2018 elections]], a proposition he ultimately accepted in 2017.\n\nIn January 2018, [[Samuel García (politician)|Samuel García]], the then coordinator of [[Citizens' Movement (Mexico)|Citizens' Movement]] in Nuevo León, introduced Colosio as a candidate for a popularly elected office, either at the federal or state level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won with 33.41% of the votes, defeating the incumbent, [[José Arturo Salinas Garza|Arturo Salinas Garza]], by 6.78 points.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |date=September 2018 |url=https://www.eleconomista.com.mx/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last1=Jornada |first1=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal \"Monterrey Construye\" habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the [[Santa Catarina River (Mexico)|Santa Catarina River]].{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad \"Monterrey Protege\" |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.95%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1297970641, + "parentid": 1296572619, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2025-06-29T18:13:23Z", + "sha1": "a34b4775291f6f3cb9ad8e453ebcae3617e62ceb", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Early political career */ rwd", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]
from [[Nuevo León]]
{{small|First minority}}\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]
from the 4th district\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nAfter obtaining his law degree in 2010, Colosio co-founded the law firm Basave Colosio Sánchez, alongside Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. The firm specialized in parliamentary consultancy, advising various public officials and political figures. During this period, Colosio established relationships with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]] (MC), who would later encourage him to seek elected office.\n\nIn 2017, Colosio formally accepted an invitation from MC to run as a candidate in the 2018 elections. In January 2018, [[Samuel García (politician)|Samuel García]], the party's coordinator in Nuevo León, publicly introduced Colosio as a prospective candidate for a popularly elected position at either the state or federal level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won the seat with 33.41 percent of the vote, defeating the incumbent, Arturo Salinas Garza of the National Action Party (PAN), by a margin of 6.78 points, flipping the district.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |date=September 2018 |url=https://www.eleconomista.com.mx/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last1=Jornada |first1=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal \"Monterrey Construye\" habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the [[Santa Catarina River (Mexico)|Santa Catarina River]].{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad \"Monterrey Protege\" |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.95%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1302213186, + "parentid": 1297970641, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2025-07-24T02:24:57Z", + "sha1": "b9bcabd0d5083fa21d121e59e757b7fd9f2691d3", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "infobox constituencies", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n| constituency = [[Nuevo León]]\n| constituency4 = 4th district\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nAfter obtaining his law degree in 2010, Colosio co-founded the law firm Basave Colosio Sánchez, alongside Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. The firm specialized in parliamentary consultancy, advising various public officials and political figures. During this period, Colosio established relationships with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]] (MC), who would later encourage him to seek elected office.\n\nIn 2017, Colosio formally accepted an invitation from MC to run as a candidate in the 2018 elections. In January 2018, [[Samuel García (politician)|Samuel García]], the party's coordinator in Nuevo León, publicly introduced Colosio as a prospective candidate for a popularly elected position at either the state or federal level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won the seat with 33.41 percent of the vote, defeating the incumbent, Arturo Salinas Garza of the National Action Party (PAN), by a margin of 6.78 points, flipping the district.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |date=September 2018 |url=https://www.eleconomista.com.mx/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last1=Jornada |first1=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal \"Monterrey Construye\" habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the [[Santa Catarina River (Mexico)|Santa Catarina River]].{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad \"Monterrey Protege\" |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.95%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]" + }, + { + "revid": 1316723168, + "parentid": 1302213186, + "user": "EchoLuminary", + "userid": 46991865, + "timestamp": "2025-10-14T03:41:18Z", + "sha1": "0751815c4787a0929c6a828a4bae0673bb69c82c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added [[Category:Members of the Senate of the Republic (Mexico) for Nuevo León]] using [[WP:HC|HotCat]]", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]\n| term_start = 1 September 2024\n| term_end = \n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| term_start2 = \n| term_end2 = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico) | Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| termstart2 = 4 June 2024\n| termend2 = 22 August 2024\n| constituency = [[Nuevo León]]\n| constituency4 = 4th district\n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nAfter obtaining his law degree in 2010, Colosio co-founded the law firm Basave Colosio Sánchez, alongside Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. The firm specialized in parliamentary consultancy, advising various public officials and political figures. During this period, Colosio established relationships with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]] (MC), who would later encourage him to seek elected office.\n\nIn 2017, Colosio formally accepted an invitation from MC to run as a candidate in the 2018 elections. In January 2018, [[Samuel García (politician)|Samuel García]], the party's coordinator in Nuevo León, publicly introduced Colosio as a prospective candidate for a popularly elected position at either the state or federal level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won the seat with 33.41 percent of the vote, defeating the incumbent, Arturo Salinas Garza of the National Action Party (PAN), by a margin of 6.78 points, flipping the district.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |date=September 2018 |url=https://www.eleconomista.com.mx/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last1=Jornada |first1=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues. \n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}} \n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal \"Monterrey Construye\" habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the [[Santa Catarina River (Mexico)|Santa Catarina River]].{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}} \n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad \"Monterrey Protege\" |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.95%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]\n[[Category:Members of the Senate of the Republic (Mexico) for Nuevo León]]" + }, + { + "revid": 1347221443, + "parentid": 1316723168, + "minor": "", + "user": "PrimeBOT", + "userid": 29463730, + "timestamp": "2026-04-05T12:08:15Z", + "sha1": "aefffec06f07c0b8d044396f45a90f4c426d33f9", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "[[User:PrimeBOT/30|Task 30]]: infobox parameter cleanup following [[Template_talk:Infobox_officeholder#Conflicting_parameter_cleanup|a discussion]] and overhaul", + "*": "{{short description|Mexican politician}}\n{{family name hatnote|Colosio|Riojas|lang=Spanish}}\n{{Infobox officeholder\n| name = Luis Donaldo Colosio Riojas\n| image = Diputado Luis Donaldo Colosio Riojas.jpg\n| office = [[Senate of the Republic (Mexico)|Senator of the Republic]]\n| term_start = 1 September 2024\n| term_end =\n| predecessor = [[Víctor Oswaldo Fuentes Solís]]\n| successor = \n| predecessor2 = Betsabé Rocha Nieto (interim)\n| successor2 = [[Francisco Donaciano Bahena Sampogna]] (acting)\n| office3 = \n| term_start3 = 29 September 2021\n| term_end3 = 29 February 2024\n| predecessor3 = [[Adrián de la Garza Santos|Adrián de la Garza]]\n| successor3 = Betsabé Rocha Nieto (interim)\n| office4 = Member of the [[Congress of Nuevo León]]\n| term_start4 = 1 September 2018\n| term_end4 = 1 February 2021\n| predecessor4 = [[José Arturo Salinas Garza]]\n| successor4 = Marco Antonio Decanini Contreras\n| birth_date = {{birth date and age|1985|7|31|df=y}}\n| birth_place = [[Magdalena de Kino]], [[Sonora]], [[Mexico]]\n| death_date = \n| death_place = \n| resting_place = \n| occupation = {{hlist|Politician||Lawyer}}\n| party = [[Citizens' Movement (Mexico)|Citizens' Movement]]\n| parents = [[Luis Donaldo Colosio Murrieta]]
Diana Laura Riojas\n| spouse = {{marriage|María de la Luz García Luna|2009}}\n| children = 2\n| relatives = [[Luis Colosio Fernández]] (paternal grandfather)\n| education = [[Monterrey Institute of Technology and Higher Education]] ([[Bachelor of Laws|LLB]])\n| website = https://www.colosioriojas.mx/\n| office2 = [[Municipal president of Monterrey]]\n| term_start2 = 4 June 2024\n| term_end2 = 22 August 2024\n| constituency = [[Nuevo León]]\n| constituency4 = 4th district \n}}\n\n'''Luis Donaldo Colosio Riojas''' (born 31 July 1985) is a Mexican lawyer and politician who serves as a senator from Nuevo León. A member of [[Citizens' Movement (Mexico)|Citizens' Movement]], he previously served as a deputy in the [[Congress of Nuevo León]] from 2018 to 2021 and as mayor of [[Monterrey]] from 2021 to 2024. He is the son of [[Luis Donaldo Colosio Murrieta]], a presidential candidate who was assassinated at a campaign rally in [[Tijuana]] in 1994.\n\n==Early life and education==\nColosio was born on 31 July 1985 in [[Magdalena de Kino]], [[Sonora]], to [[Luis Donaldo Colosio Murrieta]] and Diana Laura Riojas. His father and grandfather were both politicians affiliated with the [[Institutional Revolutionary Party]] (PRI), with his father being the PRI's presidential candidate for the [[1994 Mexican general election|1994 election]]. His mother was an economist. Colosio has a younger sister named Mariana.\n\nWhen Colosio was eight years old, he and his sister became orphans after their father was assassinated at a campaign rally in [[Tijuana]] in 1994, followed by their mother's death from [[pancreatic cancer]] eight months later. The siblings were then adopted by their maternal aunt and uncle, Hilda Elisa Riojas and Fernando Cantú, and moved to [[Monterrey|Monterrey, Nuevo León]].{{Cite news |last=Pacheco |first=Gustavo |date=23 March 2019 |title=Esto ha pasado con los hijos de Luis Donaldo Colosio |url=https://www.milenio.com/politica/colosio-que-fue-de-sus-hijos-y-esposa |newspaper=[[Milenio]]}}\n\n=== Education ===\nColosio attended the Mexico City campus of the [[Monterrey Institute of Technology and Higher Education]], where he earned a [[Bachelor of Laws]] in 2010. He is currently pursuing a master's degree in [[corporate law]] from the [[University of Monterrey]].{{Cite web |last=Martinez |first=Por Rubi |date=2024-01-23 |title=Éste es el grado de estudios de Luis Donaldo Colosio Riojas, el alcalde de Monterrey que quiere llegar al Senado con MC |url=https://www.infobae.com/mexico/2024/01/23/este-es-el-grado-de-estudios-de-luis-donaldo-colosio-riojas-el-alcalde-de-monterrey-que-quiere-llegar-al-senado-con-mc/ |access-date=2024-05-05 |website=infobae |language=es-ES}}\n\n==Early political career==\nColosio was initially discouraged by his family from pursuing a political career. In 2006, he received an offer to be a candidate for plurinominal deputy, which he rejected.{{Cite news |last=Corona |first=Sonia |date=2018-06-22 |title=Basave y Colosio, el relevo político que se cocina en el norte de México |url=https://elpais.com/internacional/2018/06/21/mexico/1529587416_684884.html |access-date=2024-05-05 |work=El País |language=es |issn=1134-6582}}\n\nAfter obtaining his law degree in 2010, Colosio co-founded the law firm Basave Colosio Sánchez, alongside Agustín Basave Alanís, Alejandro Basave, and Manuel Sánchez O’Sullivan. The firm specialized in parliamentary consultancy, advising various public officials and political figures. During this period, Colosio established relationships with leaders of the [[Citizens' Movement (Mexico)|Citizens' Movement]] (MC), who would later encourage him to seek elected office.\n\nIn 2017, Colosio formally accepted an invitation from MC to run as a candidate in the 2018 elections. In January 2018, [[Samuel García (politician)|Samuel García]], the party's coordinator in Nuevo León, publicly introduced Colosio as a prospective candidate for a popularly elected position at either the state or federal level.{{Cite web |title=Hijos de Colosio y Basave buscan ser candidatos por MC en Nuevo León |url=https://www.eluniversal.com.mx/elecciones-2018/hijos-de-colosio-y-basave-buscan-ser-candidatos-por-mc-en-nuevo-leon/ |access-date=2024-05-06 |website=El Universal |language=es}}\n\n=== Local deputy ===\nColosio was nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] as a candidate for the 4th district of [[Nuevo León]] in the 2018 state election. He won the seat with 33.41 percent of the vote, defeating the incumbent, Arturo Salinas Garza of the National Action Party (PAN), by a margin of 6.78 points, flipping the district.{{Cite web |title=Hijo de Colosio gana diputación en su debut político en NL |url=https://www.eluniversal.com.mx/elecciones-2018/hijo-de-colosio-gana-diputacion-en-su-debut-politico-en-nl/ |access-date=2024-05-05 |website=El Universal |language=es}} He was the only candidate from Citizens' Movement to secure a seat through first-past-the-post voting in the election.\n\nOn 1 September 2018, he was sworn in as a member of the LXXV Legislature of the [[Congress of Nuevo León]].{{Cite web |title=Inicia LXXV Legislatura de Nuevo León |date=September 2018 |url=https://www.eleconomista.com.mx/economia/Inicia-LXXV-Legislatura-de-Nuevo-Leon-20180901-0017.html}}\n\n== Municipal president of Monterrey (2021–2024) ==\n\n=== Election ===\nOn 15 November 2020, [[Citizens' Movement (Mexico)|Citizens' Movement]] announced that Senator [[Samuel García (politician)|Samuel García]] and Colosio were seeking the party's gubernatorial nomination. García was selected as the gubernatorial nominee, and on 25 January 2021, Colosio registered as a precandidate for [[municipal president of Monterrey]] instead.{{Cite web |last=Vargas |first=Lidia |date=2021-01-31 |title=Luis Donaldo Colosio se registra como precandidato a la alcaldía de Monterrey |url=https://lopezdoriga.com/nacional/luis-donaldo-colosio-se-registra-como-precandidato-a-la-alcaldia-de-monterrey/ |access-date=2024-05-05 |website=López-Dóriga Digital |language=es-MX}} He won the election with over 47% of the vote in an eight-way race, beating his nearest opponent by over 16 points.{{cite news |date=8 June 2021 |title=Colosio, Vizcaíno, Marina y Cerqueda, las nuevas caras de la política en México |url=https://www.elfinanciero.com.mx/elecciones-2021/2021/06/08/luis-donaldo-colosio-indira-vizcaino-samuel-garcia-y-adolfo-cerqueda-las-nuevas-caras-de-la-politica-en-mexico/ |publisher=El Financiero/[[Bloomberg L.P.|Bloomberg]]}}{{cite web |title=Programa de Resultados Electorales Preliminares 2021 - Elecciones Estatales de Nuevo León |url=https://www.sipre.mx/GC01M40.htm |access-date=10 June 2021 |publisher=Comisión Estatal Electoral Nuevo León}}\n\n=== Tenure ===\nColosio was inaugurated on 29 September 2021 at 11:55 p.m.\n\nDuring his first year, Colosio enjoyed an approval rating of 54.4%, according to ''¿Cómo Vamos Nuevo León?''.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-02-28 |title=Estos son los alcaldes con mayor aprobación de la Zona Metropolitana de Monterrey |url=https://www.reporteindigo.com/reporte/estos-son-los-alcaldes-con-mayor-aprobacion-en-la-zona-metropolitana-de-monterrey/ |access-date=2024-08-15 |website=Reporte Indigo |language=es-MX}} However, his approval rating dropped by 23 points in 2023, largely due to the slow pace of construction projects and a perceived rise in crime, becoming the lowest-rated mayor in the [[Monterrey metropolitan area]].{{Cite web |last=LPO (Monterrey) |title=La aprobación de Colosio se desploma y se refleja en la contienda por el Senado |url=https://www.lapoliticaonline.com/mexico/nuevoleon-mx/colosio-a-la-baja-pierde-hasta-20-puntos-en-aprobacion-en-el-2023/ |access-date=2024-08-15 |website=www.lapoliticaonline.com |language=es-ar}}\n\nOn 16 February 2024, Colosio took a leave of absence to pursue one of Nuevo León's [[Senate (Mexico)|Senate]] seats in the [[2024 Mexican Senate election|2024 elections]].{{Cite web |last1=Jornada |first1=La |last2=corresponsal |first2=Raúl Robledo |date=2024-02-15 |title=Aprueba Congreso de NL licencia para Luis Donaldo Colosio Riojas |url=https://www.jornada.com.mx/noticia/2024/02/15/estados/aprueba-congreso-de-nl-licencia-para-luis-donaldo-colosio-1011 |access-date=2024-08-15 |website=La Jornada |language=es}} He temporarily handed over his duties to Betsabé Rocha Nieto on 29 February, secured a Senate seat, resumed his role as mayor on 4 June,{{Cite web |date=2024-06-04 |title=Luis Donaldo Colosio regresa a la alcaldía de Monterrey; esperará resultados oficiales de la elección al Senado |url=https://latinus.us/eleccion-2024/2024/6/4/luis-donaldo-colosio-regresa-la-alcaldia-de-monterrey-esperara-resultados-oficiales-de-la-eleccion-al-senado-116688.html |access-date=2024-08-15 |website=LatinUS |language=es}} and stepped down as mayor on 22 August, with Francisco Donaciano Bahena Sampogna taking his place as acting mayor.{{Cite web |title=Deja Colosio alcaldía de Monterrey de manera definitiva |url=https://elporvenir.mx/local/deja-colosio-alcaldia-de-monterrey-de-manera-definitiva/763995 |access-date=2024-08-23 |website=El Porvenir |language=es}}\n\n==== Urban design and parks ====\nColosio launched the ''Corredores Verdes'' (in English: Green corridors) initiative to make Monterrey more walkable by expanding sidewalks, improving crosswalks, adding bike lanes, and planting trees along key downtown avenues. However, the initiative faced criticism for causing traffic disruptions due to lane closures and delays in construction.{{Cite web |date=2021-01-01 |title=Siguen detenidos los trabajos del corredor verde en avenida Ocampo |url=https://www.posta.com.mx/nuevoleon/siguen-detenidos-los-trabajos-del-corredor-verde-en-avenida-ocampo/v-vl1534845 |access-date=2024-05-05 |website=POSTA Nuevo León |language=es}}{{Cite web |title=Acumulan retrasos corredores verdes |url=https://www.elnorte.com/acumulan-retrasos-corredores-verdes/ar2840100 |access-date=2024-08-18 |website=www.elnorte.com |language=es}} Drivers also voiced frustration over reduced lanes and parking along the reconfigured avenues.\n\nInfrastructure improvements and maintenance were carried out on several Monterrey landmarks, including the ''[[Mirador del Obispado]]'', the ''[[Faro del Comercio]]'', and the ''[[Barrio Antiguo]]''.{{Cite web |date=2024-02-04 |title=Obra de rehabilitación en el Obispado lleva 80% de avance: municipio de Monterrey |url=https://abcnoticias.mx/local/2024/2/4/obra-de-rehabilitacion-en-el-obispado-lleva-80-de-avance-municipio-de-monterrey-208784.html |access-date=2024-08-18 |website=ABC Noticias |language=es-AR}}{{Cite web |last=Martínez |first=Mónica Patricia Zúñiga |date=2024-08-14 |title=Municipio de Monterrey termina rehabilitación del Faro del Comercio |url=https://www.reporteindigo.com/reporte/concluyen-trabajos-de-rehabilitacion-en-el-faro-del-comercio-de-monterrey/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} A [[roundabout]] was constructed around the city's Independence Arch to protect it from vehicles.{{Cite web |last=Marroquín |first=José Luis |date=2023-09-11 |title=Bolardos en Arco de la Independencia en Monterrey son para cuidar el patrimonio: Enrique Adame |url=https://www.telediario.mx/comunidad/por-que-cerraron-paso-en-arco-de-la-independencia-en-monterrey |access-date=2024-05-06 |website=Telediario}}{{Cite web |date=2023-11-23 |title=Desde este jueves se reabre vialidad en Arco de la Independencia en Monterrey |url=https://www.publimetro.com.mx/nuevo-leon/2023/11/23/arco-de-la-independencia-en-monterrey-terminan-obras-y-queda-libre-la-circulacion/ |access-date=2024-05-06 |website=Publimetro México |language=es}}\n\nTo address the lack of green spaces in Monterrey, Colosio rehabilitated numerous neighborhood parks across the city.{{Cite web |last=Staff |first=Indigo |date=2022-11-14 |title=Programa Municipal \"Monterrey Construye\" habilita espacios públicos y vialidades en zona sur |url=https://www.reporteindigo.com/reporte/programa-municipal-monterrey-construye-habilita-espacios-publicos-y-vialidades-en-zona-sur/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} Larger parks, including Parque Lago and Parque Alameda, were also reforested and rehabilitated as part of these efforts.{{Cite web |title=Supervisa alcalde regio avance de Parque Lago |url=https://elporvenir.mx/local/supervisa-alcalde-regio-avance-de-parque-lago/682177 |access-date=2024-05-05 |website=El Porvenir |language=es}}{{Cite web |last=Carreón |first=Ricardo Alanís |date=2023-12-12 |title=Inicia Monterrey última etapa de rescate en la Alameda Mariano Escobedo |url=https://www.reporteindigo.com/reporte/inicia-monterrey-ultima-etapa-de-rescate-en-la-alameda-mariano-escobedo/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}} [[Fundidora Park]] and Parque España were connected with the ''Puente Verde'' (in English: Green Bridge), a pedestrian bridge spanning the [[Santa Catarina River (Mexico)|Santa Catarina River]].{{Cite web |date=2023-08-29 |title=Puente Verde es inaugurado en medio de la lluvia; conecta Parque Fundidora y Parque España |url=https://mvsnoticias.com/nuevo-leon/2023/8/29/puente-verde-es-inaugurado-en-medio-de-la-lluvia-conecta-parque-fundidora-parque-espana-604702.html |access-date=2024-05-05 |website=MVS Noticias |language=es}}\n\n==== Roads ====\nBetween 2022 and 2023, the Monterrey government repaved about 729 thousand cubic meters of pavement throughout the municipality, covering eight of the city's major avenues and streets in 46 different neighborhoods.{{Cite web |last=Briones |first=Jesús Iván Moreno |date=2023-01-10 |title=Adiós baches: estas avenidas de Monterrey ya fueron repavimentadas |url=https://www.reporteindigo.com/reporte/adios-baches-principales-avenidas-de-monterrey-ya-fueron-repavimentadas/ |access-date=2024-05-05 |website=Reporte Indigo |language=es-MX}}\n\n==== Crime and policing ====\nColosio introduced the security strategy named ''Monterrey Protege'' (in English: Monterrey Protects), which expanded police coverage from 177 to 343 neighborhoods,{{Cite web |last=Staff |first=Indigo |date=2022-09-06 |title=Presenta Luis Donaldo Colosio estrategia de seguridad \"Monterrey Protege\" |url=https://www.reporteindigo.com/reporte/presenta-luis-donaldo-colosio-estrategia-de-seguridad-monterrey-protege/ |access-date=2024-08-18 |website=Reporte Indigo |language=es-MX}} installed 6,000 security cameras,{{Cite web |date=2024-06-13 |title=Monterrey quiere subir a 6 mil el número de cámaras de seguridad |url=https://abcnoticias.mx/seguridad/2024/6/13/monterrey-quiere-subir-mil-el-numero-de-camaras-de-seguridad-218708.html |access-date=2024-08-18 |website=ABC Noticias |language=es}} placed panic buttons throughout the city,{{Cite web |title=Instala Monterrey botones de alerta |url=https://elporvenir.mx/local/instala-monterrey-botones-de-alerta/755543 |access-date=2024-08-18 |website=El Porvenir |language=es}} and added 444 patrol cars to the police force.{{Cite web |date=2023-12-11 |title=Amplía Monterrey el número de sus patrullas |url=https://abcnoticias.mx/local/2023/12/11/amplia-monterrey-el-numero-de-sus-patrullas-204944.html |access-date=2024-05-06 |website=ABC Noticias |language=es-AR}} Colosio also increased police salaries by 15% at the beginning of his term and implemented an additional 20% raise in February 2024.{{Cite web |date=2024-02-16 |title=¿Cuánto ganarán los policías de Monterrey con el aumento del 20 por ciento? |url=https://mvsnoticias.com/nuevo-leon/2024/2/16/cuanto-ganaran-los-policias-de-monterrey-con-el-aumento-del-20-por-ciento-626957.html |access-date=2024-05-06 |website=MVS Noticias |language=es}}\n\nDespite his efforts, the homicide rate in Monterrey has remained relatively unchanged during Colosio's tenure, only decreasing from 226 to 223 annual deaths between 2021 and 2023.{{Cite web |date=2024-01-18 |title=Fiscalía de NL destaca los operativos y combate a la delincuencia durante 2023 |url=https://abcnoticias.mx/seguridad/2024/1/18/fiscalia-de-nl-destaca-los-operativos-combate-la-delincuencia-durante-2023-207586.html |access-date=2024-05-06 |website=ABC Noticias |language=es}} However, there has been a decrease in the perception of insecurity, with 69.8% feeling unsafe in December 2022 and only 58.6% feeling unsafe in December 2023, the lowest since 2016.{{Cite web |date=2024-02-11 |title=Monterrey reduce su percepción de inseguridad al 58.6% |url=https://abcnoticias.mx/local/2024/2/11/monterrey-reduce-su-percepcion-de-inseguridad-al-586-209359.html |access-date=2024-05-05 |website=ABC Noticias |language=es-AR}} Confidence in the police has also increased from 64.9% to 68.2% between 2022 and 2023.\n\n== Senate of the Republic (2024–present) ==\n\n=== Election ===\nIn the [[2024 Mexican Senate election]], Colosio and Martha Herrera González were nominated by [[Citizens' Movement (Mexico)|Citizens' Movement]] to represent [[Nuevo León]] in the Senate, with Colosio leading the party's two-name formula. In a close three-way race,{{Cite web |date=2024-06-04 |title=Cerrada contienda por el Senado en Nuevo León {{!}} Revista Punto de Vista |url=https://revistapuntodevista.com.mx/seccion/mexico/cerrada-contienda-por-el-senado-en-nuevo-leon/856968/ |access-date=2024-08-19 |language=es}} Colosio and Herrera garnered 32.13% of the vote, placing second to [[Sigamos Haciendo Historia]]'s formula, which garnered 33.95%, and ahead of [[Fuerza y Corazón por México]]'s, which received 31.51%. As the first in his party's formula, Colosio won a seat through first minority.{{Cite web |last=Herrera |first=Por Olivia Vázquez |date=2024-06-09 |title=Luis Donaldo Colosio sí será senador por MC tras darle la vuelta al PRIAN en los cómputos distritales |url=https://www.infobae.com/mexico/2024/06/09/luis-donaldo-colosio-si-sera-senador-por-mc-tras-darle-la-vuelta-al-prian-en-los-computos-distritales/ |access-date=2024-08-19 |website=infobae |language=es-ES}}\n\n=== Tenure ===\nUpon being sworn in, Colosio was chosen as one of four secretaries in the Senate's Board of Directors for the first session of the [[LXVI Legislature of the Mexican Congress|LXVI Legislature]].{{Cite web |title=Coordinación de Comunicación Social - Eligen al senador Gerardo Fernández Noroña como presidente de la Mesa Directiva del Senado |url=https://comunicacionsocial.senado.gob.mx/informacion/comunicados/9540-eligen-al-senador-gerardo-fernandez-norona-como-presidente-de-la-mesa-directiva-del-senado |access-date=2024-09-05 |website=comunicacionsocial.senado.gob.mx}}\n\n==References==\n\n\n==Further reading==\n*[[Jorge G. Castañeda|Castañeda, Jorge G.]] ''Perpetuating Power: How Mexican Presidents Were Chosen''. New York: The New Press 2000. {{ISBN|1-56584-616-8}}\n*[[Enrique Krauze|Krauze, Enrique]], ''Mexico: Biography of Power''. New York: HarperCollins 1997. {{ISBN|0-06-016325-9}}\n\n==External links==\n*[https://www.colosioriojas.mx/ Official web site]\n*[https://www.facebook.com/colosioriojas/ Official Facebook page]\n\n{{Authority control}}\n\n{{DEFAULTSORT:Colosio Riojas, Luis Donaldo}}\n[[Category:Living people]]\n[[Category:1985 births]]\n[[Category:Mexican people of Italian descent]]\n[[Category:Mexican people of Basque descent]]\n[[Category:Mexican people of Catalan descent]]\n[[Category:Citizens' Movement (Mexico) politicians]]\n[[Category:Members of the Congress of Nuevo León]]\n[[Category:Municipal presidents of Monterrey]]\n[[Category:Monterrey Institute of Technology and Higher Education alumni]]\n[[Category:Politicians from Sonora]]\n[[Category:21st-century Mexican politicians]]\n[[Category:People from Magdalena de Kino]]\n[[Category:Members of the Senate of the Republic (Mexico) for Nuevo León]]" + } +] \ No newline at end of file diff --git a/tests/fixtures/one_thing_leads_2_another_golden.json b/tests/fixtures/one_thing_leads_2_another_golden.json new file mode 100644 index 0000000..5c66a81 --- /dev/null +++ b/tests/fixtures/one_thing_leads_2_another_golden.json @@ -0,0 +1,12441 @@ +[ + { + "str": "{{", + "token_id": 0, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "infobox", + "token_id": 1, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "single", + "token_id": 2, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "", + "token_id": 10, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "|", + "token_id": 11, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 12, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 13, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 14, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 15, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 16, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 17, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 18, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 19, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "cover", + "token_id": 20, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 21, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "otlta", + "token_id": 22, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 23, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "jpg", + "token_id": 24, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 25, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "artist", + "token_id": 26, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 27, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 28, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 29, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 30, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 31, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 32, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "album", + "token_id": 33, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 34, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 35, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "change", + "token_id": 36, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 37, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 38, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 39, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "album", + "token_id": 40, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 41, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 42, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "change", + "token_id": 43, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 44, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 45, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "released", + "token_id": 46, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 47, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 48, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "start", + "token_id": 49, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 50, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 51, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 52, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 53, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "10", + "token_id": 54, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 55, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "14", + "token_id": 56, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 57, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "df", + "token_id": 58, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 59, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "yes", + "token_id": 60, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 61, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 62, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 63, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 64, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 65, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 66, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "musicline", + "token_id": 67, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 68, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 69, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 70, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "http", + "token_id": 71, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 72, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 73, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 74, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 75, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 76, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "musicline", + "token_id": 77, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 78, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 79, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 80, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 81, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 82, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "product", + "token_id": 83, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 84, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "44001946929", + "token_id": 85, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 86, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 87, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 88, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "1053454", + "token_id": 89, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "musicline", + "token_id": 90, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 91, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 92, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 93, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 94, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 95, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 96, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 97, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 98, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 99, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 100, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 101, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 102, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 103, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 104, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 105, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 106, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 107, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 108, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "small", + "token_id": 109, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": ">", + "token_id": 110, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "(", + "token_id": 111, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "germany", + "token_id": 112, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": ")", + "token_id": 113, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "<", + "token_id": 114, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "/", + "token_id": 115, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "small", + "token_id": 116, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": ">", + "token_id": 117, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "|", + "token_id": 118, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "format", + "token_id": 119, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "=", + "token_id": 120, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "[[", + "token_id": 121, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "cd", + "token_id": 122, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "single", + "token_id": 123, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "|", + "token_id": 124, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "cd", + "token_id": 125, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "]]", + "token_id": 126, + "o_rev_id": 315609335, + "in": [], + "out": [ + 997158387 + ] + }, + { + "str": "|", + "token_id": 127, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "recorded", + "token_id": 128, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 129, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 130, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 131, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "genre", + "token_id": 132, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 133, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 134, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "pop", + "token_id": 135, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "music", + "token_id": 136, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 137, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "pop", + "token_id": 138, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 139, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 140, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "length", + "token_id": 141, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 142, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "3", + "token_id": 143, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 144, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 145, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 146, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "label", + "token_id": 147, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 148, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 149, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "universal", + "token_id": 150, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "music", + "token_id": 151, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 152, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "universal", + "token_id": 153, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 154, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 155, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "writer", + "token_id": 156, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 157, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 158, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 159, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 160, + "o_rev_id": 315609335, + "in": [ + 1033823901 + ], + "out": [ + 1033814697, + 1283391933 + ] + }, + { + "str": "[[", + "token_id": 161, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "mark", + "token_id": 162, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "holden", + "token_id": 163, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 164, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 165, + "o_rev_id": 315609335, + "in": [ + 1033823901 + ], + "out": [ + 1033814697, + 1283391933 + ] + }, + { + "str": "axel", + "token_id": 166, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "breitung", + "token_id": 167, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 168, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "producer", + "token_id": 169, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 170, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "axel", + "token_id": 171, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "breitung", + "token_id": 172, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 173, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "last", + "token_id": 174, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "single", + "token_id": 175, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "=", + "token_id": 176, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "\"", + "token_id": 177, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "turn", + "token_id": 178, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 179, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "me", + "token_id": 180, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 181, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "<", + "token_id": 182, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "br", + "token_id": 183, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "/", + "token_id": 184, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": ">", + "token_id": 185, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "(", + "token_id": 186, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "2001", + "token_id": 187, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 188, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "|", + "token_id": 189, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "this", + "token_id": 190, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "single", + "token_id": 191, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "=", + "token_id": 192, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "\"", + "token_id": 193, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "'", + "token_id": 194, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "'", + "token_id": 195, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "'", + "token_id": 196, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "one", + "token_id": 197, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "thing", + "token_id": 198, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "leads", + "token_id": 199, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "2", + "token_id": 200, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "another", + "token_id": 201, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "'", + "token_id": 202, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "'", + "token_id": 203, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "'", + "token_id": 204, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "\"", + "token_id": 205, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "<", + "token_id": 206, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "br", + "token_id": 207, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "/", + "token_id": 208, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": ">", + "token_id": 209, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "(", + "token_id": 210, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "2002", + "token_id": 211, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": ")", + "token_id": 212, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "|", + "token_id": 213, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "next", + "token_id": 214, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "single", + "token_id": 215, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "=", + "token_id": 216, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "\"", + "token_id": 217, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "[[", + "token_id": 218, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "spin", + "token_id": 219, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 220, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "everybody", + "token_id": 221, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 222, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 223, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "doin", + "token_id": 224, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 225, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 226, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 227, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 228, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 229, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "<", + "token_id": 230, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "br", + "token_id": 231, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "/", + "token_id": 232, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": ">", + "token_id": 233, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "(", + "token_id": 234, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "2002", + "token_id": 235, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 236, + "o_rev_id": 315609335, + "in": [], + "out": [ + 873394388 + ] + }, + { + "str": "}}", + "token_id": 237, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 238, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 239, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 240, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 241, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 242, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 243, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 244, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 245, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 246, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 247, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 248, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 249, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 250, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 251, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 252, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "first", + "token_id": 253, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "cd", + "token_id": 254, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "single", + "token_id": 255, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "released", + "token_id": 256, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "from", + "token_id": 257, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "vanessa", + "token_id": 258, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 259, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 260, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 261, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2nd", + "token_id": 262, + "o_rev_id": 315609335, + "in": [], + "out": [ + 419000153 + ] + }, + { + "str": "studio", + "token_id": 263, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "album", + "token_id": 264, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 265, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 266, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 267, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "change", + "token_id": 268, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 269, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 270, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 271, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "album", + "token_id": 272, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 273, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 274, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "change", + "token_id": 275, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 276, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 277, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 278, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 279, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 280, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "single", + "token_id": 281, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "was", + "token_id": 282, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "released", + "token_id": 283, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "on", + "token_id": 284, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "14", + "token_id": 285, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "october", + "token_id": 286, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2002", + "token_id": 287, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 288, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "ref", + "token_id": 289, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "name", + "token_id": 290, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 291, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 292, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "musicline", + "token_id": 293, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 294, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 295, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ">", + "token_id": 296, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "and", + "token_id": 297, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "debuted", + "token_id": 298, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "at", + "token_id": 299, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "#", + "token_id": 300, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "67", + "token_id": 301, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "on", + "token_id": 302, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "the", + "token_id": 303, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "[[", + "token_id": 304, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "media", + "token_id": 305, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "control", + "token_id": 306, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "charts", + "token_id": 307, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "|", + "token_id": 308, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "german", + "token_id": 309, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "singles", + "token_id": 310, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "chart", + "token_id": 311, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "]]", + "token_id": 312, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 313, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "it", + "token_id": 314, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "remains", + "token_id": 315, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "for", + "token_id": 316, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "four", + "token_id": 317, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "weeks", + "token_id": 318, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "in", + "token_id": 319, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "the", + "token_id": 320, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "top", + "token_id": 321, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "100", + "token_id": 322, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 323, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "<", + "token_id": 324, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "ref", + "token_id": 325, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "name", + "token_id": 326, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 327, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 328, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "musicline2", + "token_id": 329, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 330, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ">", + "token_id": 331, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "[", + "token_id": 332, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "http", + "token_id": 333, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ":", + "token_id": 334, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 335, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 336, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "www", + "token_id": 337, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 338, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "musicline", + "token_id": 339, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 340, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "de", + "token_id": 341, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 342, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "de", + "token_id": 343, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 344, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "chartverfolgung", + "token_id": 345, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "_", + "token_id": 346, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "summary", + "token_id": 347, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 348, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "title", + "token_id": 349, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 350, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "amorosi", + "token_id": 351, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "%", + "token_id": 352, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2cvanessa", + "token_id": 353, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 354, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "one", + "token_id": 355, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 356, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "thing", + "token_id": 357, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 358, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "leads", + "token_id": 359, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 360, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2", + "token_id": 361, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 362, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "another", + "token_id": 363, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 364, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "single", + "token_id": 365, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "musicline", + "token_id": 366, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 367, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "de", + "token_id": 368, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 369, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "chartverfolgung", + "token_id": 370, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 371, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "amorosi", + "token_id": 372, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ",", + "token_id": 373, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 374, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 375, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "one", + "token_id": 376, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "thing", + "token_id": 377, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "leads", + "token_id": 378, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2", + "token_id": 379, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "another", + "token_id": 380, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "]", + "token_id": 381, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "<", + "token_id": 382, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 383, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "ref", + "token_id": 384, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ">", + "token_id": 385, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "amorosi", + "token_id": 386, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "sang", + "token_id": 387, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "her", + "token_id": 388, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "song", + "token_id": 389, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 390, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 391, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 392, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 393, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 394, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 395, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 396, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 397, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 398, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "charity", + "token_id": 399, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "concert", + "token_id": 400, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 401, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 402, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "frankfurt", + "token_id": 403, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "am", + "token_id": 404, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "main", + "token_id": 405, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 406, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 407, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "november", + "token_id": 408, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2002", + "token_id": 409, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 410, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "other", + "token_id": 411, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "celebrity", + "token_id": 412, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "participants", + "token_id": 413, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "were", + "token_id": 414, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 415, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "sarah", + "token_id": 416, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "connor", + "token_id": 417, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 418, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "singer", + "token_id": 419, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 420, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 421, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "sarah", + "token_id": 422, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "connor", + "token_id": 423, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 424, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 425, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 426, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "nena", + "token_id": 427, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 428, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 429, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "oli", + "token_id": 430, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "p", + "token_id": 431, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 432, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 433, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 434, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "peter", + "token_id": 435, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "maffay", + "token_id": 436, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 437, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 438, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 439, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "dj", + "token_id": 440, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "bobo", + "token_id": 441, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 442, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 443, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "isabel", + "token_id": 444, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 445, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "katy", + "token_id": 446, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "karrenbauer", + "token_id": 447, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 448, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 449, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "rosenstolz", + "token_id": 450, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 451, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 452, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "ben", + "token_id": 453, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 454, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 455, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 456, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "touch", + "token_id": 457, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 458, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "class", + "token_id": 459, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 460, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "band", + "token_id": 461, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 462, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 463, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "atc", + "token_id": 464, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 465, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 466, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "pierre", + "token_id": 467, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 468, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 469, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "b3", + "token_id": 470, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 471, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "boy", + "token_id": 472, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "band", + "token_id": 473, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 474, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 475, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "b3", + "token_id": 476, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 477, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 478, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "band", + "token_id": 479, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "ohne", + "token_id": 480, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "namen", + "token_id": 481, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 482, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "bell", + "token_id": 483, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 484, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 485, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "candle", + "token_id": 486, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 487, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "laith", + "token_id": 488, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "al", + "token_id": 489, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "deen", + "token_id": 490, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 491, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "marlon", + "token_id": 492, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 493, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 494, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "flames", + "token_id": 495, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 496, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "she", + "token_id": 497, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "loe", + "token_id": 498, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 499, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 500, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "rednex", + "token_id": 501, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 502, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 503, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 504, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "lutricia", + "token_id": 505, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "mcneal", + "token_id": 506, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 507, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 508, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 509, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 510, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "kelly", + "token_id": 511, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "family", + "token_id": 512, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 513, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 514, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 515, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 516, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "charity", + "token_id": 517, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 518, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 519, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "yielded", + "token_id": 520, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "net", + "token_id": 521, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "proceeds", + "token_id": 522, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 523, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "approximately", + "token_id": 524, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "500", + "token_id": 525, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 526, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "000", + "token_id": 527, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 528, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "00", + "token_id": 529, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "euros", + "token_id": 530, + "o_rev_id": 315609335, + "in": [], + "out": [ + 315655236 + ] + }, + { + "str": "for", + "token_id": 531, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "children", + "token_id": 532, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 533, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "cancer", + "token_id": 534, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 535, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "all", + "token_id": 536, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "proceeds", + "token_id": 537, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "went", + "token_id": 538, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 539, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 540, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 541, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "hand", + "token_id": 542, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 543, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "hand", + "token_id": 544, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 545, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "children", + "token_id": 546, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 547, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "association", + "token_id": 548, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 549, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 550, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 551, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 552, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 553, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "http", + "token_id": 554, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 555, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 556, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 557, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 558, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 559, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "handinhandforchildren", + "token_id": 560, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 561, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "de", + "token_id": 562, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 563, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "charity", + "token_id": 564, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 565, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "cls", + "token_id": 566, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 567, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "eltorro", + "token_id": 568, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 569, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "cfm", + "token_id": 570, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "?", + "token_id": 571, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "sessident", + "token_id": 572, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 573, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "rcftihpxct7iu9xxzrvhi8bbpjgdol", + "token_id": 574, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 575, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "cmd", + "token_id": 576, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 577, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "concerts", + "token_id": 578, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 579, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "action", + "token_id": 580, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 581, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "detail", + "token_id": 582, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 583, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "id", + "token_id": 584, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 585, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "3173", + "token_id": 586, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 587, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "naviid", + "token_id": 588, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 589, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "894", + "token_id": 590, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "charity", + "token_id": 591, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 592, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "live", + "token_id": 593, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "dabei", + "token_id": 594, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 595, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 596, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 597, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 598, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 599, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 600, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 601, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 602, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "track", + "token_id": 603, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "listing", + "token_id": 604, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 605, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 606, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ";", + "token_id": 607, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "cd", + "token_id": 608, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "single", + "token_id": 609, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "<", + "token_id": 610, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "small", + "token_id": 611, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ">", + "token_id": 612, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "(", + "token_id": 613, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "cat", + "token_id": 614, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 615, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "no", + "token_id": 616, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 617, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "019", + "token_id": 618, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "469", + "token_id": 619, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 620, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2", + "token_id": 621, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ")", + "token_id": 622, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "<", + "token_id": 623, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 624, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "small", + "token_id": 625, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ">", + "token_id": 626, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "{{", + "token_id": 627, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "tracklist", + "token_id": 628, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 629, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "collapsed", + "token_id": 630, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "=", + "token_id": 631, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "no", + "token_id": 632, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 633, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "headline", + "token_id": 634, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 635, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 636, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "total", + "token_id": 637, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 638, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "length", + "token_id": 639, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 640, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 641, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "writing", + "token_id": 642, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "_", + "token_id": 643, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "credits", + "token_id": 644, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "=", + "token_id": 645, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "yes", + "token_id": 646, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "|", + "token_id": 647, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "lyrics", + "token_id": 648, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "_", + "token_id": 649, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "credits", + "token_id": 650, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "=", + "token_id": 651, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "|", + "token_id": 652, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "music", + "token_id": 653, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "_", + "token_id": 654, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "credits", + "token_id": 655, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "=", + "token_id": 656, + "o_rev_id": 315609335, + "in": [], + "out": [ + 840920555 + ] + }, + { + "str": "|", + "token_id": 657, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "title1", + "token_id": 658, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 659, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 660, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 661, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 662, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 663, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 664, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 665, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "note1", + "token_id": 666, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 667, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "radio", + "token_id": 668, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "edit", + "token_id": 669, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 670, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "writer1", + "token_id": 671, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 672, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 673, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 674, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "holden", + "token_id": 675, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 676, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "breitung", + "token_id": 677, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 678, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "length1", + "token_id": 679, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 680, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "3", + "token_id": 681, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 682, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 683, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 684, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "title2", + "token_id": 685, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 686, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "dream", + "token_id": 687, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 688, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "note2", + "token_id": 689, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 690, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 691, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "writer2", + "token_id": 692, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 693, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 694, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 695, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "holden", + "token_id": 696, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 697, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 698, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "klarmann", + "token_id": 699, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 700, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "weber", + "token_id": 701, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 702, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 703, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "length2", + "token_id": 704, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 705, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "3", + "token_id": 706, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 707, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "46", + "token_id": 708, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 709, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "title3", + "token_id": 710, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 711, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 712, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 713, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 714, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 715, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 716, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 717, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "note3", + "token_id": 718, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 719, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "pop", + "token_id": 720, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "version", + "token_id": 721, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 722, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "writer3", + "token_id": 723, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 724, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 725, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 726, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "holden", + "token_id": 727, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 728, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "breitung", + "token_id": 729, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 730, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "length3", + "token_id": 731, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 732, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "3", + "token_id": 733, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 734, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "44", + "token_id": 735, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 736, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "title4", + "token_id": 737, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 738, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 739, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 740, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 741, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 742, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 743, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 744, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "note4", + "token_id": 745, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 746, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "instrumental", + "token_id": 747, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "version", + "token_id": 748, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 749, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "writer4", + "token_id": 750, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 751, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 752, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 753, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "holden", + "token_id": 754, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 755, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "breitung", + "token_id": 756, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 757, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "length4", + "token_id": 758, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 759, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "3", + "token_id": 760, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 761, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "13", + "token_id": 762, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 763, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 764, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 765, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "music", + "token_id": 766, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "video", + "token_id": 767, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 768, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 769, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 770, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "video", + "token_id": 771, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "clip", + "token_id": 772, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 773, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 774, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 775, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 776, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 777, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 778, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 779, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 780, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 781, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "shot", + "token_id": 782, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 783, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "september", + "token_id": 784, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 785, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 786, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 787, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "tempodrom", + "token_id": 788, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "arena", + "token_id": 789, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 790, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "berlin", + "token_id": 791, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 792, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 793, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 794, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "charts", + "token_id": 795, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 796, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 797, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "{", + "token_id": 798, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 799, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "class", + "token_id": 800, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 801, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 802, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "wikitable", + "token_id": 803, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "sortable", + "token_id": 804, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 805, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 806, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "chart", + "token_id": 807, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 808, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 809, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 810, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 811, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "peak", + "token_id": 812, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 813, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "br", + "token_id": 814, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 815, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 816, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "position", + "token_id": 817, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 818, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 819, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 820, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "[[", + "token_id": 821, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "media", + "token_id": 822, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "control", + "token_id": 823, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "charts", + "token_id": 824, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "|", + "token_id": 825, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "german", + "token_id": 826, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "singles", + "token_id": 827, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "chart", + "token_id": 828, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "]]", + "token_id": 829, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "<", + "token_id": 830, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "ref", + "token_id": 831, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "name", + "token_id": 832, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 833, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "\"", + "token_id": 834, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "musicline2", + "token_id": 835, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 836, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "/", + "token_id": 837, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ">", + "token_id": 838, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "|", + "token_id": 839, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "align", + "token_id": 840, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 841, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 842, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "center", + "token_id": 843, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 844, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "|", + "token_id": 845, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "67", + "token_id": 846, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 847, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 848, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 849, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "[[", + "token_id": 850, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "swiss", + "token_id": 851, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "music", + "token_id": 852, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "charts", + "token_id": 853, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "|", + "token_id": 854, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "swiss", + "token_id": 855, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "singles", + "token_id": 856, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "chart", + "token_id": 857, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "]]", + "token_id": 858, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "<", + "token_id": 859, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "ref", + "token_id": 860, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ">", + "token_id": 861, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "[", + "token_id": 862, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "http", + "token_id": 863, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ":", + "token_id": 864, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 865, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 866, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "hitparade", + "token_id": 867, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 868, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "ch", + "token_id": 869, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 870, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "showitem", + "token_id": 871, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 872, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "asp", + "token_id": 873, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "?", + "token_id": 874, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "interpret", + "token_id": 875, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 876, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "vanessa", + "token_id": 877, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 878, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "amorosi", + "token_id": 879, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "&", + "token_id": 880, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "titel", + "token_id": 881, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 882, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "one", + "token_id": 883, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 884, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "thing", + "token_id": 885, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 886, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "leads", + "token_id": 887, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 888, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2", + "token_id": 889, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "+", + "token_id": 890, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "another", + "token_id": 891, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "&", + "token_id": 892, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "cat", + "token_id": 893, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 894, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "s", + "token_id": 895, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "hitparade", + "token_id": 896, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 897, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "ch", + "token_id": 898, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ":", + "token_id": 899, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "vanessa", + "token_id": 900, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "amorosi", + "token_id": 901, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "-", + "token_id": 902, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "one", + "token_id": 903, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "thing", + "token_id": 904, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "leads", + "token_id": 905, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "2", + "token_id": 906, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "another", + "token_id": 907, + "o_rev_id": 315609335, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "(", + "token_id": 908, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "song", + "token_id": 909, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ")", + "token_id": 910, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "]", + "token_id": 911, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "<", + "token_id": 912, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 913, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "ref", + "token_id": 914, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ">", + "token_id": 915, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "|", + "token_id": 916, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "align", + "token_id": 917, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 918, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 919, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "center", + "token_id": 920, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "\"", + "token_id": 921, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 922, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "62", + "token_id": 923, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 924, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "}", + "token_id": 925, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 926, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 927, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "sources", + "token_id": 928, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 929, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 930, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "*", + "token_id": 931, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "[", + "token_id": 932, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "http", + "token_id": 933, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ":", + "token_id": 934, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 935, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 936, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "www", + "token_id": 937, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 938, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "discogs", + "token_id": 939, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 940, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "com", + "token_id": 941, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 942, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "vanessa", + "token_id": 943, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 944, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "amorosi", + "token_id": 945, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 946, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "one", + "token_id": 947, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 948, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "thing", + "token_id": 949, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 950, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "leads", + "token_id": 951, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 952, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2", + "token_id": 953, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 954, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "another", + "token_id": 955, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 956, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "release", + "token_id": 957, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 958, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "980631", + "token_id": 959, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "discogs", + "token_id": 960, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ":", + "token_id": 961, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "one", + "token_id": 962, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 963, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 964, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 965, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 966, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 967, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "cd", + "token_id": 968, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ",", + "token_id": 969, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "maxi", + "token_id": 970, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ")", + "token_id": 971, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "]", + "token_id": 972, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "*", + "token_id": 973, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "[", + "token_id": 974, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "http", + "token_id": 975, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ":", + "token_id": 976, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 977, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 978, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "www", + "token_id": 979, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 980, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "handinhandforchildren", + "token_id": 981, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 982, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "de", + "token_id": 983, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 984, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "pics", + "token_id": 985, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 986, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "downloads", + "token_id": 987, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 988, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "charity", + "token_id": 989, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "%", + "token_id": 990, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "202002", + "token_id": 991, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "%", + "token_id": 992, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "20tagespr", + "token_id": 993, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 994, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "pdf", + "token_id": 995, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "hand", + "token_id": 996, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "in", + "token_id": 997, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "hand", + "token_id": 998, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "for", + "token_id": 999, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "children", + "token_id": 1000, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 1001, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "charity", + "token_id": 1002, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2002", + "token_id": 1003, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "]", + "token_id": 1004, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "*", + "token_id": 1005, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "[", + "token_id": 1006, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "http", + "token_id": 1007, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ":", + "token_id": 1008, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 1009, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 1010, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "www", + "token_id": 1011, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 1012, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "handinhandforchildren", + "token_id": 1013, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 1014, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "de", + "token_id": 1015, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 1016, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "charity", + "token_id": 1017, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "/", + "token_id": 1018, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "cls", + "token_id": 1019, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "_", + "token_id": 1020, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "eltorro", + "token_id": 1021, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": ".", + "token_id": 1022, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "cfm", + "token_id": 1023, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "?", + "token_id": 1024, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "sessident", + "token_id": 1025, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 1026, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "6vogsb60desieubqeq3dhzweuyfyzz", + "token_id": 1027, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "&", + "token_id": 1028, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "cmd", + "token_id": 1029, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 1030, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "concerts", + "token_id": 1031, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "&", + "token_id": 1032, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "action", + "token_id": 1033, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 1034, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "pictures", + "token_id": 1035, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "&", + "token_id": 1036, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "id", + "token_id": 1037, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 1038, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "3173", + "token_id": 1039, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "&", + "token_id": 1040, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "naviid", + "token_id": 1041, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 1042, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "894", + "token_id": 1043, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "charity", + "token_id": 1044, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "2002", + "token_id": 1045, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "-", + "token_id": 1046, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "live", + "token_id": 1047, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "dabei", + "token_id": 1048, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "!", + "token_id": 1049, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "]", + "token_id": 1050, + "o_rev_id": 315609335, + "in": [], + "out": [ + 925279062 + ] + }, + { + "str": "=", + "token_id": 1051, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1052, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "references", + "token_id": 1053, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1054, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1055, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1056, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "reflist", + "token_id": 1057, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1058, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1059, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 1060, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 1061, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1062, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1063, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1064, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1065, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 1066, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "singles", + "token_id": 1067, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1068, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1069, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1070, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1071, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 1072, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 1073, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "songs", + "token_id": 1074, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1075, + "o_rev_id": 315609335, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1076, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "bell", + "token_id": 1077, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1078, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 1079, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 1080, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "candle", + "token_id": 1081, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 1082, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "band", + "token_id": 1083, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 1084, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1085, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1086, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1087, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1088, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1089, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1090, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "euro", + "token_id": 1091, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1092, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1093, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1094, + "o_rev_id": 315655236, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1095, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": "uk", + "token_id": 1096, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": ":", + "token_id": 1097, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": "one", + "token_id": 1098, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": "thing", + "token_id": 1099, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": "leads", + "token_id": 1100, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": "2", + "token_id": 1101, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": "another", + "token_id": 1102, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": "]]", + "token_id": 1103, + "o_rev_id": 320165885, + "in": [], + "out": [ + 545732086 + ] + }, + { + "str": "[[", + "token_id": 1104, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1105, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1106, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": "songs", + "token_id": 1107, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": "written", + "token_id": 1108, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 1109, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": "mark", + "token_id": 1110, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": "holden", + "token_id": 1111, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1112, + "o_rev_id": 345379045, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1113, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "=", + "token_id": 1114, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "cover", + "token_id": 1115, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "versions", + "token_id": 1116, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "=", + "token_id": 1117, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "=", + "token_id": 1118, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "*", + "token_id": 1119, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "[[", + "token_id": 1120, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "paulini", + "token_id": 1121, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "curuenavuli", + "token_id": 1122, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "]]", + "token_id": 1123, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "cover", + "token_id": 1124, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "of", + "token_id": 1125, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "vanessa", + "token_id": 1126, + "o_rev_id": 357424503, + "in": [], + "out": [ + 359661622 + ] + }, + { + "str": "'", + "token_id": 1127, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "s", + "token_id": 1128, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "'", + "token_id": 1129, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "one", + "token_id": 1130, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "thing", + "token_id": 1131, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "leads", + "token_id": 1132, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "to", + "token_id": 1133, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "another", + "token_id": 1134, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "'", + "token_id": 1135, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "is", + "token_id": 1136, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "featured", + "token_id": 1137, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "on", + "token_id": 1138, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "the", + "token_id": 1139, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "'", + "token_id": 1140, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "australian", + "token_id": 1141, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "idol", + "token_id": 1142, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": ":", + "token_id": 1143, + "o_rev_id": 357424503, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "the", + "token_id": 1144, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": "final", + "token_id": 1145, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": "12", + "token_id": 1146, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1147, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": "album", + "token_id": 1148, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": "released", + "token_id": 1149, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1150, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": "2003", + "token_id": 1151, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1152, + "o_rev_id": 357424503, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1153, + "o_rev_id": 357425324, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "song", + "token_id": 1154, + "o_rev_id": 357425324, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "being", + "token_id": 1155, + "o_rev_id": 357425324, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "written", + "token_id": 1156, + "o_rev_id": 357425324, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 1157, + "o_rev_id": 357425324, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1158, + "o_rev_id": 357425324, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "mark", + "token_id": 1159, + "o_rev_id": 357425324, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "holden", + "token_id": 1160, + "o_rev_id": 357425324, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "]]", + "token_id": 1161, + "o_rev_id": 357425324, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": ",", + "token_id": 1162, + "o_rev_id": 357425324, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "a", + "token_id": 1163, + "o_rev_id": 357425324, + "in": [], + "out": [] + }, + { + "str": "judge", + "token_id": 1164, + "o_rev_id": 357425324, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 1165, + "o_rev_id": 357425324, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1166, + "o_rev_id": 357425324, + "in": [], + "out": [] + }, + { + "str": "show", + "token_id": 1167, + "o_rev_id": 357425324, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1168, + "o_rev_id": 357425324, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 1169, + "o_rev_id": 359661622, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": ",", + "token_id": 1170, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1171, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1172, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1173, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 1174, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "http", + "token_id": 1175, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1176, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1177, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1178, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 1179, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1180, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "cduniverse", + "token_id": 1181, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1182, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 1183, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1184, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "search", + "token_id": 1185, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1186, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "xx", + "token_id": 1187, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1188, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "music", + "token_id": 1189, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1190, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "pid", + "token_id": 1191, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1192, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "6642291", + "token_id": 1193, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1194, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 1195, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1196, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "australian", + "token_id": 1197, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "+", + "token_id": 1198, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "idol", + "token_id": 1199, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1200, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "+", + "token_id": 1201, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1202, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "+", + "token_id": 1203, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "final", + "token_id": 1204, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "+", + "token_id": 1205, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "12", + "token_id": 1206, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1207, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "htm", + "token_id": 1208, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "cduniverse", + "token_id": 1209, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1210, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 1211, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1212, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "australian", + "token_id": 1213, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "idol", + "token_id": 1214, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1215, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1216, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "final", + "token_id": 1217, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "12", + "token_id": 1218, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "cd", + "token_id": 1219, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 1220, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1221, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1222, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1223, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1224, + "o_rev_id": 359661622, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1225, + "o_rev_id": 361356415, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "'", + "token_id": 1226, + "o_rev_id": 361356415, + "in": [], + "out": [] + }, + { + "str": "second", + "token_id": 1227, + "o_rev_id": 419000153, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1228, + "o_rev_id": 496199376, + "in": [], + "out": [] + }, + { + "str": "oliver", + "token_id": 1229, + "o_rev_id": 496199376, + "in": [], + "out": [] + }, + { + "str": "petszokat", + "token_id": 1230, + "o_rev_id": 496199376, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1231, + "o_rev_id": 496199376, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1232, + "o_rev_id": 496199376, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1233, + "o_rev_id": 496199376, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1234, + "o_rev_id": 496199376, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1235, + "o_rev_id": 545862521, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1236, + "o_rev_id": 545862521, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1237, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1238, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1239, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "songs", + "token_id": 1240, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "written", + "token_id": 1241, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 1242, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "axel", + "token_id": 1243, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "breitung", + "token_id": 1244, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1245, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1246, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1247, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1248, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "songs", + "token_id": 1249, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "written", + "token_id": 1250, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 1251, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 1252, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 1253, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1254, + "o_rev_id": 551305118, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1255, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1256, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1257, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 1258, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "songs", + "token_id": 1259, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1260, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1261, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "category", + "token_id": 1262, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1263, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "universal", + "token_id": 1264, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "music", + "token_id": 1265, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "group", + "token_id": 1266, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "singles", + "token_id": 1267, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1268, + "o_rev_id": 608858748, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1269, + "o_rev_id": 657207513, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1270, + "o_rev_id": 657207513, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1271, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 1272, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": "song", + "token_id": 1273, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 1274, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1275, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": "turn", + "token_id": 1276, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 1277, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": "me", + "token_id": 1278, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1279, + "o_rev_id": 760106566, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1280, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "song", + "token_id": 1281, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1282, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "alt", + "token_id": 1283, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1284, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1285, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "type", + "token_id": 1286, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1287, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1288, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "studio", + "token_id": 1289, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1290, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1291, + "o_rev_id": 873394388, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "venue", + "token_id": 1292, + "o_rev_id": 873394388, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "=", + "token_id": 1293, + "o_rev_id": 873394388, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "|", + "token_id": 1294, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "prev", + "token_id": 1295, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 1296, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1297, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1298, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "prev", + "token_id": 1299, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 1300, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "year", + "token_id": 1301, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1302, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1303, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 1304, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 1305, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1306, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1307, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "next", + "token_id": 1308, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 1309, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "year", + "token_id": 1310, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1311, + "o_rev_id": 873394388, + "in": [], + "out": [] + }, + { + "str": "urban", + "token_id": 1312, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "music", + "token_id": 1313, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1314, + "o_rev_id": 925279062, + "in": [ + 1033823901 + ], + "out": [ + 1033814697, + 1283391933 + ] + }, + { + "str": "a", + "token_id": 1315, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "song", + "token_id": 1316, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 1317, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "australian", + "token_id": 1318, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "recording", + "token_id": 1319, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "artist", + "token_id": 1320, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1321, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "released", + "token_id": 1322, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1323, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "october", + "token_id": 1324, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 1325, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 1326, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1327, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1328, + "o_rev_id": 925279062, + "in": [], + "out": [ + 925331644 + ] + }, + { + "str": "lead", + "token_id": 1329, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "single", + "token_id": 1330, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 1331, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 1332, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1333, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "november", + "token_id": 1334, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "plainrowheaders", + "token_id": 1335, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1336, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "style", + "token_id": 1337, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1338, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1339, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "text", + "token_id": 1340, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1341, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "align", + "token_id": 1342, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1343, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "center", + "token_id": 1344, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": ";", + "token_id": 1345, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "scope", + "token_id": 1346, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1347, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1348, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "col", + "token_id": 1349, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1350, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1351, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "scope", + "token_id": 1352, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1353, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1354, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "col", + "token_id": 1355, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1356, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1357, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 1358, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "scope", + "token_id": 1359, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "row", + "token_id": 1360, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "{{", + "token_id": 1361, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "singlechart", + "token_id": 1362, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1363, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "germany", + "token_id": 1364, + "o_rev_id": 925279062, + "in": [], + "out": [ + 943098683 + ] + }, + { + "str": "|", + "token_id": 1365, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1366, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "artist", + "token_id": 1367, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "=", + "token_id": 1368, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1369, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "song", + "token_id": 1370, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "=", + "token_id": 1371, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1372, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "accessdate", + "token_id": 1373, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "=", + "token_id": 1374, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "8", + "token_id": 1375, + "o_rev_id": 925279062, + "in": [], + "out": [ + 943098683 + ] + }, + { + "str": "november", + "token_id": 1376, + "o_rev_id": 925279062, + "in": [], + "out": [ + 943098683 + ] + }, + { + "str": "2019", + "token_id": 1377, + "o_rev_id": 925279062, + "in": [], + "out": [ + 943098683 + ] + }, + { + "str": "|", + "token_id": 1378, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "refname", + "token_id": 1379, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "=", + "token_id": 1380, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "\"", + "token_id": 1381, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "ger", + "token_id": 1382, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "charts", + "token_id": 1383, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "\"", + "token_id": 1384, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "}}", + "token_id": 1385, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "-", + "token_id": 1386, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 1387, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "scope", + "token_id": 1388, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "row", + "token_id": 1389, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1390, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "singlechart", + "token_id": 1391, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1392, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "switzerland", + "token_id": 1393, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1394, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1395, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "artist", + "token_id": 1396, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1397, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1398, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "song", + "token_id": 1399, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1400, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1401, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "accessdate", + "token_id": 1402, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1403, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "8", + "token_id": 1404, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "november", + "token_id": 1405, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "2019", + "token_id": 1406, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1407, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "refname", + "token_id": 1408, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1409, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "\"", + "token_id": 1410, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "sui", + "token_id": 1411, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "charts", + "token_id": 1412, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1413, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1414, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "|", + "token_id": 1415, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1416, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1417, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1418, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "release", + "token_id": 1419, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "history", + "token_id": 1420, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1421, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1422, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "{", + "token_id": 1423, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1424, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "class", + "token_id": 1425, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1426, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1427, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "wikitable", + "token_id": 1428, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1429, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 1430, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "region", + "token_id": 1431, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 1432, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 1433, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 1434, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "label", + "token_id": 1435, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 1436, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "catalogue", + "token_id": 1437, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1438, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "-", + "token_id": 1439, + "o_rev_id": 925279062, + "in": [], + "out": [ + 1283391933 + ] + }, + { + "str": "|", + "token_id": 1440, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "europe", + "token_id": 1441, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1442, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "october", + "token_id": 1443, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "2002", + "token_id": 1444, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1445, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "urban", + "token_id": 1446, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "music", + "token_id": 1447, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "universal", + "token_id": 1448, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "music", + "token_id": 1449, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1450, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "019469", + "token_id": 1451, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 1452, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1453, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "}", + "token_id": 1454, + "o_rev_id": 925279062, + "in": [], + "out": [] + }, + { + "str": "germany2", + "token_id": 1455, + "o_rev_id": 943098683, + "in": [], + "out": [ + 1001236414 + ] + }, + { + "str": "|", + "token_id": 1456, + "o_rev_id": 943098683, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "songid", + "token_id": 1457, + "o_rev_id": 943098683, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1458, + "o_rev_id": 943098683, + "in": [], + "out": [ + 1153115618 + ] + }, + { + "str": "5371", + "token_id": 1459, + "o_rev_id": 943098683, + "in": [], + "out": [] + }, + { + "str": "28", + "token_id": 1460, + "o_rev_id": 943098683, + "in": [], + "out": [] + }, + { + "str": "february", + "token_id": 1461, + "o_rev_id": 943098683, + "in": [], + "out": [] + }, + { + "str": "2020", + "token_id": 1462, + "o_rev_id": 943098683, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1463, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "dead", + "token_id": 1464, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "link", + "token_id": 1465, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1466, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 1467, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1468, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "april", + "token_id": 1469, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "2020", + "token_id": 1470, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1471, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "bot", + "token_id": 1472, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1473, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "internetarchivebot", + "token_id": 1474, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1475, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "fix", + "token_id": 1476, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1477, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "attempted", + "token_id": 1478, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1479, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "yes", + "token_id": 1480, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1481, + "o_rev_id": 952944729, + "in": [], + "out": [] + }, + { + "str": "germany", + "token_id": 1482, + "o_rev_id": 1001236414, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1483, + "o_rev_id": 1003319293, + "in": [], + "out": [] + }, + { + "str": "authority", + "token_id": 1484, + "o_rev_id": 1003319293, + "in": [], + "out": [] + }, + { + "str": "control", + "token_id": 1485, + "o_rev_id": 1003319293, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1486, + "o_rev_id": 1003319293, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1487, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "hlist", + "token_id": 1488, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "|", + "token_id": 1489, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "|", + "token_id": 1490, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "}}", + "token_id": 1491, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "{{", + "token_id": 1492, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "hlist", + "token_id": 1493, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "|", + "token_id": 1494, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "|", + "token_id": 1495, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "|", + "token_id": 1496, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "}}", + "token_id": 1497, + "o_rev_id": 1033814697, + "in": [], + "out": [ + 1033823901 + ] + }, + { + "str": "{{", + "token_id": 1498, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "track", + "token_id": 1499, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "listing", + "token_id": 1500, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1501, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "single", + "token_id": 1502, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "chart", + "token_id": 1503, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1504, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1505, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1506, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1507, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1508, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1509, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1510, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1511, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1512, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1513, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1514, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "refname", + "token_id": 1515, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1516, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1517, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "ger", + "token_id": 1518, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "charts", + "token_id": 1519, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1520, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1521, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 1522, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "scope", + "token_id": 1523, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1524, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1525, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "row", + "token_id": 1526, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1527, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1528, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "single", + "token_id": 1529, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "chart", + "token_id": 1530, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1531, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1532, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1533, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "artist", + "token_id": 1534, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1535, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "vanessa", + "token_id": 1536, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "amorosi", + "token_id": 1537, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1538, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "song", + "token_id": 1539, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1540, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 1541, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 1542, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 1543, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 1544, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 1545, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1546, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "accessdate", + "token_id": 1547, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1548, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 1549, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1550, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 1551, + "o_rev_id": 1153115618, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 1552, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 1553, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 1554, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 1555, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 1556, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 1557, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "14", + "token_id": 1558, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1559, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "paulini", + "token_id": 1560, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "curuenavuli", + "token_id": 1561, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1562, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "covered", + "token_id": 1563, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1564, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 1565, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "thing", + "token_id": 1566, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "leads", + "token_id": 1567, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 1568, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "another", + "token_id": 1569, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1570, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1571, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "which", + "token_id": 1572, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 1573, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "featured", + "token_id": 1574, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 1575, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1576, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1577, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1578, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "australian", + "token_id": 1579, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "idol", + "token_id": 1580, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1581, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1582, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "song", + "token_id": 1583, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 1584, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1585, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "mark", + "token_id": 1586, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "holden", + "token_id": 1587, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1588, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1589, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "who", + "token_id": 1590, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "was", + "token_id": 1591, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "cd", + "token_id": 1592, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "single", + "token_id": 1593, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "sortable", + "token_id": 1594, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "plainrowheaders", + "token_id": 1595, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "!", + "token_id": 1596, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "scope", + "token_id": 1597, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1598, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1599, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "row", + "token_id": 1600, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1601, + "o_rev_id": 1283391933, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 1602, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 1603, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1604, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1605, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 1606, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1607, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "archive", + "token_id": 1608, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1609, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "org", + "token_id": 1610, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1611, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 1612, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1613, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "20120927204924", + "token_id": 1614, + "o_rev_id": 1306520148, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1615, + "o_rev_id": 1306520148, + "in": [], + "out": [] + } +] \ No newline at end of file diff --git a/tests/fixtures/one_thing_leads_2_another_revisions.json b/tests/fixtures/one_thing_leads_2_another_revisions.json new file mode 100644 index 0000000..19be8ab --- /dev/null +++ b/tests/fixtures/one_thing_leads_2_another_revisions.json @@ -0,0 +1,446 @@ +[ + { + "revid": 315609335, + "parentid": 0, + "user": "PCgo", + "userid": 6433539, + "timestamp": "2009-09-22T23:43:19Z", + "sha1": "62704f5b8e12b49f9a33f45168e01a7b0c7f990d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "[[WP:AES|←]]Created page with '{{Infobox Single | Name = One Thing Leads 2 Another | Cover = Otlta.jpg | Artist = [[Vanessa Amo...'", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, Bell Book And Candle, Laith Al Deen, Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 euros for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in Berlin.\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n== References ==\n{{reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]" + }, + { + "revid": 315609522, + "parentid": 315609335, + "minor": "", + "user": "PCgo", + "userid": 6433539, + "timestamp": "2009-09-22T23:44:26Z", + "sha1": "62704f5b8e12b49f9a33f45168e01a7b0c7f990d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "moved [[\"One Thing Leads 2 Another\"]] to [[One Thing Leads 2 Another]]: \"\"", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, Bell Book And Candle, Laith Al Deen, Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 euros for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in Berlin.\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n== References ==\n{{reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]" + }, + { + "revid": 315655236, + "parentid": 315609522, + "user": "217.238.244.67", + "anon": "", + "userid": 0, + "timestamp": "2009-09-23T05:26:13Z", + "sha1": "74bd1ed146010d0f4a8ecba41915de53c0fd0da1", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Laith Al Deen > Laith Al-Deen; Bell Book And Candle > Bell, Book & Candle (band)", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n== References ==\n{{reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]" + }, + { + "revid": 320165885, + "parentid": 315655236, + "minor": "", + "user": "TobeBot", + "userid": 10286712, + "timestamp": "2009-10-16T06:44:27Z", + "sha1": "725f1e14e953264299b8cb6fe2f49fd42938df5d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "robot Adding: [[uk:One Thing Leads 2 Another]]", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n== References ==\n{{reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 345379045, + "parentid": 320165885, + "minor": "", + "user": "Richhoncho", + "userid": 1376828, + "timestamp": "2010-02-21T08:40:36Z", + "sha1": "b7a1eaaedf070c38802367251ce37f1d8122a64f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Quick-adding category [[:Category:Songs written by Mark Holden|Songs written by Mark Holden]] (using [[WP:HOTCAT|HotCat]])", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n== References ==\n{{reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 356303045, + "parentid": 345379045, + "user": "217.238.239.113", + "anon": "", + "userid": 0, + "timestamp": "2010-04-16T02:36:32Z", + "sha1": "0a87eeb8651077939e4629c68cddce2f8914afa2", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 356303122, + "parentid": 356303045, + "minor": "", + "user": "PunkyMcPunkersen", + "userid": 12125559, + "timestamp": "2010-04-16T02:37:06Z", + "sha1": "b7a1eaaedf070c38802367251ce37f1d8122a64f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Reverted 1 edit by [[Special:Contributions/217.238.239.113|217.238.239.113]] identified as [[WP:VAND|vandalism]] to last revision by [[User:Richhoncho|Richhoncho]]. ([[WP:TW|TW]])", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n== References ==\n{{reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 357424503, + "parentid": 356303122, + "user": "Shocksets.in", + "userid": 7126376, + "timestamp": "2010-04-21T15:51:46Z", + "sha1": "a20f2fc7aa2f6fc02c24898f2c0f60b326da290d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "cover version", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n*[[Paulini Curuenavuli ]] cover of Vanessa's 'One Thing Leads To Another' is featured on the 'Australian Idol: The Final 12' album released in 2003.\n\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n== References ==\n{{reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 357425324, + "parentid": 357424503, + "user": "Shocksets.in", + "userid": 7126376, + "timestamp": "2010-04-21T15:56:35Z", + "sha1": "3024cf600fc9125056fa0c1b7a0148992e6269a5", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Cover versions */", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n*[[Paulini Curuenavuli ]] cover of Vanessa's 'One Thing Leads To Another' is featured on the 'Australian Idol: The Final 12' album released in 2003. The song being written by [[Mark Holden]], a Judge on the show.\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n== References ==\n{{reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 359661622, + "parentid": 357425324, + "user": "217.238.215.39", + "anon": "", + "userid": 0, + "timestamp": "2010-05-02T16:20:49Z", + "sha1": "f1985472de153d82af81c75878a94171d62ad5d5", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "ref", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the 'Australian Idol: The Final 12' album, released in 2003[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD]. The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 361356415, + "parentid": 359661622, + "user": "217.238.240.241", + "anon": "", + "userid": 0, + "timestamp": "2010-05-10T21:54:01Z", + "sha1": "b0718700140144cfd2ddbb6d2bb1501c0f8119d9", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Cover versions */ m", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's 2nd studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD]. The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 419000153, + "parentid": 361356415, + "minor": "", + "user": "Starcheerspeaksnewslostwars", + "userid": 11554556, + "timestamp": "2011-03-15T19:29:58Z", + "sha1": "2b86101d470173ed7973898a747917d467cfa6eb", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], Oli P., [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], Band ohne Namen, [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD]. The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 496199376, + "parentid": 419000153, + "user": "79.232.39.46", + "anon": "", + "userid": 0, + "timestamp": "2012-06-06T00:35:12Z", + "sha1": "10a0f92618580e506396fe05ff26c7c51ebc7732", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "+[[Oliver Petszokat]] +[[Band Ohne Namen]]", + "*": "{{Infobox Single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD]. The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 532038915, + "parentid": 496199376, + "minor": "", + "user": "BG19bot", + "userid": 14508071, + "timestamp": "2013-01-08T23:32:39Z", + "sha1": "1e90e501bbbab4d833665961be4e0d12b9ff641c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "[[WP:CHECKWIKI]] error fix for #61. Punctuation goes before References. Do [[Wikipedia:GENFIXES|general fixes]] if a problem exists. - using [[Project:AWB|AWB]] (8853)", + "*": "{{Infobox single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n\n[[uk:One Thing Leads 2 Another]]" + }, + { + "revid": 545732086, + "parentid": 532038915, + "minor": "", + "user": "Addbot", + "userid": 6569922, + "timestamp": "2013-03-20T17:37:50Z", + "sha1": "6567aedfaee824a8e6ebddeb4ce8df1017a3fc40", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "[[User:Addbot|Bot:]] Migrating 1 interwiki links, now provided by [[Wikipedia:Wikidata|Wikidata]] on [[d:q7093280]]", + "*": "{{Infobox single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the Tempodrom arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]" + }, + { + "revid": 545862521, + "parentid": 545732086, + "user": "2003:41:6002:2:80:0:2:1", + "anon": "", + "userid": 0, + "timestamp": "2013-03-21T03:12:07Z", + "sha1": "3df257d2c16928f937e56578d7346fb71269047d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Music video */ link -> [[Tempodrom]]", + "*": "{{Infobox single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]" + }, + { + "revid": 551305118, + "parentid": 545862521, + "minor": "", + "user": "Richhoncho", + "userid": 1376828, + "timestamp": "2013-04-20T16:01:56Z", + "sha1": "978692f40dd3663e8ff4b197b14f5116801c7ee8", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "+[[Category:Songs written by Axel Breitung]]; +[[Category:Songs written by Vanessa Amorosi]] using [[WP:HC|HotCat]]", + "*": "{{Infobox single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]" + }, + { + "revid": 608858748, + "parentid": 551305118, + "minor": "", + "user": "Richhoncho", + "userid": 1376828, + "timestamp": "2014-05-16T17:33:59Z", + "sha1": "1b13238e444150f4df9b6e00d3e4b9d4692bc43a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "+[[Category:2002 songs]]; +[[Category:Universal Music Group singles]] using [[WP:HC|HotCat]]", + "*": "{{Infobox single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from Vanessa Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 657207513, + "parentid": 608858748, + "user": "BenGriswald", + "userid": 20826925, + "timestamp": "2015-04-19T17:13:47Z", + "sha1": "8bc33083efc4a5380654468f9dbb4f06ce078ccd", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{Infobox single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"Turn to Me\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from [[Vanessa Amorosi]]'s second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 760106566, + "parentid": 657207513, + "user": "Tobyjamesaus", + "userid": 19954945, + "timestamp": "2017-01-15T00:34:39Z", + "sha1": "6f24b9edc36794ea1aaa04ffe17a66c224518d6a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{Infobox single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"[[Turn to Me (song)|Turn to Me]]\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from [[Vanessa Amorosi]]'s second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| writing_credits = yes\n| lyrics_credits = \n| music_credits = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 840920555, + "parentid": 760106566, + "minor": "", + "user": "DeprecatedFixerBot", + "userid": 33330201, + "timestamp": "2018-05-12T23:31:22Z", + "sha1": "730d25bda4c577dfcd57d61975c66bffbe09609c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Removed deprecated parameter(s) from [[Template:Track listing]] using[[User:DeprecatedFixerBot| DeprecatedFixerBot]]. Mistake? [[User talk:TheSandDoctor|msg TSD!]] (please mention that this is task #1!)", + "*": "{{Infobox single \n| Name = One Thing Leads 2 Another\n| Cover = Otlta.jpg\n| Artist = [[Vanessa Amorosi]]\n| Album = [[Change (Vanessa Amorosi album)|Change]]\n| Released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| Format = [[CD single|CD]]\n| Recorded = 2002\n| Genre = [[Pop music|Pop]]\n| Length = 3:18\n| Label = [[Universal Music|Universal]]\n| Writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| Producer = Axel Breitung\n| Last single = \"[[Turn to Me (song)|Turn to Me]]\"
(2001)\n| This single = \"'''One Thing Leads 2 Another'''\"
(2002)\n| Next single = \"[[Spin (Everybody's Doin' It)]]\"
(2002)\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from [[Vanessa Amorosi]]'s second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 873394388, + "parentid": 840920555, + "user": "Zackmann08", + "userid": 15881234, + "timestamp": "2018-12-12T22:35:44Z", + "sha1": "332116cc1da3482bb4ba3ac1c021ac6338130ac9", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "fixing deprecated params", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| format = [[CD single|CD]]\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is the first CD single released from [[Vanessa Amorosi]]'s second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. The single was released on 14 October 2002 and debuted at #67 on the [[Media Control Charts|German Singles Chart]]. It remains for four weeks in the top 100.[http://www.musicline.de/de/chartverfolgung_summary/title/AMOROSI%2CVANESSA/ONE+THING+LEADS+2+ANOTHER/single Musicline.de - Chartverfolgung - AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER]\n\nAmorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]] in November 2002. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Track listing ==\n;CD single (Cat.No. 019 469-2)\n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Charts ==\n{| class=\"wikitable sortable\"\n!Chart (2002)\n!Peak
position\n|-\n|[[Media Control Charts|German Singles Chart]]\n|align=\"center\"|67\n|-\n|[[Swiss Music Charts|Swiss Singles Chart]][http://hitparade.ch/showitem.asp?interpret=Vanessa+Amorosi&titel=One+Thing+Leads+2+Another&cat=s Hitparade.ch: VANESSA AMOROSI - ONE THING LEADS 2 ANOTHER (SONG)]\n|align=\"center\"|62\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n== References ==\n{{Reflist}}\n\n== Sources ==\n* [http://www.discogs.com/Vanessa-Amorosi-One-Thing-Leads-2-Another/release/980631 Discogs: One Thing Leads 2 Another (CD, Maxi)]\n* [http://www.handinhandforchildren.de/pics/downloads/Charity%202002%20Tagespr.pdf Hand in Hand for Children - Charity 2002]\n* [http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=6VogSB60deSIEUbQEQ3dhzwEuyFYZz&cmd=concerts&action=pictures&ID=3173&naviID=894 Charity 2002 - Live dabei!]\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 925279062, + "parentid": 873394388, + "user": "Tobyjamesaus", + "userid": 19954945, + "timestamp": "2019-11-09T01:09:33Z", + "sha1": "bdec708eec0ed685452c704b1c1b0cd9cf038391", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "added charts table", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| format = [[CD single|CD]]\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. \n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 925331644, + "parentid": 925279062, + "minor": "", + "user": "Arjayay", + "userid": 5718152, + "timestamp": "2019-11-09T11:50:24Z", + "sha1": "8b8c8dc11cbca67079fa86891d0500c56bb3bf45", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Duplicate word removed", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| format = [[CD single|CD]]\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. \n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 943098683, + "parentid": 925331644, + "minor": "", + "user": "Hoof Hearted", + "userid": 684386, + "timestamp": "2020-02-28T20:38:05Z", + "sha1": "c20c05e422618b3dbb28a6ae914cc9eb24c46162", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Charts */ converted German chart identifier from \"Germany\" (obsolete) to \"Germany2\", added songid, see [[Template:Single chart]]", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| format = [[CD single|CD]]\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. \n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany2|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 952944729, + "parentid": 943098683, + "user": "InternetArchiveBot", + "userid": 27015025, + "timestamp": "2020-04-24T22:04:47Z", + "sha1": "3e02e690d3b41554d7ef40df876ca49642dd9f72", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Rescuing 0 sources and tagging 1 as dead.) #IABot (v2.0", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| format = [[CD single|CD]]\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. \n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany2|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 997158387, + "parentid": 952944729, + "minor": "", + "user": "PrimeBOT", + "userid": 29463730, + "timestamp": "2020-12-30T07:09:25Z", + "sha1": "9f23385221df54f4cc87c09db8ca32d17b2d423b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* top */[[User:PrimeBOT/30|Task 30]]: removal of \"format\" parameter from [[Template:infobox song]] following deprecation (+infobox genfixes)", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. \n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany2|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 1001236414, + "parentid": 997158387, + "minor": "", + "user": "Muhbot", + "userid": 35863023, + "timestamp": "2021-01-18T20:48:45Z", + "sha1": "65136a4c1eae7228e6fe8e92f9c972428b934af9", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Charts */[[Wikipedia:Bots/Requests for approval/Muhbot|Bot]] replacing parameter Germany2 with Germany", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''. \n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 1003319293, + "parentid": 1001236414, + "minor": "", + "user": "Tom.Reding", + "userid": 9784415, + "timestamp": "2021-01-28T12:24:46Z", + "sha1": "0728aa0203f8d7f79742d222189f0b9d907f9a09", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "+{{[[Template:Authority control|Authority control]]}} ([[d:Q7093280|1 ID]] from [[Wikidata]]), [[WP:GenFixes]] on", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''.\n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n{{Authority control}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 1033814697, + "parentid": 1003319293, + "user": "170.79.32.24", + "anon": "", + "userid": 0, + "timestamp": "2021-07-16T01:06:04Z", + "sha1": "d5b3b3bfc255cdec5251a2d26dd186f88bc2bbc7", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = {{hlist|Urban Music|[[Universal Music|Universal]]}}\n| writer = {{hlist|Vanessa Amorosi|[[Mark Holden]]|Axel Breitung}}\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''.\n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n{{Authority control}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 1033823901, + "parentid": 1033814697, + "user": "Binksternet", + "userid": 4967956, + "timestamp": "2021-07-16T02:31:16Z", + "sha1": "0728aa0203f8d7f79742d222189f0b9d907f9a09", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Reverted 1 edit by [[Special:Contributions/170.79.32.24|170.79.32.24]] ([[User talk:170.79.32.24|talk]]): Rv per [[WP:STYLEVAR]]", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''.\n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{tracklist\n| collapsed = no\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{singlechart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{singlechart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n{{Authority control}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 1153115618, + "parentid": 1033823901, + "minor": "", + "user": "KiranBOT", + "userid": 32983869, + "timestamp": "2023-05-04T08:50:18Z", + "sha1": "4ef43cd0fd64bb75b69f5c6ecbe2e0adf2e802ee", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "removed deprecated 'collapsed' parameter from track listing template, clean-up ([[Wikipedia:Bots/Requests for approval/KiranBOT 6|BRFA]])", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: AMOROSI,VANESSA - ONE THING LEADS 2 ANOTHER] (Germany)\n| recorded = 2002\n| studio =\n| venue =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label = Urban Music / [[Universal Music|Universal]]\n| writer = Vanessa Amorosi, [[Mark Holden]], Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released in October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''.\n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n;CD single \n{{track listing\n| headline = \n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{single chart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{single chart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|-\n|}\n\n==Cover versions==\n* [[Paulini Curuenavuli]] cover of Amorosi's 'One Thing Leads To Another' is featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song being written by [[Mark Holden]], a judge on the show.\n\n==Release history==\n{|class=\"wikitable\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n{{Authority control}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 1283391933, + "parentid": 1153115618, + "user": "Skyversay", + "userid": 48898971, + "timestamp": "2025-04-01T06:28:05Z", + "sha1": "0e02df25262b666663d95aa66c58cd19fac46309", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Move prose to top. Formatting.", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}\n| recorded = 2002\n| studio =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label =\n* Urban Music\n* [[Universal Music|Universal]]\n| writer =\n* Vanessa Amorosi\n* [[Mark Holden]]\n* Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released on 14 October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''.[http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: Amorosi,Vanessa - One Thing Leads 2 Another]\n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n[[Paulini Curuenavuli]] covered \"One Thing Leads 2 Another\", which was featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song was written by [[Mark Holden]], who was a judge on the show.\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n{{track listing\n| headline = CD single\n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable sortable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{single chart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{single chart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|}\n\n==Release history==\n{|class=\"wikitable plainrowheaders\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n!scope=\"row\"|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n{{Authority control}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 1306520148, + "parentid": 1283391933, + "user": "GreenC bot", + "userid": 27823944, + "timestamp": "2025-08-18T05:16:00Z", + "sha1": "8067af728ca18e0e4a71a8a2957a5c107f9e4e21", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Rescued 1 archive link. [[User:GreenC/WaybackMedic_2.5|Wayback Medic 2.5]] per [[WP:URLREQ#musicline.de]]", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}\n| recorded = 2002\n| studio =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label =\n* Urban Music\n* [[Universal Music|Universal]]\n| writer =\n* Vanessa Amorosi\n* [[Mark Holden]]\n* Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released on 14 October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''.[https://web.archive.org/web/20120927204924/http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: Amorosi,Vanessa - One Thing Leads 2 Another]\n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n[[Paulini Curuenavuli]] covered \"One Thing Leads 2 Another\", which was featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song was written by [[Mark Holden]], who was a judge on the show.\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n{{track listing\n| headline = CD single\n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable sortable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{single chart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{single chart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|}\n\n==Release history==\n{|class=\"wikitable plainrowheaders\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n!scope=\"row\"|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n{{Authority control}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + }, + { + "revid": 1352027254, + "parentid": 1306520148, + "minor": "", + "user": "BD2412", + "userid": 196446, + "timestamp": "2026-05-01T15:54:02Z", + "sha1": "78476f204546ba8a44a8a08068471fcb093b736b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* top */ Clean up spacing around commas and other punctuation fixes, replaced: ,V → , V", + "*": "{{Infobox song\n| name = One Thing Leads 2 Another\n| cover = Otlta.jpg\n| alt =\n| type = single\n| artist = [[Vanessa Amorosi]]\n| album = [[Change (Vanessa Amorosi album)|Change]]\n| released = {{start date|2002|10|14|df=yes}}\n| recorded = 2002\n| studio =\n| genre = [[Pop music|Pop]]\n| length = 3:18\n| label =\n* Urban Music\n* [[Universal Music|Universal]]\n| writer =\n* Vanessa Amorosi\n* [[Mark Holden]]\n* Axel Breitung\n| producer = Axel Breitung\n| prev_title = [[Turn to Me (song)|Turn to Me]]\n| prev_year = 2001\n| next_title = [[Spin (Everybody's Doin' It)]]\n| next_year = 2002\n}}\n\n\"'''One Thing Leads 2 Another'''\" is a song by Australian recording artist [[Vanessa Amorosi]], released on 14 October 2002 as the lead single from Amorosi's second studio album ''[[Change (Vanessa Amorosi album)|Change]]''.[https://web.archive.org/web/20120927204924/http://www.musicline.de/de/product/44001946929///1053454 Musicline.de: Amorosi, Vanessa - One Thing Leads 2 Another]\n\nIn November 2002, Amorosi sang her song \"One Thing Leads 2 Another\" at a charity concert in [[Frankfurt am Main]]. Other celebrity participants were [[Sarah Connor (singer)|Sarah Connor]], [[Nena]], [[Oliver Petszokat|Oli P.]], [[Peter Maffay]], [[DJ Bobo]], Isabel, Katy Karrenbauer, [[Rosenstolz]], Ben, [[A Touch of Class (band)|ATC]], Pierre, [[B3 (boy band)|B3]], [[Band Ohne Namen]], [[Bell, Book & Candle (band)|Bell Book and Candle]], [[Laith Al-Deen]], Marlon, The Flames, She Loe, [[Rednex]], [[Lutricia McNeal]] and the [[Kelly Family]]. The \"Charity 2002\" yielded net proceeds of approximately 500.000,00 [[euro]] for children with cancer. All proceeds went to the \"Hand in Hand for Children\" association.[http://www.handinhandforchildren.de/charity/cls_elTorro.cfm?sessIdent=RcFTiHpXcT7iU9XXZrvhI8bBpjgdol&cmd=concerts&action=detail&ID=3173&naviID=894 Charity - Live dabei!]{{Dead link|date=April 2020 |bot=InternetArchiveBot |fix-attempted=yes }}\n\n[[Paulini Curuenavuli]] covered \"One Thing Leads 2 Another\", which was featured on the ''Australian Idol: The Final 12'' album, released in 2003.[http://www.cduniverse.com/search/xx/music/pid/6642291/a/Australian+Idol:+The+Final+12.htm cduniverse.com - Australian Idol: The Final 12 CD] The song was written by [[Mark Holden]], who was a judge on the show.\n\n== Music video ==\nThe video clip for \"One Thing Leads 2 Another\" was shot in September 2002 at the [[Tempodrom]] arena in [[Berlin]].\n\n== Track listing ==\n{{track listing\n| headline = CD single\n| total_length = \n| title1 = One Thing Leads 2 Another\n| note1 = radio edit\n| writer1 = Amorosi/Holden/Breitung\n| length1 = 3:18\n| title2 = Dream\n| note2 = \n| writer2 = Amorosi/Holden/[[Klarmann/Weber]]\n| length2 = 3:46\n| title3 = One Thing Leads 2 Another\n| note3 = pop version\n| writer3 = Amorosi/Holden/Breitung\n| length3 = 3:44\n| title4 = One Thing Leads 2 Another\n| note4 = instrumental version\n| writer4 = Amorosi/Holden/Breitung\n| length4 = 3:13\n}}\n\n== Charts ==\n{|class=\"wikitable sortable plainrowheaders\" style=\"text-align:center;\"\n|-\n! scope=\"col\"| Chart (2002)\n! scope=\"col\"| Peak
position\n|-\n!scope=\"row\"{{single chart|Germany|67|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|songid=5371|accessdate=28 February 2020|refname=\"GER Charts\"}}\n|-\n!scope=\"row\"{{single chart|Switzerland|62|artist=Vanessa Amorosi|song=One Thing Leads 2 Another|accessdate=8 November 2019|refname=\"SUI Charts\"}}\n|}\n\n==Release history==\n{|class=\"wikitable plainrowheaders\"\n! Region\n! Date\n! Label\n! Catalogue\n|-\n!scope=\"row\"|Europe\n|October 2002\n|Urban Music / Universal Music\n|019469-2\n|}\n\n== References ==\n{{Reflist}}\n\n{{Vanessa Amorosi}}\n{{Authority control}}\n\n[[Category:2002 singles]]\n[[Category:Vanessa Amorosi songs]]\n[[Category:Songs written by Mark Holden]]\n[[Category:Songs written by Axel Breitung]]\n[[Category:Songs written by Vanessa Amorosi]]\n[[Category:2002 songs]]\n[[Category:Universal Music Group singles]]" + } +] \ No newline at end of file diff --git a/tests/fixtures/splatoon_3_golden.json b/tests/fixtures/splatoon_3_golden.json index 29ef49d..6ac3e84 100644 --- a/tests/fixtures/splatoon_3_golden.json +++ b/tests/fixtures/splatoon_3_golden.json @@ -1952,12 +1952,10 @@ "token_id": 161, "o_rev_id": 1007397695, "in": [ - 1047373884, - 1202097960 + 1047373884 ], "out": [ - 1007548089, - 1202071552 + 1007548089 ] }, { @@ -4895,7 +4893,8 @@ 1047373884 ], "out": [ - 1007548089 + 1007548089, + 1168453704 ] }, { @@ -4937,12 +4936,10 @@ "token_id": 419, "o_rev_id": 1007398258, "in": [ - 1047373884, - 1202097960 + 1047373884 ], "out": [ - 1007548089, - 1202071552 + 1007548089 ] }, { @@ -4998,12 +4995,10 @@ "token_id": 424, "o_rev_id": 1007398258, "in": [ - 1047373884, - 1202097960 + 1047373884 ], "out": [ - 1007548089, - 1202071552 + 1007548089 ] }, { @@ -5251,12 +5246,10 @@ "token_id": 446, "o_rev_id": 1007398465, "in": [ - 1047373884, - 1202097960 + 1047373884 ], "out": [ - 1007548089, - 1202071552 + 1007548089 ] }, { @@ -5344,10 +5337,12 @@ "token_id": 454, "o_rev_id": 1007398465, "in": [ - 1047373884 + 1047373884, + 1202097960 ], "out": [ - 1007548089 + 1007548089, + 1202071552 ] }, { @@ -5433,12 +5428,10 @@ "token_id": 462, "o_rev_id": 1007398465, "in": [ - 1047373884, - 1202097960 + 1047373884 ], "out": [ - 1007548089, - 1202071552 + 1007548089 ] }, { @@ -6210,10 +6203,12 @@ "token_id": 532, "o_rev_id": 1007398465, "in": [ - 1047373884 + 1047373884, + 1202097960 ], "out": [ - 1007548089 + 1007548089, + 1202071552 ] }, { @@ -6256,10 +6251,12 @@ "token_id": 536, "o_rev_id": 1007398465, "in": [ - 1047373884 + 1047373884, + 1202097960 ], "out": [ - 1007548089 + 1007548089, + 1202071552 ] }, { @@ -6278,10 +6275,12 @@ "token_id": 538, "o_rev_id": 1007398465, "in": [ - 1047373884 + 1047373884, + 1202097960 ], "out": [ - 1007548089 + 1007548089, + 1202071552 ] }, { @@ -6301,10 +6300,12 @@ "token_id": 540, "o_rev_id": 1007398465, "in": [ - 1047373884 + 1047373884, + 1202097960 ], "out": [ - 1007548089 + 1007548089, + 1202071552 ] }, { @@ -9204,14 +9205,12 @@ 1047373884, 1051229139, 1091333017, - 1202097960, 1216768014 ], "out": [ 1007548089, 1051228802, 1091332982, - 1202071552, 1216767975 ] }, @@ -9221,13 +9220,11 @@ "o_rev_id": 1007443627, "in": [ 1047373884, - 1091333017, - 1202097960 + 1091333017 ], "out": [ 1007548089, - 1091332982, - 1202071552 + 1091332982 ] }, { @@ -9430,11 +9427,13 @@ "o_rev_id": 1007443627, "in": [ 1047373884, - 1070350864 + 1070350864, + 1202097960 ], "out": [ 1007548089, - 1070349801 + 1070349801, + 1202071552 ] }, { @@ -28978,12 +28977,10 @@ "token_id": 2766, "o_rev_id": 1047408618, "in": [ - 1117591128, - 1202097960 + 1117591128 ], "out": [ - 1117588531, - 1202071552 + 1117588531 ] }, { @@ -29722,7 +29719,8 @@ 1117591128 ], "out": [ - 1117588531 + 1117588531, + 1168453704 ] }, { @@ -29730,10 +29728,12 @@ "token_id": 2834, "o_rev_id": 1047408618, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ - 1117588531 + 1117588531, + 1202071552 ] }, { @@ -29878,10 +29878,12 @@ "token_id": 2847, "o_rev_id": 1047408618, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ - 1117588531 + 1117588531, + 1202071552 ] }, { @@ -29900,10 +29902,12 @@ "token_id": 2849, "o_rev_id": 1047408618, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ - 1117588531 + 1117588531, + 1202071552 ] }, { @@ -31565,12 +31569,10 @@ "token_id": 3016, "o_rev_id": 1047437281, "in": [ - 1117591128, - 1202097960 + 1117591128 ], "out": [ - 1117588531, - 1202071552 + 1117588531 ] }, { @@ -31612,12 +31614,10 @@ "token_id": 3020, "o_rev_id": 1047437281, "in": [ - 1117591128, - 1202097960 + 1117591128 ], "out": [ - 1117588531, - 1202071552 + 1117588531 ] }, { @@ -37088,10 +37088,12 @@ "token_id": 3537, "o_rev_id": 1049272824, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ - 1117588531 + 1117588531, + 1202071552 ] }, { @@ -37126,8 +37128,7 @@ 1117591128 ], "out": [ - 1117588531, - 1168453704 + 1117588531 ] }, { @@ -38621,8 +38622,12 @@ "str": "title", "token_id": 3708, "o_rev_id": 1055587721, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", @@ -38653,15 +38658,23 @@ "str": "splatoon", "token_id": 3712, "o_rev_id": 1055587721, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "3", "token_id": 3713, "o_rev_id": 1055587721, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": ",", @@ -38780,8 +38793,12 @@ "str": "work", "token_id": 3729, "o_rev_id": 1055587721, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", @@ -38863,12 +38880,8 @@ "str": "|", "token_id": 3740, "o_rev_id": 1055587721, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "access", @@ -38882,9 +38895,7 @@ "token_id": 3742, "o_rev_id": 1055587721, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "date", @@ -38901,12 +38912,8 @@ "str": "=", "token_id": 3744, "o_rev_id": 1055587721, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "february", @@ -40498,7 +40505,7 @@ "o_rev_id": 1070908740, "in": [], "out": [ - 1084088387 + 1084090859 ] }, { @@ -40946,11 +40953,9 @@ "str": "-", "token_id": 3974, "o_rev_id": 1070908740, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552 + 1168453704 ] }, { @@ -41643,8 +41648,11 @@ "str": "\"", "token_id": 4050, "o_rev_id": 1070909835, - "in": [], + "in": [ + 1084090859 + ], "out": [ + 1084088387, 1131746260 ] }, @@ -41652,8 +41660,12 @@ "str": ".", "token_id": 4051, "o_rev_id": 1070909835, - "in": [], - "out": [] + "in": [ + 1084090859 + ], + "out": [ + 1084088387 + ] }, { "str": "<", @@ -41881,12 +41893,8 @@ "str": "co", "token_id": 4076, "o_rev_id": 1070910454, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "-", @@ -42349,12 +42357,8 @@ "str": "2022", "token_id": 4138, "o_rev_id": 1070910454, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "09", @@ -42401,12 +42405,8 @@ "str": "run", "token_id": 4144, "o_rev_id": 1070914961, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "”", @@ -42457,23 +42457,15 @@ "str": "a", "token_id": 4150, "o_rev_id": 1070973864, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "trailer", "token_id": 4151, "o_rev_id": 1070973864, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "for", @@ -42488,12 +42480,10 @@ "o_rev_id": 1070973864, "in": [ 1075955970, - 1202097960, 1216768014 ], "out": [ 1075955925, - 1202071552, 1216767975 ] }, @@ -42501,12 +42491,8 @@ "str": "3", "token_id": 4154, "o_rev_id": 1070973864, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "'", @@ -46298,12 +46284,11 @@ "token_id": 4542, "o_rev_id": 1074183719, "in": [ - 1117591128, - 1178773007 + 1117591128 ], "out": [ 1117588531, - 1178772974 + 1168453704 ] }, { @@ -47769,10 +47754,12 @@ "token_id": 4677, "o_rev_id": 1074183719, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ - 1117588531 + 1117588531, + 1202071552 ] }, { @@ -48857,13 +48844,6 @@ "str": "2021", "token_id": 4804, "o_rev_id": 1074183719, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 4805, - "o_rev_id": 1074183719, "in": [ 1202097960 ], @@ -48871,6 +48851,13 @@ 1202071552 ] }, + { + "str": "|", + "token_id": 4805, + "o_rev_id": 1074183719, + "in": [], + "out": [] + }, { "str": "archive", "token_id": 4806, @@ -48889,13 +48876,6 @@ "str": "url", "token_id": 4808, "o_rev_id": 1074183719, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 4809, - "o_rev_id": 1074183719, "in": [ 1202097960 ], @@ -48903,6 +48883,13 @@ 1202071552 ] }, + { + "str": "=", + "token_id": 4809, + "o_rev_id": 1074183719, + "in": [], + "out": [] + }, { "str": "https", "token_id": 4810, @@ -49349,9 +49336,7 @@ "token_id": 4873, "o_rev_id": 1074183719, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "url", @@ -52786,57 +52771,66 @@ ] }, { - "str": "<", + "str": ".", "token_id": 5228, + "o_rev_id": 1084088387, + "in": [], + "out": [ + 1084090859 + ] + }, + { + "str": "<", + "token_id": 5229, "o_rev_id": 1084090859, "in": [], "out": [] }, { "str": "ref", - "token_id": 5229, + "token_id": 5230, "o_rev_id": 1084090859, "in": [], "out": [] }, { "str": ">", - "token_id": 5230, + "token_id": 5231, "o_rev_id": 1084090859, "in": [], "out": [] }, { "str": "[[", - "token_id": 5231, + "token_id": 5232, "o_rev_id": 1084102612, "in": [], "out": [] }, { "str": "]]", - "token_id": 5232, + "token_id": 5233, "o_rev_id": 1084102612, "in": [], "out": [] }, { "str": "game", - "token_id": 5233, + "token_id": 5234, "o_rev_id": 1084102612, "in": [], "out": [] }, { "str": "mode", - "token_id": 5234, + "token_id": 5235, "o_rev_id": 1084102612, "in": [], "out": [] }, { "str": "september", - "token_id": 5235, + "token_id": 5236, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52845,7 +52839,7 @@ }, { "str": ",", - "token_id": 5236, + "token_id": 5237, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52854,7 +52848,7 @@ }, { "str": "the", - "token_id": 5237, + "token_id": 5238, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52863,7 +52857,7 @@ }, { "str": "release", - "token_id": 5238, + "token_id": 5239, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52872,7 +52866,7 @@ }, { "str": "date", - "token_id": 5239, + "token_id": 5240, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52881,7 +52875,7 @@ }, { "str": "was", - "token_id": 5240, + "token_id": 5241, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52890,7 +52884,7 @@ }, { "str": "annouced", - "token_id": 5241, + "token_id": 5242, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52899,7 +52893,7 @@ }, { "str": "on", - "token_id": 5242, + "token_id": 5243, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52908,7 +52902,7 @@ }, { "str": "april", - "token_id": 5243, + "token_id": 5244, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52917,7 +52911,7 @@ }, { "str": "22", - "token_id": 5244, + "token_id": 5245, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52926,7 +52920,7 @@ }, { "str": ",", - "token_id": 5245, + "token_id": 5246, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52935,7 +52929,7 @@ }, { "str": "2022", - "token_id": 5246, + "token_id": 5247, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52944,7 +52938,7 @@ }, { "str": ".", - "token_id": 5247, + "token_id": 5248, "o_rev_id": 1084106433, "in": [], "out": [ @@ -52953,7 +52947,7 @@ }, { "str": "pjcqjwk", - "token_id": 5248, + "token_id": 5249, "o_rev_id": 1084130061, "in": [ 1088535391 @@ -52965,35 +52959,35 @@ }, { "str": "'", - "token_id": 5249, + "token_id": 5250, "o_rev_id": 1084232739, "in": [], "out": [] }, { "str": "'", - "token_id": 5250, + "token_id": 5251, "o_rev_id": 1084232739, "in": [], "out": [] }, { "str": "'", - "token_id": 5251, + "token_id": 5252, "o_rev_id": 1084232739, "in": [], "out": [] }, { "str": "'", - "token_id": 5252, + "token_id": 5253, "o_rev_id": 1084232739, "in": [], "out": [] }, { "str": "physical", - "token_id": 5253, + "token_id": 5254, "o_rev_id": 1084266928, "in": [], "out": [ @@ -53002,7 +52996,7 @@ }, { "str": "cover", - "token_id": 5254, + "token_id": 5255, "o_rev_id": 1084266928, "in": [], "out": [ @@ -53011,7 +53005,7 @@ }, { "str": "art", - "token_id": 5255, + "token_id": 5256, "o_rev_id": 1084266928, "in": [], "out": [ @@ -53020,7 +53014,7 @@ }, { "str": "for", - "token_id": 5256, + "token_id": 5257, "o_rev_id": 1084266928, "in": [], "out": [ @@ -53029,7 +53023,7 @@ }, { "str": "provided", - "token_id": 5257, + "token_id": 5258, "o_rev_id": 1085278165, "in": [], "out": [ @@ -53038,7 +53032,7 @@ }, { "str": "providing", - "token_id": 5258, + "token_id": 5259, "o_rev_id": 1085279678, "in": [], "out": [ @@ -53047,7 +53041,7 @@ }, { "str": "all", - "token_id": 5259, + "token_id": 5260, "o_rev_id": 1085822237, "in": [ 1131736068, @@ -53060,7 +53054,7 @@ }, { "str": "basic", - "token_id": 5260, + "token_id": 5261, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53072,7 +53066,7 @@ }, { "str": "weapons", - "token_id": 5261, + "token_id": 5262, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53084,7 +53078,7 @@ }, { "str": "from", - "token_id": 5262, + "token_id": 5263, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53095,7 +53089,7 @@ }, { "str": "the", - "token_id": 5263, + "token_id": 5264, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53107,7 +53101,7 @@ }, { "str": "prior", - "token_id": 5264, + "token_id": 5265, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53119,7 +53113,7 @@ }, { "str": "splatoon", - "token_id": 5265, + "token_id": 5266, "o_rev_id": 1085822237, "in": [ 1178773007, @@ -53132,7 +53126,7 @@ }, { "str": "games", - "token_id": 5266, + "token_id": 5267, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53144,7 +53138,7 @@ }, { "str": "have", - "token_id": 5267, + "token_id": 5268, "o_rev_id": 1085822237, "in": [], "out": [ @@ -53153,7 +53147,7 @@ }, { "str": "been", - "token_id": 5268, + "token_id": 5269, "o_rev_id": 1085822237, "in": [], "out": [ @@ -53162,7 +53156,7 @@ }, { "str": "confirmed", - "token_id": 5269, + "token_id": 5270, "o_rev_id": 1085822237, "in": [], "out": [ @@ -53171,7 +53165,7 @@ }, { "str": "to", - "token_id": 5270, + "token_id": 5271, "o_rev_id": 1085822237, "in": [], "out": [ @@ -53180,7 +53174,7 @@ }, { "str": "return", - "token_id": 5271, + "token_id": 5272, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53192,7 +53186,7 @@ }, { "str": "in", - "token_id": 5272, + "token_id": 5273, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53203,7 +53197,7 @@ }, { "str": "splatoon", - "token_id": 5273, + "token_id": 5274, "o_rev_id": 1085822237, "in": [ 1178773007, @@ -53216,7 +53210,7 @@ }, { "str": "3", - "token_id": 5274, + "token_id": 5275, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53227,7 +53221,7 @@ }, { "str": ".", - "token_id": 5275, + "token_id": 5276, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53239,7 +53233,7 @@ }, { "str": "<", - "token_id": 5276, + "token_id": 5277, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53250,7 +53244,7 @@ }, { "str": "ref", - "token_id": 5277, + "token_id": 5278, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53261,7 +53255,7 @@ }, { "str": ">", - "token_id": 5278, + "token_id": 5279, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53272,7 +53266,7 @@ }, { "str": "https", - "token_id": 5279, + "token_id": 5280, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53283,7 +53277,7 @@ }, { "str": ":", - "token_id": 5280, + "token_id": 5281, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53294,7 +53288,7 @@ }, { "str": "/", - "token_id": 5281, + "token_id": 5282, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53305,7 +53299,7 @@ }, { "str": "/", - "token_id": 5282, + "token_id": 5283, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53316,7 +53310,7 @@ }, { "str": "www", - "token_id": 5283, + "token_id": 5284, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53327,7 +53321,7 @@ }, { "str": ".", - "token_id": 5284, + "token_id": 5285, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53338,7 +53332,7 @@ }, { "str": "nintendolife", - "token_id": 5285, + "token_id": 5286, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53349,7 +53343,7 @@ }, { "str": ".", - "token_id": 5286, + "token_id": 5287, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53360,7 +53354,7 @@ }, { "str": "com", - "token_id": 5287, + "token_id": 5288, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53371,7 +53365,7 @@ }, { "str": "/", - "token_id": 5288, + "token_id": 5289, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53382,7 +53376,7 @@ }, { "str": "news", - "token_id": 5289, + "token_id": 5290, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53393,7 +53387,7 @@ }, { "str": "/", - "token_id": 5290, + "token_id": 5291, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53404,7 +53398,7 @@ }, { "str": "2022", - "token_id": 5291, + "token_id": 5292, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53415,7 +53409,7 @@ }, { "str": "/", - "token_id": 5292, + "token_id": 5293, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53426,7 +53420,7 @@ }, { "str": "05", - "token_id": 5293, + "token_id": 5294, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53437,7 +53431,7 @@ }, { "str": "/", - "token_id": 5294, + "token_id": 5295, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53448,7 +53442,7 @@ }, { "str": "dont", - "token_id": 5295, + "token_id": 5296, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53459,7 +53453,7 @@ }, { "str": "-", - "token_id": 5296, + "token_id": 5297, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53470,7 +53464,7 @@ }, { "str": "worry", - "token_id": 5297, + "token_id": 5298, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53481,7 +53475,7 @@ }, { "str": "-", - "token_id": 5298, + "token_id": 5299, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53492,7 +53486,7 @@ }, { "str": "splatoon", - "token_id": 5299, + "token_id": 5300, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53503,7 +53497,7 @@ }, { "str": "-", - "token_id": 5300, + "token_id": 5301, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53514,7 +53508,7 @@ }, { "str": "3", - "token_id": 5301, + "token_id": 5302, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53525,7 +53519,7 @@ }, { "str": "-", - "token_id": 5302, + "token_id": 5303, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53536,7 +53530,7 @@ }, { "str": "will", - "token_id": 5303, + "token_id": 5304, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53547,7 +53541,7 @@ }, { "str": "-", - "token_id": 5304, + "token_id": 5305, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53558,7 +53552,7 @@ }, { "str": "have", - "token_id": 5305, + "token_id": 5306, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53569,7 +53563,7 @@ }, { "str": "-", - "token_id": 5306, + "token_id": 5307, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53580,7 +53574,7 @@ }, { "str": "all", - "token_id": 5307, + "token_id": 5308, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53591,7 +53585,7 @@ }, { "str": "-", - "token_id": 5308, + "token_id": 5309, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53602,7 +53596,7 @@ }, { "str": "basic", - "token_id": 5309, + "token_id": 5310, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53613,7 +53607,7 @@ }, { "str": "-", - "token_id": 5310, + "token_id": 5311, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53624,7 +53618,7 @@ }, { "str": "weapons", - "token_id": 5311, + "token_id": 5312, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53635,7 +53629,7 @@ }, { "str": "-", - "token_id": 5312, + "token_id": 5313, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53646,7 +53640,7 @@ }, { "str": "from", - "token_id": 5313, + "token_id": 5314, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53657,7 +53651,7 @@ }, { "str": "-", - "token_id": 5314, + "token_id": 5315, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53668,7 +53662,7 @@ }, { "str": "the", - "token_id": 5315, + "token_id": 5316, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53679,7 +53673,7 @@ }, { "str": "-", - "token_id": 5316, + "token_id": 5317, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53690,7 +53684,7 @@ }, { "str": "previous", - "token_id": 5317, + "token_id": 5318, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53701,7 +53695,7 @@ }, { "str": "-", - "token_id": 5318, + "token_id": 5319, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53712,7 +53706,7 @@ }, { "str": "games", - "token_id": 5319, + "token_id": 5320, "o_rev_id": 1085822237, "in": [ 1178773007 @@ -53723,7 +53717,7 @@ }, { "str": "<", - "token_id": 5320, + "token_id": 5321, "o_rev_id": 1085822237, "in": [], "out": [ @@ -53732,7 +53726,7 @@ }, { "str": "/", - "token_id": 5321, + "token_id": 5322, "o_rev_id": 1085822237, "in": [ 1180622889 @@ -53743,7 +53737,7 @@ }, { "str": "ref", - "token_id": 5322, + "token_id": 5323, "o_rev_id": 1085822237, "in": [], "out": [ @@ -53752,7 +53746,7 @@ }, { "str": ">", - "token_id": 5323, + "token_id": 5324, "o_rev_id": 1085822237, "in": [], "out": [ @@ -53761,7 +53755,7 @@ }, { "str": "{{", - "token_id": 5324, + "token_id": 5325, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53772,7 +53766,7 @@ }, { "str": "cite", - "token_id": 5325, + "token_id": 5326, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53783,7 +53777,7 @@ }, { "str": "web", - "token_id": 5326, + "token_id": 5327, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53794,7 +53788,7 @@ }, { "str": "|", - "token_id": 5327, + "token_id": 5328, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53805,7 +53799,7 @@ }, { "str": "last", - "token_id": 5328, + "token_id": 5329, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53816,7 +53810,7 @@ }, { "str": "=", - "token_id": 5329, + "token_id": 5330, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53827,7 +53821,7 @@ }, { "str": "hagues", - "token_id": 5330, + "token_id": 5331, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53838,7 +53832,7 @@ }, { "str": "|", - "token_id": 5331, + "token_id": 5332, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53849,7 +53843,7 @@ }, { "str": "first", - "token_id": 5332, + "token_id": 5333, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53860,7 +53854,7 @@ }, { "str": "=", - "token_id": 5333, + "token_id": 5334, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53871,7 +53865,7 @@ }, { "str": "alana", - "token_id": 5334, + "token_id": 5335, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53882,7 +53876,7 @@ }, { "str": "|", - "token_id": 5335, + "token_id": 5336, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53893,7 +53887,7 @@ }, { "str": "date", - "token_id": 5336, + "token_id": 5337, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53904,7 +53898,7 @@ }, { "str": "=", - "token_id": 5337, + "token_id": 5338, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53915,20 +53909,18 @@ }, { "str": "2022", - "token_id": 5338, + "token_id": 5339, "o_rev_id": 1085824246, "in": [ - 1178773007, - 1202097960 + 1178773007 ], "out": [ - 1178772974, - 1202071552 + 1178772974 ] }, { "str": "-", - "token_id": 5339, + "token_id": 5340, "o_rev_id": 1085824246, "in": [], "out": [ @@ -53937,7 +53929,7 @@ }, { "str": "05", - "token_id": 5340, + "token_id": 5341, "o_rev_id": 1085824246, "in": [], "out": [ @@ -53946,16 +53938,20 @@ }, { "str": "-", - "token_id": 5341, + "token_id": 5342, "o_rev_id": 1085824246, - "in": [], + "in": [ + 1178773007, + 1202097960 + ], "out": [ - 1168453704 + 1178772974, + 1202071552 ] }, { "str": "02", - "token_id": 5342, + "token_id": 5343, "o_rev_id": 1085824246, "in": [], "out": [ @@ -53964,7 +53960,7 @@ }, { "str": "|", - "token_id": 5343, + "token_id": 5344, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53975,7 +53971,7 @@ }, { "str": "title", - "token_id": 5344, + "token_id": 5345, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53986,7 +53982,7 @@ }, { "str": "=", - "token_id": 5345, + "token_id": 5346, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -53997,7 +53993,7 @@ }, { "str": "don", - "token_id": 5346, + "token_id": 5347, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54008,7 +54004,7 @@ }, { "str": "'", - "token_id": 5347, + "token_id": 5348, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54019,7 +54015,7 @@ }, { "str": "t", - "token_id": 5348, + "token_id": 5349, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54030,7 +54026,7 @@ }, { "str": "worry", - "token_id": 5349, + "token_id": 5350, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54041,7 +54037,7 @@ }, { "str": ",", - "token_id": 5350, + "token_id": 5351, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54052,7 +54048,7 @@ }, { "str": "splatoon", - "token_id": 5351, + "token_id": 5352, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54063,7 +54059,7 @@ }, { "str": "3", - "token_id": 5352, + "token_id": 5353, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54074,7 +54070,7 @@ }, { "str": "will", - "token_id": 5353, + "token_id": 5354, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54085,7 +54081,7 @@ }, { "str": "have", - "token_id": 5354, + "token_id": 5355, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54096,7 +54092,7 @@ }, { "str": "all", - "token_id": 5355, + "token_id": 5356, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54107,7 +54103,7 @@ }, { "str": "\"", - "token_id": 5356, + "token_id": 5357, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54118,7 +54114,7 @@ }, { "str": "basic", - "token_id": 5357, + "token_id": 5358, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54129,7 +54125,7 @@ }, { "str": "weapons", - "token_id": 5358, + "token_id": 5359, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54140,7 +54136,7 @@ }, { "str": "\"", - "token_id": 5359, + "token_id": 5360, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54151,7 +54147,7 @@ }, { "str": "from", - "token_id": 5360, + "token_id": 5361, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54162,7 +54158,7 @@ }, { "str": "the", - "token_id": 5361, + "token_id": 5362, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54173,7 +54169,7 @@ }, { "str": "previous", - "token_id": 5362, + "token_id": 5363, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54184,7 +54180,7 @@ }, { "str": "games", - "token_id": 5363, + "token_id": 5364, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54195,7 +54191,7 @@ }, { "str": "|", - "token_id": 5364, + "token_id": 5365, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54206,7 +54202,7 @@ }, { "str": "url", - "token_id": 5365, + "token_id": 5366, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54217,7 +54213,7 @@ }, { "str": "=", - "token_id": 5366, + "token_id": 5367, "o_rev_id": 1085824246, "in": [ 1178773007 @@ -54228,56 +54224,56 @@ }, { "str": "|", - "token_id": 5367, + "token_id": 5368, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "access", - "token_id": 5368, + "token_id": 5369, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "-", - "token_id": 5369, + "token_id": 5370, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "date", - "token_id": 5370, + "token_id": 5371, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "=", - "token_id": 5371, + "token_id": 5372, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "2022", - "token_id": 5372, + "token_id": 5373, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "-", - "token_id": 5373, + "token_id": 5374, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "05", - "token_id": 5374, + "token_id": 5375, "o_rev_id": 1085824246, "in": [], "out": [ @@ -54286,14 +54282,14 @@ }, { "str": "-", - "token_id": 5375, + "token_id": 5376, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "02", - "token_id": 5376, + "token_id": 5377, "o_rev_id": 1085824246, "in": [], "out": [ @@ -54302,28 +54298,28 @@ }, { "str": "|", - "token_id": 5377, + "token_id": 5378, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "website", - "token_id": 5378, + "token_id": 5379, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "=", - "token_id": 5379, + "token_id": 5380, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 5380, + "token_id": 5381, "o_rev_id": 1085824246, "in": [ 1180622889 @@ -54334,7 +54330,7 @@ }, { "str": "life", - "token_id": 5381, + "token_id": 5382, "o_rev_id": 1085824246, "in": [ 1180622889 @@ -54345,49 +54341,49 @@ }, { "str": "|", - "token_id": 5382, + "token_id": 5383, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "language", - "token_id": 5383, + "token_id": 5384, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "=", - "token_id": 5384, + "token_id": 5385, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "en", - "token_id": 5385, + "token_id": 5386, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "-", - "token_id": 5386, + "token_id": 5387, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "gb", - "token_id": 5387, + "token_id": 5388, "o_rev_id": 1085824246, "in": [], "out": [] }, { "str": "}}", - "token_id": 5388, + "token_id": 5389, "o_rev_id": 1085824246, "in": [], "out": [ @@ -54396,42 +54392,42 @@ }, { "str": "{{", - "token_id": 5389, + "token_id": 5390, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "nihongo", - "token_id": 5390, + "token_id": 5391, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "foot", - "token_id": 5391, + "token_id": 5392, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "|", - "token_id": 5392, + "token_id": 5393, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "|", - "token_id": 5393, + "token_id": 5394, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "}}", - "token_id": 5394, + "token_id": 5395, "o_rev_id": 1087098535, "in": [], "out": [ @@ -54440,7 +54436,7 @@ }, { "str": "|", - "token_id": 5395, + "token_id": 5396, "o_rev_id": 1087098535, "in": [], "out": [ @@ -54449,21 +54445,21 @@ }, { "str": "supuratūn", - "token_id": 5396, + "token_id": 5397, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "surī", - "token_id": 5397, + "token_id": 5398, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "|", - "token_id": 5398, + "token_id": 5399, "o_rev_id": 1087098535, "in": [], "out": [ @@ -54472,14 +54468,14 @@ }, { "str": "lead", - "token_id": 5399, + "token_id": 5400, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "=", - "token_id": 5400, + "token_id": 5401, "o_rev_id": 1087098535, "in": [], "out": [ @@ -54488,14 +54484,14 @@ }, { "str": "yes", - "token_id": 5401, + "token_id": 5402, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "|", - "token_id": 5402, + "token_id": 5403, "o_rev_id": 1087098535, "in": [], "out": [ @@ -54504,14 +54500,14 @@ }, { "str": "group", - "token_id": 5403, + "token_id": 5404, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "=", - "token_id": 5404, + "token_id": 5405, "o_rev_id": 1087098535, "in": [], "out": [ @@ -54520,28 +54516,28 @@ }, { "str": "lower", - "token_id": 5405, + "token_id": 5406, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "-", - "token_id": 5406, + "token_id": 5407, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "alpha", - "token_id": 5407, + "token_id": 5408, "o_rev_id": 1087098535, "in": [], "out": [] }, { "str": "}}", - "token_id": 5408, + "token_id": 5409, "o_rev_id": 1087098535, "in": [], "out": [ @@ -54550,49 +54546,49 @@ }, { "str": "|", - "token_id": 5409, + "token_id": 5410, "o_rev_id": 1087098561, "in": [], "out": [] }, { "str": "|", - "token_id": 5410, + "token_id": 5411, "o_rev_id": 1087098561, "in": [], "out": [] }, { "str": "=", - "token_id": 5411, + "token_id": 5412, "o_rev_id": 1087098561, "in": [], "out": [] }, { "str": "|", - "token_id": 5412, + "token_id": 5413, "o_rev_id": 1087098561, "in": [], "out": [] }, { "str": "=", - "token_id": 5413, + "token_id": 5414, "o_rev_id": 1087098561, "in": [], "out": [] }, { "str": "}}", - "token_id": 5414, + "token_id": 5415, "o_rev_id": 1087098561, "in": [], "out": [] }, { "str": "9th", - "token_id": 5415, + "token_id": 5416, "o_rev_id": 1087639156, "in": [], "out": [ @@ -54601,7 +54597,7 @@ }, { "str": "17th", - "token_id": 5416, + "token_id": 5417, "o_rev_id": 1087639493, "in": [], "out": [ @@ -54610,7 +54606,7 @@ }, { "str": "18th", - "token_id": 5417, + "token_id": 5418, "o_rev_id": 1087639493, "in": [], "out": [ @@ -54619,7 +54615,7 @@ }, { "str": "24th", - "token_id": 5418, + "token_id": 5419, "o_rev_id": 1087639493, "in": [], "out": [ @@ -54628,7 +54624,7 @@ }, { "str": "9th", - "token_id": 5419, + "token_id": 5420, "o_rev_id": 1087639493, "in": [], "out": [ @@ -54637,7 +54633,7 @@ }, { "str": "poopoo", - "token_id": 5420, + "token_id": 5421, "o_rev_id": 1091332982, "in": [], "out": [ @@ -54646,7 +54642,7 @@ }, { "str": "peepee", - "token_id": 5421, + "token_id": 5422, "o_rev_id": 1091332982, "in": [], "out": [ @@ -54655,7 +54651,7 @@ }, { "str": "\"", - "token_id": 5422, + "token_id": 5423, "o_rev_id": 1091332982, "in": [], "out": [ @@ -54664,74 +54660,70 @@ }, { "str": "|", - "token_id": 5423, + "token_id": 5424, "o_rev_id": 1091388337, "in": [], "out": [] }, { "str": "last", - "token_id": 5424, + "token_id": 5425, "o_rev_id": 1091388337, "in": [], "out": [] }, { "str": "=", - "token_id": 5425, + "token_id": 5426, "o_rev_id": 1091388337, "in": [], "out": [] }, { "str": "gerblick", - "token_id": 5426, + "token_id": 5427, "o_rev_id": 1091388337, "in": [], "out": [] }, { "str": "|", - "token_id": 5427, + "token_id": 5428, "o_rev_id": 1091388337, "in": [], "out": [] }, { "str": "first", - "token_id": 5428, + "token_id": 5429, "o_rev_id": 1091388337, "in": [], "out": [] }, { "str": "=", - "token_id": 5429, + "token_id": 5430, "o_rev_id": 1091388337, "in": [], "out": [] }, { "str": "in", - "token_id": 5430, + "token_id": 5431, "o_rev_id": 1097037299, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "july", - "token_id": 5431, + "token_id": 5432, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "2022", - "token_id": 5432, + "token_id": 5433, "o_rev_id": 1097037299, "in": [], "out": [ @@ -54740,112 +54732,112 @@ }, { "str": ",", - "token_id": 5433, + "token_id": 5434, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 5434, + "token_id": 5435, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "announced", - "token_id": 5435, + "token_id": 5436, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "a", - "token_id": 5436, + "token_id": 5437, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "special", - "token_id": 5437, + "token_id": 5438, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "edition", - "token_id": 5438, + "token_id": 5439, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 5439, + "token_id": 5440, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "switch", - "token_id": 5440, + "token_id": 5441, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "oled", - "token_id": 5441, + "token_id": 5442, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "model", - "token_id": 5442, + "token_id": 5443, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "themed", - "token_id": 5443, + "token_id": 5444, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "on", - "token_id": 5444, + "token_id": 5445, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "the", - "token_id": 5445, + "token_id": 5446, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "game", - "token_id": 5446, + "token_id": 5447, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": ",", - "token_id": 5447, + "token_id": 5448, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "which", - "token_id": 5448, + "token_id": 5449, "o_rev_id": 1097037299, "in": [], "out": [ @@ -54854,7 +54846,7 @@ }, { "str": "will", - "token_id": 5449, + "token_id": 5450, "o_rev_id": 1097037299, "in": [], "out": [ @@ -54863,14 +54855,14 @@ }, { "str": "release", - "token_id": 5450, + "token_id": 5451, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "on", - "token_id": 5451, + "token_id": 5452, "o_rev_id": 1097037299, "in": [], "out": [ @@ -54879,14 +54871,14 @@ }, { "str": "26", - "token_id": 5452, + "token_id": 5453, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "august", - "token_id": 5453, + "token_id": 5454, "o_rev_id": 1097037299, "in": [ 1202097960 @@ -54897,56 +54889,56 @@ }, { "str": "2022", - "token_id": 5454, + "token_id": 5455, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": ".", - "token_id": 5455, + "token_id": 5456, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "in", - "token_id": 5456, + "token_id": 5457, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "addition", - "token_id": 5457, + "token_id": 5458, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": ",", - "token_id": 5458, + "token_id": 5459, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "the", - "token_id": 5459, + "token_id": 5460, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "company", - "token_id": 5460, + "token_id": 5461, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "also", - "token_id": 5461, + "token_id": 5462, "o_rev_id": 1097037299, "in": [], "out": [ @@ -54955,35 +54947,35 @@ }, { "str": "announced", - "token_id": 5462, + "token_id": 5463, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "a", - "token_id": 5463, + "token_id": 5464, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "'", - "token_id": 5464, + "token_id": 5465, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "'", - "token_id": 5465, + "token_id": 5466, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 5466, + "token_id": 5467, "o_rev_id": 1097037299, "in": [ 1216768014 @@ -54994,126 +54986,126 @@ }, { "str": "3", - "token_id": 5467, + "token_id": 5468, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "'", - "token_id": 5468, + "token_id": 5469, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "'", - "token_id": 5469, + "token_id": 5470, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "-", - "token_id": 5470, + "token_id": 5471, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "themed", - "token_id": 5471, + "token_id": 5472, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "[[", - "token_id": 5472, + "token_id": 5473, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 5473, + "token_id": 5474, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "switch", - "token_id": 5474, + "token_id": 5475, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "pro", - "token_id": 5475, + "token_id": 5476, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "controller", - "token_id": 5476, + "token_id": 5477, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "|", - "token_id": 5477, + "token_id": 5478, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "pro", - "token_id": 5478, + "token_id": 5479, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "controller", - "token_id": 5479, + "token_id": 5480, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "]]", - "token_id": 5480, + "token_id": 5481, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "and", - "token_id": 5481, + "token_id": 5482, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "case", - "token_id": 5482, + "token_id": 5483, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": ",", - "token_id": 5483, + "token_id": 5484, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "both", - "token_id": 5484, + "token_id": 5485, "o_rev_id": 1097037299, "in": [], "out": [ @@ -55122,7 +55114,7 @@ }, { "str": "of", - "token_id": 5485, + "token_id": 5486, "o_rev_id": 1097037299, "in": [], "out": [ @@ -55131,14 +55123,14 @@ }, { "str": "which", - "token_id": 5486, + "token_id": 5487, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "will", - "token_id": 5487, + "token_id": 5488, "o_rev_id": 1097037299, "in": [], "out": [ @@ -55147,7 +55139,7 @@ }, { "str": "release", - "token_id": 5488, + "token_id": 5489, "o_rev_id": 1097037299, "in": [], "out": [ @@ -55156,35 +55148,35 @@ }, { "str": "alongside", - "token_id": 5489, + "token_id": 5490, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "the", - "token_id": 5490, + "token_id": 5491, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "game", - "token_id": 5491, + "token_id": 5492, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": ".", - "token_id": 5492, + "token_id": 5493, "o_rev_id": 1097037299, "in": [], "out": [] }, { "str": "now", - "token_id": 5493, + "token_id": 5494, "o_rev_id": 1097225492, "in": [], "out": [ @@ -55193,7 +55185,7 @@ }, { "str": "7", - "token_id": 5494, + "token_id": 5495, "o_rev_id": 1097225492, "in": [], "out": [ @@ -55202,7 +55194,7 @@ }, { "str": "october", - "token_id": 5495, + "token_id": 5496, "o_rev_id": 1097225492, "in": [], "out": [ @@ -55211,7 +55203,7 @@ }, { "str": "2", - "token_id": 5496, + "token_id": 5497, "o_rev_id": 1097225538, "in": [ 1097403533, @@ -55225,7 +55217,7 @@ }, { "str": "october", - "token_id": 5497, + "token_id": 5498, "o_rev_id": 1097225538, "in": [ 1097403533, @@ -55239,7 +55231,7 @@ }, { "str": "2", - "token_id": 5498, + "token_id": 5499, "o_rev_id": 1097225538, "in": [], "out": [ @@ -55248,7 +55240,7 @@ }, { "str": "9", - "token_id": 5499, + "token_id": 5500, "o_rev_id": 1097347432, "in": [], "out": [ @@ -55257,7 +55249,7 @@ }, { "str": "september", - "token_id": 5500, + "token_id": 5501, "o_rev_id": 1097347432, "in": [], "out": [ @@ -55266,7 +55258,7 @@ }, { "str": "new", - "token_id": 5501, + "token_id": 5502, "o_rev_id": 1097403533, "in": [ 1097405594 @@ -55278,7 +55270,7 @@ }, { "str": "date", - "token_id": 5502, + "token_id": 5503, "o_rev_id": 1097403533, "in": [ 1097405594 @@ -55290,7 +55282,7 @@ }, { "str": "which", - "token_id": 5503, + "token_id": 5504, "o_rev_id": 1097403533, "in": [ 1097405594 @@ -55302,7 +55294,7 @@ }, { "str": "is", - "token_id": 5504, + "token_id": 5505, "o_rev_id": 1097403533, "in": [ 1097405594 @@ -55314,7 +55306,7 @@ }, { "str": "2", - "token_id": 5505, + "token_id": 5506, "o_rev_id": 1097403533, "in": [ 1097405594 @@ -55326,7 +55318,7 @@ }, { "str": "october", - "token_id": 5506, + "token_id": 5507, "o_rev_id": 1097403533, "in": [ 1097405594 @@ -55338,7 +55330,7 @@ }, { "str": "was", - "token_id": 5507, + "token_id": 5508, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55350,7 +55342,7 @@ }, { "str": "supposed", - "token_id": 5508, + "token_id": 5509, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55362,7 +55354,7 @@ }, { "str": "to", - "token_id": 5509, + "token_id": 5510, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55374,7 +55366,7 @@ }, { "str": "be", - "token_id": 5510, + "token_id": 5511, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55386,7 +55378,7 @@ }, { "str": "released", - "token_id": 5511, + "token_id": 5512, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55398,7 +55390,7 @@ }, { "str": "on", - "token_id": 5512, + "token_id": 5513, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55410,7 +55402,7 @@ }, { "str": "9", - "token_id": 5513, + "token_id": 5514, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55422,7 +55414,7 @@ }, { "str": "september", - "token_id": 5514, + "token_id": 5515, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55434,7 +55426,7 @@ }, { "str": "2022", - "token_id": 5515, + "token_id": 5516, "o_rev_id": 1097403895, "in": [ 1097405594 @@ -55446,7 +55438,7 @@ }, { "str": "and", - "token_id": 5516, + "token_id": 5517, "o_rev_id": 1097403932, "in": [ 1097405594 @@ -55458,7 +55450,7 @@ }, { "str": "both", - "token_id": 5517, + "token_id": 5518, "o_rev_id": 1100104168, "in": [], "out": [ @@ -55467,7 +55459,7 @@ }, { "str": "<", - "token_id": 5518, + "token_id": 5519, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55476,7 +55468,7 @@ }, { "str": "ref", - "token_id": 5519, + "token_id": 5520, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55485,7 +55477,7 @@ }, { "str": ">", - "token_id": 5520, + "token_id": 5521, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55494,7 +55486,7 @@ }, { "str": "{{", - "token_id": 5521, + "token_id": 5522, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55503,7 +55495,7 @@ }, { "str": "cite", - "token_id": 5522, + "token_id": 5523, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55512,7 +55504,7 @@ }, { "str": "web", - "token_id": 5523, + "token_id": 5524, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55521,7 +55513,7 @@ }, { "str": "|", - "token_id": 5524, + "token_id": 5525, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55530,7 +55522,7 @@ }, { "str": "title", - "token_id": 5525, + "token_id": 5526, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55539,7 +55531,7 @@ }, { "str": "=", - "token_id": 5526, + "token_id": 5527, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55548,7 +55540,7 @@ }, { "str": "splatoon", - "token_id": 5527, + "token_id": 5528, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55557,7 +55549,7 @@ }, { "str": "3", - "token_id": 5528, + "token_id": 5529, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55566,7 +55558,7 @@ }, { "str": "review", - "token_id": 5529, + "token_id": 5530, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55575,7 +55567,7 @@ }, { "str": "-", - "token_id": 5530, + "token_id": 5531, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55584,7 +55576,7 @@ }, { "str": "everything", - "token_id": 5531, + "token_id": 5532, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55593,7 +55585,7 @@ }, { "str": "you", - "token_id": 5532, + "token_id": 5533, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55602,7 +55594,7 @@ }, { "str": "need", - "token_id": 5533, + "token_id": 5534, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55611,7 +55603,7 @@ }, { "str": "to", - "token_id": 5534, + "token_id": 5535, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55620,7 +55612,7 @@ }, { "str": "know", - "token_id": 5535, + "token_id": 5536, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55629,7 +55621,7 @@ }, { "str": "-", - "token_id": 5536, + "token_id": 5537, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55638,7 +55630,7 @@ }, { "str": "mashradar", - "token_id": 5537, + "token_id": 5538, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55647,7 +55639,7 @@ }, { "str": "|", - "token_id": 5538, + "token_id": 5539, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55656,7 +55648,7 @@ }, { "str": "url", - "token_id": 5539, + "token_id": 5540, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55665,7 +55657,7 @@ }, { "str": "=", - "token_id": 5540, + "token_id": 5541, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55674,7 +55666,7 @@ }, { "str": "https", - "token_id": 5541, + "token_id": 5542, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55683,7 +55675,7 @@ }, { "str": ":", - "token_id": 5542, + "token_id": 5543, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55692,7 +55684,7 @@ }, { "str": "/", - "token_id": 5543, + "token_id": 5544, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55701,7 +55693,7 @@ }, { "str": "/", - "token_id": 5544, + "token_id": 5545, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55710,7 +55702,7 @@ }, { "str": "mashradar", - "token_id": 5545, + "token_id": 5546, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55719,7 +55711,7 @@ }, { "str": ".", - "token_id": 5546, + "token_id": 5547, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55728,7 +55720,7 @@ }, { "str": "com", - "token_id": 5547, + "token_id": 5548, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55737,7 +55729,7 @@ }, { "str": "/", - "token_id": 5548, + "token_id": 5549, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55746,7 +55738,7 @@ }, { "str": "splatoon", - "token_id": 5549, + "token_id": 5550, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55755,7 +55747,7 @@ }, { "str": "-", - "token_id": 5550, + "token_id": 5551, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55764,7 +55756,7 @@ }, { "str": "3", - "token_id": 5551, + "token_id": 5552, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55773,7 +55765,7 @@ }, { "str": "-", - "token_id": 5552, + "token_id": 5553, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55782,7 +55774,7 @@ }, { "str": "review", - "token_id": 5553, + "token_id": 5554, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55791,7 +55783,7 @@ }, { "str": "/", - "token_id": 5554, + "token_id": 5555, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55800,7 +55792,7 @@ }, { "str": "|", - "token_id": 5555, + "token_id": 5556, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55809,7 +55801,7 @@ }, { "str": "access", - "token_id": 5556, + "token_id": 5557, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55818,7 +55810,7 @@ }, { "str": "-", - "token_id": 5557, + "token_id": 5558, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55827,7 +55819,7 @@ }, { "str": "date", - "token_id": 5558, + "token_id": 5559, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55836,7 +55828,7 @@ }, { "str": "=", - "token_id": 5559, + "token_id": 5560, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55845,7 +55837,7 @@ }, { "str": "2022", - "token_id": 5560, + "token_id": 5561, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55854,7 +55846,7 @@ }, { "str": "-", - "token_id": 5561, + "token_id": 5562, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55863,7 +55855,7 @@ }, { "str": "08", - "token_id": 5562, + "token_id": 5563, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55872,7 +55864,7 @@ }, { "str": "-", - "token_id": 5563, + "token_id": 5564, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55881,7 +55873,7 @@ }, { "str": "08", - "token_id": 5564, + "token_id": 5565, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55890,7 +55882,7 @@ }, { "str": "|", - "token_id": 5565, + "token_id": 5566, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55899,7 +55891,7 @@ }, { "str": "website", - "token_id": 5566, + "token_id": 5567, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55908,7 +55900,7 @@ }, { "str": "=", - "token_id": 5567, + "token_id": 5568, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55917,7 +55909,7 @@ }, { "str": "mashradar", - "token_id": 5568, + "token_id": 5569, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55926,7 +55918,7 @@ }, { "str": "|", - "token_id": 5569, + "token_id": 5570, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55935,7 +55927,7 @@ }, { "str": "language", - "token_id": 5570, + "token_id": 5571, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55944,7 +55936,7 @@ }, { "str": "=", - "token_id": 5571, + "token_id": 5572, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55953,7 +55945,7 @@ }, { "str": "en", - "token_id": 5572, + "token_id": 5573, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55962,7 +55954,7 @@ }, { "str": "-", - "token_id": 5573, + "token_id": 5574, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55971,7 +55963,7 @@ }, { "str": "us", - "token_id": 5574, + "token_id": 5575, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55980,7 +55972,7 @@ }, { "str": "}}", - "token_id": 5575, + "token_id": 5576, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55989,7 +55981,7 @@ }, { "str": "<", - "token_id": 5576, + "token_id": 5577, "o_rev_id": 1103191983, "in": [], "out": [ @@ -55998,7 +55990,7 @@ }, { "str": "/", - "token_id": 5577, + "token_id": 5578, "o_rev_id": 1103191983, "in": [], "out": [ @@ -56007,7 +55999,7 @@ }, { "str": "ref", - "token_id": 5578, + "token_id": 5579, "o_rev_id": 1103191983, "in": [], "out": [ @@ -56016,7 +56008,7 @@ }, { "str": ">", - "token_id": 5579, + "token_id": 5580, "o_rev_id": 1103191983, "in": [], "out": [ @@ -56025,7 +56017,7 @@ }, { "str": "[[", - "token_id": 5580, + "token_id": 5581, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56036,7 +56028,7 @@ }, { "str": "category", - "token_id": 5581, + "token_id": 5582, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56047,7 +56039,7 @@ }, { "str": ":", - "token_id": 5582, + "token_id": 5583, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56058,7 +56050,7 @@ }, { "str": "video", - "token_id": 5583, + "token_id": 5584, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56069,7 +56061,7 @@ }, { "str": "games", - "token_id": 5584, + "token_id": 5585, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56080,7 +56072,7 @@ }, { "str": "that", - "token_id": 5585, + "token_id": 5586, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56091,7 +56083,7 @@ }, { "str": "use", - "token_id": 5586, + "token_id": 5587, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56102,7 +56094,7 @@ }, { "str": "amiibo", - "token_id": 5587, + "token_id": 5588, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56113,7 +56105,7 @@ }, { "str": "figurines", - "token_id": 5588, + "token_id": 5589, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56124,7 +56116,7 @@ }, { "str": "]]", - "token_id": 5589, + "token_id": 5590, "o_rev_id": 1103699636, "in": [ 1103754891 @@ -56135,21 +56127,21 @@ }, { "str": "the", - "token_id": 5590, + "token_id": 5591, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "game", - "token_id": 5591, + "token_id": 5592, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "will", - "token_id": 5592, + "token_id": 5593, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56158,7 +56150,7 @@ }, { "str": "support", - "token_id": 5593, + "token_id": 5594, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56167,28 +56159,28 @@ }, { "str": "[[", - "token_id": 5594, + "token_id": 5595, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "amiibo", - "token_id": 5595, + "token_id": 5596, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "]]", - "token_id": 5596, + "token_id": 5597, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "s", - "token_id": 5597, + "token_id": 5598, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56197,42 +56189,42 @@ }, { "str": ",", - "token_id": 5598, + "token_id": 5599, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "with", - "token_id": 5599, + "token_id": 5600, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "several", - "token_id": 5600, + "token_id": 5601, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "new", - "token_id": 5601, + "token_id": 5602, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "figurines", - "token_id": 5602, + "token_id": 5603, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "being", - "token_id": 5603, + "token_id": 5604, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56241,7 +56233,7 @@ }, { "str": "released", - "token_id": 5604, + "token_id": 5605, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56250,7 +56242,7 @@ }, { "str": "as", - "token_id": 5605, + "token_id": 5606, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56259,7 +56251,7 @@ }, { "str": "well", - "token_id": 5606, + "token_id": 5607, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56268,7 +56260,7 @@ }, { "str": "as", - "token_id": 5607, + "token_id": 5608, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56277,7 +56269,7 @@ }, { "str": "several", - "token_id": 5608, + "token_id": 5609, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56286,7 +56278,7 @@ }, { "str": "'", - "token_id": 5609, + "token_id": 5610, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56295,7 +56287,7 @@ }, { "str": "'", - "token_id": 5610, + "token_id": 5611, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56304,7 +56296,7 @@ }, { "str": "splatoon", - "token_id": 5611, + "token_id": 5612, "o_rev_id": 1103757458, "in": [ 1216768014 @@ -56315,7 +56307,7 @@ }, { "str": "2", - "token_id": 5612, + "token_id": 5613, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56324,7 +56316,7 @@ }, { "str": "'", - "token_id": 5613, + "token_id": 5614, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56333,7 +56325,7 @@ }, { "str": "'", - "token_id": 5614, + "token_id": 5615, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56342,7 +56334,7 @@ }, { "str": "figurines", - "token_id": 5615, + "token_id": 5616, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56351,7 +56343,7 @@ }, { "str": "being", - "token_id": 5616, + "token_id": 5617, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56360,7 +56352,7 @@ }, { "str": "relaunched", - "token_id": 5617, + "token_id": 5618, "o_rev_id": 1103757458, "in": [], "out": [ @@ -56369,322 +56361,322 @@ }, { "str": ".", - "token_id": 5618, + "token_id": 5619, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "<", - "token_id": 5619, + "token_id": 5620, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "ref", - "token_id": 5620, + "token_id": 5621, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": ">", - "token_id": 5621, + "token_id": 5622, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "https", - "token_id": 5622, + "token_id": 5623, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": ":", - "token_id": 5623, + "token_id": 5624, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "/", - "token_id": 5624, + "token_id": 5625, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "/", - "token_id": 5625, + "token_id": 5626, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "www", - "token_id": 5626, + "token_id": 5627, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": ".", - "token_id": 5627, + "token_id": 5628, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 5628, + "token_id": 5629, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": ".", - "token_id": 5629, + "token_id": 5630, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "com", - "token_id": 5630, + "token_id": 5631, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "/", - "token_id": 5631, + "token_id": 5632, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "news", - "token_id": 5632, + "token_id": 5633, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "/", - "token_id": 5633, + "token_id": 5634, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "2022", - "token_id": 5634, + "token_id": 5635, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "/", - "token_id": 5635, + "token_id": 5636, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "08", - "token_id": 5636, + "token_id": 5637, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "/", - "token_id": 5637, + "token_id": 5638, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "new", - "token_id": 5638, + "token_id": 5639, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5639, + "token_id": 5640, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 5640, + "token_id": 5641, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5641, + "token_id": 5642, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "3", - "token_id": 5642, + "token_id": 5643, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5643, + "token_id": 5644, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "amiibo", - "token_id": 5644, + "token_id": 5645, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5645, + "token_id": 5646, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "revealed", - "token_id": 5646, + "token_id": 5647, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5647, + "token_id": 5648, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "including", - "token_id": 5648, + "token_id": 5649, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5649, + "token_id": 5650, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "inkling", - "token_id": 5650, + "token_id": 5651, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5651, + "token_id": 5652, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "octoling", - "token_id": 5652, + "token_id": 5653, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5653, + "token_id": 5654, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "and", - "token_id": 5654, + "token_id": 5655, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "-", - "token_id": 5655, + "token_id": 5656, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "smallfry", - "token_id": 5656, + "token_id": 5657, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "<", - "token_id": 5657, + "token_id": 5658, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "/", - "token_id": 5658, + "token_id": 5659, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "ref", - "token_id": 5659, + "token_id": 5660, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": ">", - "token_id": 5660, + "token_id": 5661, "o_rev_id": 1103757458, "in": [], "out": [] }, { "str": "have", - "token_id": 5661, + "token_id": 5662, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "support", - "token_id": 5662, + "token_id": 5663, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "for", - "token_id": 5663, + "token_id": 5664, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56693,7 +56685,7 @@ }, { "str": "the", - "token_id": 5664, + "token_id": 5665, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56702,7 +56694,7 @@ }, { "str": "game", - "token_id": 5665, + "token_id": 5666, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56711,7 +56703,7 @@ }, { "str": ".", - "token_id": 5666, + "token_id": 5667, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56720,7 +56712,7 @@ }, { "str": "these", - "token_id": 5667, + "token_id": 5668, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56729,128 +56721,126 @@ }, { "str": "can", - "token_id": 5668, + "token_id": 5669, "o_rev_id": 1103758433, "in": [], - "out": [ - 1107435919 - ] + "out": [] }, { "str": "be", - "token_id": 5669, + "token_id": 5670, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "used", - "token_id": 5670, + "token_id": 5671, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "to", - "token_id": 5671, + "token_id": 5672, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "take", - "token_id": 5672, + "token_id": 5673, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "photos", - "token_id": 5673, + "token_id": 5674, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "with", - "token_id": 5674, + "token_id": 5675, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "the", - "token_id": 5675, + "token_id": 5676, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "characters", - "token_id": 5676, + "token_id": 5677, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": ",", - "token_id": 5677, + "token_id": 5678, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "similar", - "token_id": 5678, + "token_id": 5679, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "to", - "token_id": 5679, + "token_id": 5680, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "past", - "token_id": 5680, + "token_id": 5681, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "titles", - "token_id": 5681, + "token_id": 5682, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "{{", - "token_id": 5682, + "token_id": 5683, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "cite", - "token_id": 5683, + "token_id": 5684, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "web", - "token_id": 5684, + "token_id": 5685, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "|", - "token_id": 5685, + "token_id": 5686, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56859,7 +56849,7 @@ }, { "str": "last1", - "token_id": 5686, + "token_id": 5687, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56868,7 +56858,7 @@ }, { "str": "=", - "token_id": 5687, + "token_id": 5688, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56877,14 +56867,14 @@ }, { "str": "norman", - "token_id": 5688, + "token_id": 5689, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "|", - "token_id": 5689, + "token_id": 5690, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56893,7 +56883,7 @@ }, { "str": "first1", - "token_id": 5690, + "token_id": 5691, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56902,7 +56892,7 @@ }, { "str": "=", - "token_id": 5691, + "token_id": 5692, "o_rev_id": 1103758433, "in": [], "out": [ @@ -56911,168 +56901,168 @@ }, { "str": "jim", - "token_id": 5692, + "token_id": 5693, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "|", - "token_id": 5693, + "token_id": 5694, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "title", - "token_id": 5694, + "token_id": 5695, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "=", - "token_id": 5695, + "token_id": 5696, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "new", - "token_id": 5696, + "token_id": 5697, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 5697, + "token_id": 5698, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "3", - "token_id": 5698, + "token_id": 5699, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "amiibo", - "token_id": 5699, + "token_id": 5700, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "revealed", - "token_id": 5700, + "token_id": 5701, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": ",", - "token_id": 5701, + "token_id": 5702, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "including", - "token_id": 5702, + "token_id": 5703, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "inkling", - "token_id": 5703, + "token_id": 5704, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": ",", - "token_id": 5704, + "token_id": 5705, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "octoling", - "token_id": 5705, + "token_id": 5706, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": ",", - "token_id": 5706, + "token_id": 5707, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "and", - "token_id": 5707, + "token_id": 5708, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "smallfry", - "token_id": 5708, + "token_id": 5709, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "|", - "token_id": 5709, + "token_id": 5710, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "url", - "token_id": 5710, + "token_id": 5711, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "=", - "token_id": 5711, + "token_id": 5712, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "|", - "token_id": 5712, + "token_id": 5713, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "website", - "token_id": 5713, + "token_id": 5714, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "=", - "token_id": 5714, + "token_id": 5715, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 5715, + "token_id": 5716, "o_rev_id": 1103758433, "in": [ 1202097960 @@ -57083,14 +57073,14 @@ }, { "str": "life", - "token_id": 5716, + "token_id": 5717, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "|", - "token_id": 5717, + "token_id": 5718, "o_rev_id": 1103758433, "in": [], "out": [ @@ -57099,7 +57089,7 @@ }, { "str": "publisher", - "token_id": 5718, + "token_id": 5719, "o_rev_id": 1103758433, "in": [], "out": [ @@ -57108,7 +57098,7 @@ }, { "str": "=", - "token_id": 5719, + "token_id": 5720, "o_rev_id": 1103758433, "in": [], "out": [ @@ -57117,7 +57107,7 @@ }, { "str": "hookshot", - "token_id": 5720, + "token_id": 5721, "o_rev_id": 1103758433, "in": [], "out": [ @@ -57126,7 +57116,7 @@ }, { "str": "media", - "token_id": 5721, + "token_id": 5722, "o_rev_id": 1103758433, "in": [], "out": [ @@ -57135,119 +57125,119 @@ }, { "str": "|", - "token_id": 5722, + "token_id": 5723, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "access", - "token_id": 5723, + "token_id": 5724, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "-", - "token_id": 5724, + "token_id": 5725, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "date", - "token_id": 5725, + "token_id": 5726, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "=", - "token_id": 5726, + "token_id": 5727, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "10", - "token_id": 5727, + "token_id": 5728, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "august", - "token_id": 5728, + "token_id": 5729, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "2022", - "token_id": 5729, + "token_id": 5730, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "|", - "token_id": 5730, + "token_id": 5731, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "date", - "token_id": 5731, + "token_id": 5732, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "=", - "token_id": 5732, + "token_id": 5733, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "10", - "token_id": 5733, + "token_id": 5734, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "august", - "token_id": 5734, + "token_id": 5735, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "2022", - "token_id": 5735, + "token_id": 5736, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": "}}", - "token_id": 5736, + "token_id": 5737, "o_rev_id": 1103758433, "in": [], "out": [] }, { "str": ".", - "token_id": 5737, + "token_id": 5738, "o_rev_id": 1103857714, "in": [], "out": [] }, { "str": "on", - "token_id": 5738, + "token_id": 5739, "o_rev_id": 1104088016, "in": [ 1202097960 @@ -57258,14 +57248,14 @@ }, { "str": "10", - "token_id": 5739, + "token_id": 5740, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "august", - "token_id": 5740, + "token_id": 5741, "o_rev_id": 1104088016, "in": [ 1202097960 @@ -57276,32 +57266,28 @@ }, { "str": "2022", - "token_id": 5741, + "token_id": 5742, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": ",", - "token_id": 5742, + "token_id": 5743, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 5743, + "token_id": 5744, "o_rev_id": 1104088016, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "broadcasted", - "token_id": 5744, + "token_id": 5745, "o_rev_id": 1104088016, "in": [], "out": [ @@ -57310,165 +57296,151 @@ }, { "str": "a", - "token_id": 5745, + "token_id": 5746, "o_rev_id": 1104088016, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "splatoon", - "token_id": 5746, + "token_id": 5747, "o_rev_id": 1104088016, "in": [ - 1202097960, 1216768014 ], "out": [ - 1202071552, 1216767975 ] }, { "str": "3", - "token_id": 5747, + "token_id": 5748, "o_rev_id": 1104088016, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "focused", - "token_id": 5748, + "token_id": 5749, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 5749, + "token_id": 5750, "o_rev_id": 1104088016, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "direct", - "token_id": 5750, + "token_id": 5751, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": ",", - "token_id": 5751, + "token_id": 5752, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "revealing", - "token_id": 5752, + "token_id": 5753, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "the", - "token_id": 5753, + "token_id": 5754, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "date", - "token_id": 5754, + "token_id": 5755, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "for", - "token_id": 5755, + "token_id": 5756, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "the", - "token_id": 5756, + "token_id": 5757, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "game", - "token_id": 5757, + "token_id": 5758, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "'", - "token_id": 5758, + "token_id": 5759, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "s", - "token_id": 5759, + "token_id": 5760, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 5760, + "token_id": 5761, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "world", - "token_id": 5761, + "token_id": 5762, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "premiere", - "token_id": 5762, + "token_id": 5763, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": ".", - "token_id": 5763, + "token_id": 5764, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 5764, + "token_id": 5765, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "also", - "token_id": 5765, + "token_id": 5766, "o_rev_id": 1104088016, "in": [], "out": [ @@ -57477,28 +57449,28 @@ }, { "str": "announced", - "token_id": 5766, + "token_id": 5767, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "that", - "token_id": 5767, + "token_id": 5768, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "and", - "token_id": 5768, + "token_id": 5769, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "recieve", - "token_id": 5769, + "token_id": 5770, "o_rev_id": 1104088016, "in": [], "out": [ @@ -57507,28 +57479,28 @@ }, { "str": "special", - "token_id": 5770, + "token_id": 5771, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "gear", - "token_id": 5771, + "token_id": 5772, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "items", - "token_id": 5772, + "token_id": 5773, "o_rev_id": 1104088016, "in": [], "out": [] }, { "str": "are", - "token_id": 5773, + "token_id": 5774, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57537,7 +57509,7 @@ }, { "str": "splatfests", - "token_id": 5774, + "token_id": 5775, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57546,7 +57518,7 @@ }, { "str": ",", - "token_id": 5775, + "token_id": 5776, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57555,7 +57527,7 @@ }, { "str": "the", - "token_id": 5776, + "token_id": 5777, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57567,7 +57539,7 @@ }, { "str": "game", - "token_id": 5777, + "token_id": 5778, "o_rev_id": 1104088597, "in": [ 1117591128, @@ -57580,7 +57552,7 @@ }, { "str": "'", - "token_id": 5778, + "token_id": 5779, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57589,7 +57561,7 @@ }, { "str": "s", - "token_id": 5779, + "token_id": 5780, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57598,7 +57570,7 @@ }, { "str": "monthly", - "token_id": 5780, + "token_id": 5781, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57607,7 +57579,7 @@ }, { "str": "challenge", - "token_id": 5781, + "token_id": 5782, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57616,7 +57588,7 @@ }, { "str": "where", - "token_id": 5782, + "token_id": 5783, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57625,7 +57597,7 @@ }, { "str": "you", - "token_id": 5783, + "token_id": 5784, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57634,7 +57606,7 @@ }, { "str": "could", - "token_id": 5784, + "token_id": 5785, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57643,7 +57615,7 @@ }, { "str": "choose", - "token_id": 5785, + "token_id": 5786, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57654,7 +57626,7 @@ }, { "str": "between", - "token_id": 5786, + "token_id": 5787, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57663,7 +57635,7 @@ }, { "str": "two", - "token_id": 5787, + "token_id": 5788, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57672,7 +57644,7 @@ }, { "str": "pre", - "token_id": 5788, + "token_id": 5789, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57681,7 +57653,7 @@ }, { "str": "-", - "token_id": 5789, + "token_id": 5790, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57690,7 +57662,7 @@ }, { "str": "decided", - "token_id": 5790, + "token_id": 5791, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57699,7 +57671,7 @@ }, { "str": "teams", - "token_id": 5791, + "token_id": 5792, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57708,7 +57680,7 @@ }, { "str": "to", - "token_id": 5792, + "token_id": 5793, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57719,7 +57691,7 @@ }, { "str": "fight", - "token_id": 5793, + "token_id": 5794, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57728,7 +57700,7 @@ }, { "str": "against", - "token_id": 5794, + "token_id": 5795, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57737,7 +57709,7 @@ }, { "str": "the", - "token_id": 5795, + "token_id": 5796, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57746,7 +57718,7 @@ }, { "str": "other", - "token_id": 5796, + "token_id": 5797, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57755,7 +57727,7 @@ }, { "str": "team", - "token_id": 5797, + "token_id": 5798, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57764,7 +57736,7 @@ }, { "str": "with", - "token_id": 5798, + "token_id": 5799, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57773,7 +57745,7 @@ }, { "str": ",", - "token_id": 5799, + "token_id": 5800, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57782,7 +57754,7 @@ }, { "str": "this", - "token_id": 5800, + "token_id": 5801, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57791,7 +57763,7 @@ }, { "str": "time", - "token_id": 5801, + "token_id": 5802, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57800,7 +57772,7 @@ }, { "str": "with", - "token_id": 5802, + "token_id": 5803, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57809,7 +57781,7 @@ }, { "str": "three", - "token_id": 5803, + "token_id": 5804, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57820,7 +57792,7 @@ }, { "str": "teams", - "token_id": 5804, + "token_id": 5805, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57831,7 +57803,7 @@ }, { "str": "to", - "token_id": 5805, + "token_id": 5806, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57842,7 +57814,7 @@ }, { "str": "choose", - "token_id": 5806, + "token_id": 5807, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57851,7 +57823,7 @@ }, { "str": "from", - "token_id": 5807, + "token_id": 5808, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57860,7 +57832,7 @@ }, { "str": "instead", - "token_id": 5808, + "token_id": 5809, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57869,7 +57841,7 @@ }, { "str": "of", - "token_id": 5809, + "token_id": 5810, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57878,7 +57850,7 @@ }, { "str": "the", - "token_id": 5810, + "token_id": 5811, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57889,7 +57861,7 @@ }, { "str": "other", - "token_id": 5811, + "token_id": 5812, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57898,7 +57870,7 @@ }, { "str": "games", - "token_id": 5812, + "token_id": 5813, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57909,7 +57881,7 @@ }, { "str": "'", - "token_id": 5813, + "token_id": 5814, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57918,7 +57890,7 @@ }, { "str": "two", - "token_id": 5814, + "token_id": 5815, "o_rev_id": 1104088597, "in": [ 1117591128 @@ -57930,7 +57902,7 @@ }, { "str": "and", - "token_id": 5815, + "token_id": 5816, "o_rev_id": 1104088597, "in": [], "out": [ @@ -57939,14 +57911,14 @@ }, { "str": "receive", - "token_id": 5816, + "token_id": 5817, "o_rev_id": 1104114102, "in": [], "out": [] }, { "str": "north", - "token_id": 5817, + "token_id": 5818, "o_rev_id": 1104169705, "in": [], "out": [ @@ -57955,7 +57927,7 @@ }, { "str": "american", - "token_id": 5818, + "token_id": 5819, "o_rev_id": 1104169705, "in": [], "out": [ @@ -57964,7 +57936,7 @@ }, { "str": "cover", - "token_id": 5819, + "token_id": 5820, "o_rev_id": 1104169705, "in": [ 1118564685, @@ -57980,7 +57952,7 @@ }, { "str": "art", - "token_id": 5820, + "token_id": 5821, "o_rev_id": 1104169705, "in": [ 1118564685, @@ -57996,14 +57968,14 @@ }, { "str": "broadcast", - "token_id": 5821, + "token_id": 5822, "o_rev_id": 1104247126, "in": [], "out": [] }, { "str": "[[", - "token_id": 5822, + "token_id": 5823, "o_rev_id": 1104249584, "in": [], "out": [ @@ -58012,7 +57984,7 @@ }, { "str": "and", - "token_id": 5823, + "token_id": 5824, "o_rev_id": 1104249584, "in": [], "out": [ @@ -58021,7 +57993,7 @@ }, { "str": "nintendo", - "token_id": 5824, + "token_id": 5825, "o_rev_id": 1104249584, "in": [], "out": [ @@ -58030,7 +58002,7 @@ }, { "str": "switch", - "token_id": 5825, + "token_id": 5826, "o_rev_id": 1104249584, "in": [], "out": [ @@ -58039,7 +58011,7 @@ }, { "str": "oled", - "token_id": 5826, + "token_id": 5827, "o_rev_id": 1104249584, "in": [], "out": [ @@ -58048,7 +58020,7 @@ }, { "str": "]]", - "token_id": 5827, + "token_id": 5828, "o_rev_id": 1104249584, "in": [], "out": [ @@ -58057,14 +58029,14 @@ }, { "str": "it", - "token_id": 5828, + "token_id": 5829, "o_rev_id": 1104264568, "in": [], "out": [] }, { "str": "also", - "token_id": 5829, + "token_id": 5830, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58073,14 +58045,14 @@ }, { "str": "introduced", - "token_id": 5830, + "token_id": 5831, "o_rev_id": 1104264568, "in": [], "out": [] }, { "str": "3", - "token_id": 5831, + "token_id": 5832, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58089,21 +58061,21 @@ }, { "str": "new", - "token_id": 5832, + "token_id": 5833, "o_rev_id": 1104264568, "in": [], "out": [] }, { "str": "characters", - "token_id": 5833, + "token_id": 5834, "o_rev_id": 1104264568, "in": [], "out": [] }, { "str": "(", - "token_id": 5834, + "token_id": 5835, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58112,7 +58084,7 @@ }, { "str": "collectively", - "token_id": 5835, + "token_id": 5836, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58121,14 +58093,14 @@ }, { "str": "known", - "token_id": 5836, + "token_id": 5837, "o_rev_id": 1104264568, "in": [], "out": [] }, { "str": "as", - "token_id": 5837, + "token_id": 5838, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58137,7 +58109,7 @@ }, { "str": "deep", - "token_id": 5838, + "token_id": 5839, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58146,7 +58118,7 @@ }, { "str": "cut", - "token_id": 5839, + "token_id": 5840, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58155,7 +58127,7 @@ }, { "str": ")", - "token_id": 5840, + "token_id": 5841, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58164,7 +58136,7 @@ }, { "str": "named", - "token_id": 5841, + "token_id": 5842, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58173,21 +58145,21 @@ }, { "str": "big", - "token_id": 5842, + "token_id": 5843, "o_rev_id": 1104264568, "in": [], "out": [] }, { "str": "man", - "token_id": 5843, + "token_id": 5844, "o_rev_id": 1104264568, "in": [], "out": [] }, { "str": ",", - "token_id": 5844, + "token_id": 5845, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58196,7 +58168,7 @@ }, { "str": "shiver", - "token_id": 5845, + "token_id": 5846, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58205,7 +58177,7 @@ }, { "str": ",", - "token_id": 5846, + "token_id": 5847, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58214,7 +58186,7 @@ }, { "str": "and", - "token_id": 5847, + "token_id": 5848, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58223,7 +58195,7 @@ }, { "str": "frye", - "token_id": 5848, + "token_id": 5849, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58232,14 +58204,14 @@ }, { "str": ".", - "token_id": 5849, + "token_id": 5850, "o_rev_id": 1104264568, "in": [], "out": [] }, { "str": "they", - "token_id": 5850, + "token_id": 5851, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58248,7 +58220,7 @@ }, { "str": "essentially", - "token_id": 5851, + "token_id": 5852, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58257,7 +58229,7 @@ }, { "str": "act", - "token_id": 5852, + "token_id": 5853, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58266,7 +58238,7 @@ }, { "str": "as", - "token_id": 5853, + "token_id": 5854, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58275,7 +58247,7 @@ }, { "str": "the", - "token_id": 5854, + "token_id": 5855, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58284,7 +58256,7 @@ }, { "str": "game", - "token_id": 5855, + "token_id": 5856, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58293,7 +58265,7 @@ }, { "str": "’", - "token_id": 5856, + "token_id": 5857, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58302,7 +58274,7 @@ }, { "str": "s", - "token_id": 5857, + "token_id": 5858, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58311,7 +58283,7 @@ }, { "str": "versions", - "token_id": 5858, + "token_id": 5859, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58320,7 +58292,7 @@ }, { "str": "as", - "token_id": 5859, + "token_id": 5860, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58329,7 +58301,7 @@ }, { "str": "[[", - "token_id": 5860, + "token_id": 5861, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58338,7 +58310,7 @@ }, { "str": "pearl", - "token_id": 5861, + "token_id": 5862, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58347,7 +58319,7 @@ }, { "str": "and", - "token_id": 5862, + "token_id": 5863, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58356,7 +58328,7 @@ }, { "str": "marina", - "token_id": 5863, + "token_id": 5864, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58365,7 +58337,7 @@ }, { "str": "]]", - "token_id": 5864, + "token_id": 5865, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58374,7 +58346,7 @@ }, { "str": ".", - "token_id": 5865, + "token_id": 5866, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58383,7 +58355,7 @@ }, { "str": "it", - "token_id": 5866, + "token_id": 5867, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58392,7 +58364,7 @@ }, { "str": "also", - "token_id": 5867, + "token_id": 5868, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58401,7 +58373,7 @@ }, { "str": "introduced", - "token_id": 5868, + "token_id": 5869, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58410,7 +58382,7 @@ }, { "str": "rock", - "token_id": 5869, + "token_id": 5870, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58419,7 +58391,7 @@ }, { "str": ",", - "token_id": 5870, + "token_id": 5871, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58428,7 +58400,7 @@ }, { "str": "paper", - "token_id": 5871, + "token_id": 5872, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58437,7 +58409,7 @@ }, { "str": ",", - "token_id": 5872, + "token_id": 5873, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58446,7 +58418,7 @@ }, { "str": "and", - "token_id": 5873, + "token_id": 5874, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58455,7 +58427,7 @@ }, { "str": "scissors", - "token_id": 5874, + "token_id": 5875, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58464,7 +58436,7 @@ }, { "str": "as", - "token_id": 5875, + "token_id": 5876, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58473,7 +58445,7 @@ }, { "str": "the", - "token_id": 5876, + "token_id": 5877, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58482,7 +58454,7 @@ }, { "str": "first", - "token_id": 5877, + "token_id": 5878, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58491,7 +58463,7 @@ }, { "str": "splatfest", - "token_id": 5878, + "token_id": 5879, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58500,7 +58472,7 @@ }, { "str": "themes", - "token_id": 5879, + "token_id": 5880, "o_rev_id": 1104264568, "in": [], "out": [ @@ -58509,24 +58481,15 @@ }, { "str": ".", - "token_id": 5880, + "token_id": 5881, "o_rev_id": 1104264568, "in": [], - "out": [] - }, - { - "str": "and", - "token_id": 5881, - "o_rev_id": 1104551284, - "in": [ - 1178773007 - ], "out": [ - 1178772974 + 1145400671 ] }, { - "str": "octolings", + "str": "and", "token_id": 5882, "o_rev_id": 1104551284, "in": [ @@ -58537,7 +58500,7 @@ ] }, { - "str": "or", + "str": "octolings", "token_id": 5883, "o_rev_id": 1104551284, "in": [ @@ -58548,7 +58511,7 @@ ] }, { - "str": "octopus", + "str": "or", "token_id": 5884, "o_rev_id": 1104551284, "in": [ @@ -58559,7 +58522,7 @@ ] }, { - "str": "form", + "str": "octopus", "token_id": 5885, "o_rev_id": 1104551284, "in": [ @@ -58570,7 +58533,7 @@ ] }, { - "str": "swim", + "str": "form", "token_id": 5886, "o_rev_id": 1104551284, "in": [ @@ -58581,7 +58544,7 @@ ] }, { - "str": "submerging", + "str": "swim", "token_id": 5887, "o_rev_id": 1104551284, "in": [ @@ -58592,7 +58555,7 @@ ] }, { - "str": "in", + "str": "submerging", "token_id": 5888, "o_rev_id": 1104551284, "in": [ @@ -58603,7 +58566,7 @@ ] }, { - "str": "ink", + "str": "in", "token_id": 5889, "o_rev_id": 1104551284, "in": [ @@ -58614,7 +58577,7 @@ ] }, { - "str": "via", + "str": "ink", "token_id": 5890, "o_rev_id": 1104551284, "in": [ @@ -58625,7 +58588,7 @@ ] }, { - "str": "the", + "str": "via", "token_id": 5891, "o_rev_id": 1104551284, "in": [ @@ -58636,7 +58599,7 @@ ] }, { - "str": "swim", + "str": "the", "token_id": 5892, "o_rev_id": 1104551284, "in": [ @@ -58647,7 +58610,7 @@ ] }, { - "str": "'", + "str": "swim", "token_id": 5893, "o_rev_id": 1104551284, "in": [ @@ -58735,9 +58698,20 @@ ] }, { - "str": "swim", + "str": "'", "token_id": 5901, "o_rev_id": 1104551284, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "swim", + "token_id": 5902, + "o_rev_id": 1104551284, "in": [ 1117591128 ], @@ -58747,7 +58721,7 @@ }, { "str": "of", - "token_id": 5902, + "token_id": 5903, "o_rev_id": 1104767972, "in": [], "out": [ @@ -58756,7 +58730,7 @@ }, { "str": "amiibos", - "token_id": 5903, + "token_id": 5904, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58765,28 +58739,28 @@ }, { "str": "\"", - "token_id": 5904, + "token_id": 5905, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "idol", - "token_id": 5905, + "token_id": 5906, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "\"", - "token_id": 5906, + "token_id": 5907, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "them", - "token_id": 5907, + "token_id": 5908, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58795,7 +58769,7 @@ }, { "str": "being", - "token_id": 5908, + "token_id": 5909, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58804,7 +58778,7 @@ }, { "str": "thematic", - "token_id": 5909, + "token_id": 5910, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58813,7 +58787,7 @@ }, { "str": "successors", - "token_id": 5910, + "token_id": 5911, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58822,7 +58796,7 @@ }, { "str": "[[", - "token_id": 5911, + "token_id": 5912, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58831,7 +58805,7 @@ }, { "str": "squid", - "token_id": 5912, + "token_id": 5913, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58840,7 +58814,7 @@ }, { "str": "sisters", - "token_id": 5913, + "token_id": 5914, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58849,7 +58823,7 @@ }, { "str": "|", - "token_id": 5914, + "token_id": 5915, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58858,7 +58832,7 @@ }, { "str": "callie", - "token_id": 5915, + "token_id": 5916, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58867,7 +58841,7 @@ }, { "str": "and", - "token_id": 5916, + "token_id": 5917, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58876,7 +58850,7 @@ }, { "str": "marie", - "token_id": 5917, + "token_id": 5918, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58885,7 +58859,7 @@ }, { "str": "]]", - "token_id": 5918, + "token_id": 5919, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58894,7 +58868,7 @@ }, { "str": "and", - "token_id": 5919, + "token_id": 5920, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58903,7 +58877,7 @@ }, { "str": "from", - "token_id": 5920, + "token_id": 5921, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58912,7 +58886,7 @@ }, { "str": "splatoon", - "token_id": 5921, + "token_id": 5922, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58921,7 +58895,7 @@ }, { "str": "1", - "token_id": 5922, + "token_id": 5923, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58930,7 +58904,7 @@ }, { "str": "and", - "token_id": 5923, + "token_id": 5924, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58939,7 +58913,7 @@ }, { "str": "splatoon", - "token_id": 5924, + "token_id": 5925, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58948,7 +58922,7 @@ }, { "str": "2", - "token_id": 5925, + "token_id": 5926, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58957,7 +58931,7 @@ }, { "str": "respectively", - "token_id": 5926, + "token_id": 5927, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58966,7 +58940,7 @@ }, { "str": "to", - "token_id": 5927, + "token_id": 5928, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58975,7 +58949,7 @@ }, { "str": "promote", - "token_id": 5928, + "token_id": 5929, "o_rev_id": 1104803925, "in": [], "out": [ @@ -58984,18 +58958,14 @@ }, { "str": "the", - "token_id": 5929, + "token_id": 5930, "o_rev_id": 1104803925, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "game", - "token_id": 5930, + "token_id": 5931, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59004,7 +58974,7 @@ }, { "str": "a", - "token_id": 5931, + "token_id": 5932, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59013,7 +58983,7 @@ }, { "str": "test", - "token_id": 5932, + "token_id": 5933, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59022,7 +58992,7 @@ }, { "str": "-", - "token_id": 5933, + "token_id": 5934, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59031,7 +59001,7 @@ }, { "str": "fire", - "token_id": 5934, + "token_id": 5935, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59040,42 +59010,42 @@ }, { "str": "pre", - "token_id": 5935, + "token_id": 5936, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "-", - "token_id": 5936, + "token_id": 5937, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "launch", - "token_id": 5937, + "token_id": 5938, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 5938, + "token_id": 5939, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "event", - "token_id": 5939, + "token_id": 5940, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "is", - "token_id": 5940, + "token_id": 5941, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59084,7 +59054,7 @@ }, { "str": "scheduled", - "token_id": 5941, + "token_id": 5942, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59093,7 +59063,7 @@ }, { "str": "for", - "token_id": 5942, + "token_id": 5943, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59102,14 +59072,14 @@ }, { "str": "august", - "token_id": 5943, + "token_id": 5944, "o_rev_id": 1104803925, "in": [], "out": [] }, { "str": "27th", - "token_id": 5944, + "token_id": 5945, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59118,7 +59088,7 @@ }, { "str": "/", - "token_id": 5945, + "token_id": 5946, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59127,7 +59097,7 @@ }, { "str": "28th", - "token_id": 5946, + "token_id": 5947, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59136,7 +59106,7 @@ }, { "str": "featuring", - "token_id": 5947, + "token_id": 5948, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59145,7 +59115,7 @@ }, { "str": "three", - "token_id": 5948, + "token_id": 5949, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59154,7 +59124,7 @@ }, { "str": "teams", - "token_id": 5949, + "token_id": 5950, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59163,7 +59133,7 @@ }, { "str": "of", - "token_id": 5950, + "token_id": 5951, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59172,7 +59142,7 @@ }, { "str": "[[", - "token_id": 5951, + "token_id": 5952, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59181,7 +59151,7 @@ }, { "str": "rock", - "token_id": 5952, + "token_id": 5953, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59190,7 +59160,7 @@ }, { "str": "paper", - "token_id": 5953, + "token_id": 5954, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59199,7 +59169,7 @@ }, { "str": "scissors", - "token_id": 5954, + "token_id": 5955, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59208,7 +59178,7 @@ }, { "str": "|", - "token_id": 5955, + "token_id": 5956, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59217,7 +59187,7 @@ }, { "str": "scissor", - "token_id": 5956, + "token_id": 5957, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59226,7 +59196,7 @@ }, { "str": "]]", - "token_id": 5957, + "token_id": 5958, "o_rev_id": 1104803925, "in": [], "out": [ @@ -59235,7 +59205,7 @@ }, { "str": "{{", - "token_id": 5958, + "token_id": 5959, "o_rev_id": 1104898931, "in": [], "out": [ @@ -59244,7 +59214,7 @@ }, { "str": "cn", - "token_id": 5959, + "token_id": 5960, "o_rev_id": 1104898931, "in": [], "out": [ @@ -59253,7 +59223,7 @@ }, { "str": "}}", - "token_id": 5960, + "token_id": 5961, "o_rev_id": 1104898931, "in": [], "out": [ @@ -59262,399 +59232,399 @@ }, { "str": "<", - "token_id": 5961, + "token_id": 5962, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "ref", - "token_id": 5962, + "token_id": 5963, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": ">", - "token_id": 5963, + "token_id": 5964, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "{{", - "token_id": 5964, + "token_id": 5965, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "cite", - "token_id": 5965, + "token_id": 5966, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "web", - "token_id": 5966, + "token_id": 5967, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "|", - "token_id": 5967, + "token_id": 5968, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "title", - "token_id": 5968, + "token_id": 5969, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "=", - "token_id": 5969, + "token_id": 5970, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "limited", - "token_id": 5970, + "token_id": 5971, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 5971, + "token_id": 5972, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "edition", - "token_id": 5972, + "token_id": 5973, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 5973, + "token_id": 5974, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "3", - "token_id": 5974, + "token_id": 5975, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 5975, + "token_id": 5976, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "themed", - "token_id": 5976, + "token_id": 5977, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "oled", - "token_id": 5977, + "token_id": 5978, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "switch", - "token_id": 5978, + "token_id": 5979, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "available", - "token_id": 5979, + "token_id": 5980, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "aug", - "token_id": 5980, + "token_id": 5981, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": ".", - "token_id": 5981, + "token_id": 5982, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "26", - "token_id": 5982, + "token_id": 5983, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "|", - "token_id": 5983, + "token_id": 5984, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "url", - "token_id": 5984, + "token_id": 5985, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "=", - "token_id": 5985, + "token_id": 5986, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "https", - "token_id": 5986, + "token_id": 5987, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": ":", - "token_id": 5987, + "token_id": 5988, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "/", - "token_id": 5988, + "token_id": 5989, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "/", - "token_id": 5989, + "token_id": 5990, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "www", - "token_id": 5990, + "token_id": 5991, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": ".", - "token_id": 5991, + "token_id": 5992, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "pcmag", - "token_id": 5992, + "token_id": 5993, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": ".", - "token_id": 5993, + "token_id": 5994, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "com", - "token_id": 5994, + "token_id": 5995, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "/", - "token_id": 5995, + "token_id": 5996, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "news", - "token_id": 5996, + "token_id": 5997, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "/", - "token_id": 5997, + "token_id": 5998, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "limited", - "token_id": 5998, + "token_id": 5999, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 5999, + "token_id": 6000, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "edition", - "token_id": 6000, + "token_id": 6001, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 6001, + "token_id": 6002, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6002, + "token_id": 6003, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 6003, + "token_id": 6004, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "3", - "token_id": 6004, + "token_id": 6005, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 6005, + "token_id": 6006, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "themed", - "token_id": 6006, + "token_id": 6007, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 6007, + "token_id": 6008, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "oled", - "token_id": 6008, + "token_id": 6009, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 6009, + "token_id": 6010, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "switch", - "token_id": 6010, + "token_id": 6011, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 6011, + "token_id": 6012, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "available", - "token_id": 6012, + "token_id": 6013, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 6013, + "token_id": 6014, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "aug", - "token_id": 6014, + "token_id": 6015, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "-", - "token_id": 6015, + "token_id": 6016, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "26", - "token_id": 6016, + "token_id": 6017, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "|", - "token_id": 6017, + "token_id": 6018, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59663,7 +59633,7 @@ }, { "str": "access", - "token_id": 6018, + "token_id": 6019, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59672,7 +59642,7 @@ }, { "str": "-", - "token_id": 6019, + "token_id": 6020, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59681,7 +59651,7 @@ }, { "str": "date", - "token_id": 6020, + "token_id": 6021, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59690,7 +59660,7 @@ }, { "str": "=", - "token_id": 6021, + "token_id": 6022, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59699,7 +59669,7 @@ }, { "str": "2022", - "token_id": 6022, + "token_id": 6023, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59708,14 +59678,14 @@ }, { "str": "-", - "token_id": 6023, + "token_id": 6024, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "08", - "token_id": 6024, + "token_id": 6025, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59724,14 +59694,14 @@ }, { "str": "-", - "token_id": 6025, + "token_id": 6026, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "17", - "token_id": 6026, + "token_id": 6027, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59740,7 +59710,7 @@ }, { "str": "|", - "token_id": 6027, + "token_id": 6028, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59749,7 +59719,7 @@ }, { "str": "website", - "token_id": 6028, + "token_id": 6029, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59758,7 +59728,7 @@ }, { "str": "=", - "token_id": 6029, + "token_id": 6030, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59767,7 +59737,7 @@ }, { "str": "pcmag", - "token_id": 6030, + "token_id": 6031, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59776,7 +59746,7 @@ }, { "str": "|", - "token_id": 6031, + "token_id": 6032, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59785,7 +59755,7 @@ }, { "str": "language", - "token_id": 6032, + "token_id": 6033, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59794,7 +59764,7 @@ }, { "str": "=", - "token_id": 6033, + "token_id": 6034, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59803,7 +59773,7 @@ }, { "str": "en", - "token_id": 6034, + "token_id": 6035, "o_rev_id": 1104899270, "in": [], "out": [ @@ -59812,21 +59782,21 @@ }, { "str": "}}", - "token_id": 6035, + "token_id": 6036, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "<", - "token_id": 6036, + "token_id": 6037, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "/", - "token_id": 6037, + "token_id": 6038, "o_rev_id": 1104899270, "in": [ 1178773007 @@ -59837,21 +59807,21 @@ }, { "str": "ref", - "token_id": 6038, + "token_id": 6039, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": ">", - "token_id": 6039, + "token_id": 6040, "o_rev_id": 1104899270, "in": [], "out": [] }, { "str": "a", - "token_id": 6040, + "token_id": 6041, "o_rev_id": 1104969786, "in": [], "out": [ @@ -59860,7 +59830,7 @@ }, { "str": "goated", - "token_id": 6041, + "token_id": 6042, "o_rev_id": 1104969786, "in": [], "out": [ @@ -59869,7 +59839,7 @@ }, { "str": "character", - "token_id": 6042, + "token_id": 6043, "o_rev_id": 1104969786, "in": [], "out": [ @@ -59878,7 +59848,7 @@ }, { "str": "named", - "token_id": 6043, + "token_id": 6044, "o_rev_id": 1104969786, "in": [], "out": [ @@ -59887,7 +59857,7 @@ }, { "str": "shiver", - "token_id": 6044, + "token_id": 6045, "o_rev_id": 1104969786, "in": [], "out": [ @@ -59896,7 +59866,7 @@ }, { "str": "they", - "token_id": 6045, + "token_id": 6046, "o_rev_id": 1105184580, "in": [], "out": [ @@ -59905,7 +59875,7 @@ }, { "str": "are", - "token_id": 6046, + "token_id": 6047, "o_rev_id": 1105184580, "in": [], "out": [ @@ -59914,7 +59884,7 @@ }, { "str": "|", - "token_id": 6047, + "token_id": 6048, "o_rev_id": 1105184629, "in": [], "out": [ @@ -59923,7 +59893,7 @@ }, { "str": "scissors", - "token_id": 6048, + "token_id": 6049, "o_rev_id": 1105184629, "in": [], "out": [ @@ -59932,7 +59902,7 @@ }, { "str": "with", - "token_id": 6049, + "token_id": 6050, "o_rev_id": 1106047658, "in": [], "out": [ @@ -59941,7 +59911,7 @@ }, { "str": "noah", - "token_id": 6050, + "token_id": 6051, "o_rev_id": 1106047658, "in": [], "out": [ @@ -59950,7 +59920,7 @@ }, { "str": "and", - "token_id": 6051, + "token_id": 6052, "o_rev_id": 1106047658, "in": [], "out": [ @@ -59959,7 +59929,7 @@ }, { "str": "cheesy", - "token_id": 6052, + "token_id": 6053, "o_rev_id": 1106047658, "in": [], "out": [ @@ -59968,7 +59938,7 @@ }, { "str": "left", - "token_id": 6053, + "token_id": 6054, "o_rev_id": 1106047658, "in": [], "out": [ @@ -59977,7 +59947,7 @@ }, { "str": "[[", - "token_id": 6054, + "token_id": 6055, "o_rev_id": 1106048272, "in": [ 1106048844 @@ -59989,7 +59959,7 @@ }, { "str": "rick", - "token_id": 6055, + "token_id": 6056, "o_rev_id": 1106048272, "in": [ 1106048844 @@ -60001,7 +59971,7 @@ }, { "str": "astley", - "token_id": 6056, + "token_id": 6057, "o_rev_id": 1106048272, "in": [ 1106048844 @@ -60013,7 +59983,7 @@ }, { "str": "]]", - "token_id": 6057, + "token_id": 6058, "o_rev_id": 1106048272, "in": [ 1106048844 @@ -60025,7 +59995,7 @@ }, { "str": "[[", - "token_id": 6058, + "token_id": 6059, "o_rev_id": 1106048434, "in": [], "out": [ @@ -60034,7 +60004,7 @@ }, { "str": "discord", - "token_id": 6059, + "token_id": 6060, "o_rev_id": 1106048434, "in": [], "out": [ @@ -60043,7 +60013,7 @@ }, { "str": "]]", - "token_id": 6060, + "token_id": 6061, "o_rev_id": 1106048434, "in": [], "out": [ @@ -60052,7 +60022,7 @@ }, { "str": "[[", - "token_id": 6061, + "token_id": 6062, "o_rev_id": 1106048844, "in": [], "out": [ @@ -60061,7 +60031,7 @@ }, { "str": "gamecube", - "token_id": 6062, + "token_id": 6063, "o_rev_id": 1106048844, "in": [], "out": [ @@ -60070,7 +60040,7 @@ }, { "str": "]]", - "token_id": 6063, + "token_id": 6064, "o_rev_id": 1106048844, "in": [], "out": [ @@ -60079,7 +60049,7 @@ }, { "str": "[[", - "token_id": 6064, + "token_id": 6065, "o_rev_id": 1106050244, "in": [], "out": [ @@ -60088,7 +60058,7 @@ }, { "str": "call", - "token_id": 6065, + "token_id": 6066, "o_rev_id": 1106050244, "in": [], "out": [ @@ -60097,7 +60067,7 @@ }, { "str": "of", - "token_id": 6066, + "token_id": 6067, "o_rev_id": 1106050244, "in": [], "out": [ @@ -60106,7 +60076,7 @@ }, { "str": "duty", - "token_id": 6067, + "token_id": 6068, "o_rev_id": 1106050244, "in": [], "out": [ @@ -60115,7 +60085,7 @@ }, { "str": "game", - "token_id": 6068, + "token_id": 6069, "o_rev_id": 1106050244, "in": [], "out": [ @@ -60124,7 +60094,7 @@ }, { "str": "]]", - "token_id": 6069, + "token_id": 6070, "o_rev_id": 1106050244, "in": [], "out": [ @@ -60133,7 +60103,7 @@ }, { "str": "home", - "token_id": 6070, + "token_id": 6071, "o_rev_id": 1106067505, "in": [], "out": [ @@ -60142,7 +60112,7 @@ }, { "str": "menu", - "token_id": 6071, + "token_id": 6072, "o_rev_id": 1106067505, "in": [], "out": [ @@ -60151,7 +60121,7 @@ }, { "str": "icon", - "token_id": 6072, + "token_id": 6073, "o_rev_id": 1106067505, "in": [], "out": [ @@ -60160,7 +60130,7 @@ }, { "str": ",", - "token_id": 6073, + "token_id": 6074, "o_rev_id": 1106153062, "in": [], "out": [ @@ -60169,7 +60139,7 @@ }, { "str": "later", - "token_id": 6074, + "token_id": 6075, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60178,49 +60148,49 @@ }, { "str": "on", - "token_id": 6075, + "token_id": 6076, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": ",", - "token_id": 6076, + "token_id": 6077, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "a", - "token_id": 6077, + "token_id": 6078, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 6078, + "token_id": 6079, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "treehouse", - "token_id": 6079, + "token_id": 6080, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "presentation", - "token_id": 6080, + "token_id": 6081, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "appeared", - "token_id": 6081, + "token_id": 6082, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60229,21 +60199,21 @@ }, { "str": "which", - "token_id": 6082, + "token_id": 6083, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "showcased", - "token_id": 6083, + "token_id": 6084, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "gameplay", - "token_id": 6084, + "token_id": 6085, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60252,7 +60222,7 @@ }, { "str": ",", - "token_id": 6085, + "token_id": 6086, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60261,14 +60231,14 @@ }, { "str": "and", - "token_id": 6086, + "token_id": 6087, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "also", - "token_id": 6087, + "token_id": 6088, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60277,7 +60247,7 @@ }, { "str": "showed", - "token_id": 6088, + "token_id": 6089, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60286,7 +60256,7 @@ }, { "str": "possible", - "token_id": 6089, + "token_id": 6090, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60295,7 +60265,7 @@ }, { "str": "splatfest", - "token_id": 6090, + "token_id": 6091, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60304,7 +60274,7 @@ }, { "str": "locations", - "token_id": 6091, + "token_id": 6092, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60313,14 +60283,14 @@ }, { "str": ".", - "token_id": 6092, + "token_id": 6093, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "it", - "token_id": 6093, + "token_id": 6094, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60329,7 +60299,7 @@ }, { "str": "also", - "token_id": 6094, + "token_id": 6095, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60338,7 +60308,7 @@ }, { "str": "showed", - "token_id": 6095, + "token_id": 6096, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60347,7 +60317,7 @@ }, { "str": "more", - "token_id": 6096, + "token_id": 6097, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60356,7 +60326,7 @@ }, { "str": "gameplay", - "token_id": 6097, + "token_id": 6098, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60365,7 +60335,7 @@ }, { "str": "of", - "token_id": 6098, + "token_id": 6099, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60374,7 +60344,7 @@ }, { "str": "certain", - "token_id": 6099, + "token_id": 6100, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60383,7 +60353,7 @@ }, { "str": "weapons", - "token_id": 6100, + "token_id": 6101, "o_rev_id": 1106795409, "in": [], "out": [ @@ -60392,14 +60362,14 @@ }, { "str": ".", - "token_id": 6101, + "token_id": 6102, "o_rev_id": 1106795409, "in": [], "out": [] }, { "str": "it", - "token_id": 6102, + "token_id": 6103, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60408,7 +60378,7 @@ }, { "str": "also", - "token_id": 6103, + "token_id": 6104, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60417,7 +60387,7 @@ }, { "str": "showed", - "token_id": 6104, + "token_id": 6105, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60426,7 +60396,7 @@ }, { "str": "more", - "token_id": 6105, + "token_id": 6106, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60435,7 +60405,7 @@ }, { "str": "information", - "token_id": 6106, + "token_id": 6107, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60444,7 +60414,7 @@ }, { "str": "about", - "token_id": 6107, + "token_id": 6108, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60453,7 +60423,7 @@ }, { "str": "the", - "token_id": 6108, + "token_id": 6109, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60462,7 +60432,7 @@ }, { "str": "training", - "token_id": 6109, + "token_id": 6110, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60471,7 +60441,7 @@ }, { "str": "area", - "token_id": 6110, + "token_id": 6111, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60480,7 +60450,7 @@ }, { "str": ",", - "token_id": 6111, + "token_id": 6112, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60489,7 +60459,7 @@ }, { "str": "while", - "token_id": 6112, + "token_id": 6113, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60498,7 +60468,7 @@ }, { "str": "a", - "token_id": 6113, + "token_id": 6114, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60507,7 +60477,7 @@ }, { "str": "later", - "token_id": 6114, + "token_id": 6115, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60516,7 +60486,7 @@ }, { "str": "presentation", - "token_id": 6115, + "token_id": 6116, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60525,7 +60495,7 @@ }, { "str": "focused", - "token_id": 6116, + "token_id": 6117, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60534,7 +60504,7 @@ }, { "str": "on", - "token_id": 6117, + "token_id": 6118, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60543,7 +60513,7 @@ }, { "str": "the", - "token_id": 6118, + "token_id": 6119, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60552,7 +60522,7 @@ }, { "str": "[[", - "token_id": 6119, + "token_id": 6120, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60561,7 +60531,7 @@ }, { "str": "story", - "token_id": 6120, + "token_id": 6121, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60570,7 +60540,7 @@ }, { "str": "mode", - "token_id": 6121, + "token_id": 6122, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60579,7 +60549,7 @@ }, { "str": "]]", - "token_id": 6122, + "token_id": 6123, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60588,7 +60558,7 @@ }, { "str": ".", - "token_id": 6123, + "token_id": 6124, "o_rev_id": 1106796146, "in": [], "out": [ @@ -60597,7 +60567,7 @@ }, { "str": "{{", - "token_id": 6124, + "token_id": 6125, "o_rev_id": 1106807950, "in": [], "out": [ @@ -60606,7 +60576,7 @@ }, { "str": "cn", - "token_id": 6125, + "token_id": 6126, "o_rev_id": 1106807950, "in": [], "out": [ @@ -60615,7 +60585,7 @@ }, { "str": "}}", - "token_id": 6126, + "token_id": 6127, "o_rev_id": 1106807950, "in": [], "out": [ @@ -60624,7 +60594,7 @@ }, { "str": "|", - "token_id": 6127, + "token_id": 6128, "o_rev_id": 1106811044, "in": [], "out": [ @@ -60633,14 +60603,14 @@ }, { "str": "date", - "token_id": 6128, + "token_id": 6129, "o_rev_id": 1106811044, "in": [], "out": [] }, { "str": "=", - "token_id": 6129, + "token_id": 6130, "o_rev_id": 1106811044, "in": [], "out": [ @@ -60649,7 +60619,7 @@ }, { "str": "august", - "token_id": 6130, + "token_id": 6131, "o_rev_id": 1106811044, "in": [], "out": [ @@ -60658,42 +60628,42 @@ }, { "str": "2022", - "token_id": 6131, + "token_id": 6132, "o_rev_id": 1106811044, "in": [], "out": [] }, { "str": "25", - "token_id": 6132, + "token_id": 6133, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "august", - "token_id": 6133, + "token_id": 6134, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "2022", - "token_id": 6134, + "token_id": 6135, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "was", - "token_id": 6135, + "token_id": 6136, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "broadcasted", - "token_id": 6136, + "token_id": 6137, "o_rev_id": 1106842923, "in": [], "out": [ @@ -60702,42 +60672,42 @@ }, { "str": "the", - "token_id": 6137, + "token_id": 6138, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "single", - "token_id": 6138, + "token_id": 6139, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "player", - "token_id": 6139, + "token_id": 6140, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "story", - "token_id": 6140, + "token_id": 6141, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "mode", - "token_id": 6141, + "token_id": 6142, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": ",", - "token_id": 6142, + "token_id": 6143, "o_rev_id": 1106842923, "in": [], "out": [ @@ -60746,133 +60716,133 @@ }, { "str": "the", - "token_id": 6143, + "token_id": 6144, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 6144, + "token_id": 6145, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "lobby", - "token_id": 6145, + "token_id": 6146, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": ",", - "token_id": 6146, + "token_id": 6147, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "alongside", - "token_id": 6147, + "token_id": 6148, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "weapons", - "token_id": 6148, + "token_id": 6149, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 6149, + "token_id": 6150, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "maps", - "token_id": 6150, + "token_id": 6151, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "<", - "token_id": 6151, + "token_id": 6152, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "ref", - "token_id": 6152, + "token_id": 6153, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": ">", - "token_id": 6153, + "token_id": 6154, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "{{", - "token_id": 6154, + "token_id": 6155, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "cite", - "token_id": 6155, + "token_id": 6156, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "web", - "token_id": 6156, + "token_id": 6157, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "|", - "token_id": 6157, + "token_id": 6158, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "date", - "token_id": 6158, + "token_id": 6159, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "=", - "token_id": 6159, + "token_id": 6160, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "2022", - "token_id": 6160, + "token_id": 6161, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6161, + "token_id": 6162, "o_rev_id": 1106842923, "in": [], "out": [ @@ -60881,7 +60851,7 @@ }, { "str": "08", - "token_id": 6162, + "token_id": 6163, "o_rev_id": 1106842923, "in": [], "out": [ @@ -60890,7 +60860,7 @@ }, { "str": "-", - "token_id": 6163, + "token_id": 6164, "o_rev_id": 1106842923, "in": [], "out": [ @@ -60899,343 +60869,343 @@ }, { "str": "26", - "token_id": 6164, + "token_id": 6165, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "|", - "token_id": 6165, + "token_id": 6166, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "title", - "token_id": 6166, + "token_id": 6167, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "=", - "token_id": 6167, + "token_id": 6168, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 6168, + "token_id": 6169, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "treehouse", - "token_id": 6169, + "token_id": 6170, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "live", - "token_id": 6170, + "token_id": 6171, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "breaks", - "token_id": 6171, + "token_id": 6172, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "down", - "token_id": 6172, + "token_id": 6173, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6173, + "token_id": 6174, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "3", - "token_id": 6174, + "token_id": 6175, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "|", - "token_id": 6175, + "token_id": 6176, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "url", - "token_id": 6176, + "token_id": 6177, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "=", - "token_id": 6177, + "token_id": 6178, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "https", - "token_id": 6178, + "token_id": 6179, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": ":", - "token_id": 6179, + "token_id": 6180, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "/", - "token_id": 6180, + "token_id": 6181, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "/", - "token_id": 6181, + "token_id": 6182, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "gameranx", - "token_id": 6182, + "token_id": 6183, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "com", - "token_id": 6183, + "token_id": 6184, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "/", - "token_id": 6184, + "token_id": 6185, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "updates", - "token_id": 6185, + "token_id": 6186, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "/", - "token_id": 6186, + "token_id": 6187, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "id", - "token_id": 6187, + "token_id": 6188, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "/", - "token_id": 6188, + "token_id": 6189, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "351238", - "token_id": 6189, + "token_id": 6190, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "/", - "token_id": 6190, + "token_id": 6191, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "article", - "token_id": 6191, + "token_id": 6192, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "/", - "token_id": 6192, + "token_id": 6193, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 6193, + "token_id": 6194, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6194, + "token_id": 6195, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "treehouse", - "token_id": 6195, + "token_id": 6196, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6196, + "token_id": 6197, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "live", - "token_id": 6197, + "token_id": 6198, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6198, + "token_id": 6199, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "breaks", - "token_id": 6199, + "token_id": 6200, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6200, + "token_id": 6201, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "down", - "token_id": 6201, + "token_id": 6202, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6202, + "token_id": 6203, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6203, + "token_id": 6204, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6204, + "token_id": 6205, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "3", - "token_id": 6205, + "token_id": 6206, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "/", - "token_id": 6206, + "token_id": 6207, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "|", - "token_id": 6207, + "token_id": 6208, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "access", - "token_id": 6208, + "token_id": 6209, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6209, + "token_id": 6210, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "=", - "token_id": 6210, + "token_id": 6211, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6211, + "token_id": 6212, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "08", - "token_id": 6212, + "token_id": 6213, "o_rev_id": 1106842923, "in": [], "out": [ @@ -61244,14 +61214,14 @@ }, { "str": "-", - "token_id": 6213, + "token_id": 6214, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "26", - "token_id": 6214, + "token_id": 6215, "o_rev_id": 1106842923, "in": [], "out": [ @@ -61260,28 +61230,28 @@ }, { "str": "|", - "token_id": 6215, + "token_id": 6216, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "website", - "token_id": 6216, + "token_id": 6217, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "=", - "token_id": 6217, + "token_id": 6218, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "gameranx", - "token_id": 6218, + "token_id": 6219, "o_rev_id": 1106842923, "in": [], "out": [ @@ -61290,35 +61260,35 @@ }, { "str": "|", - "token_id": 6219, + "token_id": 6220, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "language", - "token_id": 6220, + "token_id": 6221, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "=", - "token_id": 6221, + "token_id": 6222, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "en", - "token_id": 6222, + "token_id": 6223, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "-", - "token_id": 6223, + "token_id": 6224, "o_rev_id": 1106842923, "in": [], "out": [ @@ -61327,14 +61297,14 @@ }, { "str": "us", - "token_id": 6224, + "token_id": 6225, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "}}", - "token_id": 6225, + "token_id": 6226, "o_rev_id": 1106842923, "in": [], "out": [ @@ -61343,7 +61313,7 @@ }, { "str": "<", - "token_id": 6226, + "token_id": 6227, "o_rev_id": 1106842923, "in": [], "out": [ @@ -61352,14 +61322,14 @@ }, { "str": "/", - "token_id": 6227, + "token_id": 6228, "o_rev_id": 1106842923, "in": [], "out": [] }, { "str": "ref", - "token_id": 6228, + "token_id": 6229, "o_rev_id": 1106842923, "in": [], "out": [ @@ -61368,7 +61338,7 @@ }, { "str": ">", - "token_id": 6229, + "token_id": 6230, "o_rev_id": 1106842923, "in": [], "out": [ @@ -61377,7 +61347,7 @@ }, { "str": "{{", - "token_id": 6230, + "token_id": 6231, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61386,7 +61356,7 @@ }, { "str": "cleanup", - "token_id": 6231, + "token_id": 6232, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61395,7 +61365,7 @@ }, { "str": "tense", - "token_id": 6232, + "token_id": 6233, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61404,7 +61374,7 @@ }, { "str": "|", - "token_id": 6233, + "token_id": 6234, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61413,7 +61383,7 @@ }, { "str": "date", - "token_id": 6234, + "token_id": 6235, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61422,7 +61392,7 @@ }, { "str": "=", - "token_id": 6235, + "token_id": 6236, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61431,7 +61401,7 @@ }, { "str": "august", - "token_id": 6236, + "token_id": 6237, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61440,7 +61410,7 @@ }, { "str": "2022", - "token_id": 6237, + "token_id": 6238, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61449,7 +61419,7 @@ }, { "str": "}}", - "token_id": 6238, + "token_id": 6239, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61458,7 +61428,7 @@ }, { "str": "(", - "token_id": 6239, + "token_id": 6240, "o_rev_id": 1106892286, "in": [ 1229566085 @@ -61469,7 +61439,7 @@ }, { "str": "[[", - "token_id": 6240, + "token_id": 6241, "o_rev_id": 1106892286, "in": [ 1229566085 @@ -61480,7 +61450,7 @@ }, { "str": "player", - "token_id": 6241, + "token_id": 6242, "o_rev_id": 1106892286, "in": [ 1229566085 @@ -61491,7 +61461,7 @@ }, { "str": "versus", - "token_id": 6242, + "token_id": 6243, "o_rev_id": 1106892286, "in": [ 1229566085 @@ -61502,7 +61472,7 @@ }, { "str": "player", - "token_id": 6243, + "token_id": 6244, "o_rev_id": 1106892286, "in": [ 1229566085 @@ -61513,7 +61483,7 @@ }, { "str": "|", - "token_id": 6244, + "token_id": 6245, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -61525,7 +61495,7 @@ }, { "str": "pvp", - "token_id": 6245, + "token_id": 6246, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -61537,7 +61507,7 @@ }, { "str": "]]", - "token_id": 6246, + "token_id": 6247, "o_rev_id": 1106892286, "in": [ 1229566085 @@ -61548,7 +61518,7 @@ }, { "str": "and", - "token_id": 6247, + "token_id": 6248, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -61559,7 +61529,7 @@ }, { "str": "[[", - "token_id": 6248, + "token_id": 6249, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -61572,7 +61542,7 @@ }, { "str": "player", - "token_id": 6249, + "token_id": 6250, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -61585,7 +61555,7 @@ }, { "str": "versus", - "token_id": 6250, + "token_id": 6251, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -61598,7 +61568,7 @@ }, { "str": "environment", - "token_id": 6251, + "token_id": 6252, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -61611,7 +61581,7 @@ }, { "str": "|", - "token_id": 6252, + "token_id": 6253, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -61623,7 +61593,7 @@ }, { "str": "pve", - "token_id": 6253, + "token_id": 6254, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -61635,7 +61605,7 @@ }, { "str": "]]", - "token_id": 6254, + "token_id": 6255, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -61648,7 +61618,7 @@ }, { "str": ")", - "token_id": 6255, + "token_id": 6256, "o_rev_id": 1106892286, "in": [ 1229566085 @@ -61659,7 +61629,7 @@ }, { "str": "the", - "token_id": 6256, + "token_id": 6257, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61668,7 +61638,7 @@ }, { "str": "gameplay", - "token_id": 6257, + "token_id": 6258, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61677,7 +61647,7 @@ }, { "str": "of", - "token_id": 6258, + "token_id": 6259, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61686,7 +61656,7 @@ }, { "str": "is", - "token_id": 6259, + "token_id": 6260, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61697,7 +61667,7 @@ }, { "str": "like", - "token_id": 6260, + "token_id": 6261, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61706,7 +61676,7 @@ }, { "str": "installments", - "token_id": 6261, + "token_id": 6262, "o_rev_id": 1106892286, "in": [], "out": [ @@ -61715,7 +61685,7 @@ }, { "str": ".", - "token_id": 6262, + "token_id": 6263, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61726,7 +61696,7 @@ }, { "str": "choose", - "token_id": 6263, + "token_id": 6264, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61737,7 +61707,7 @@ }, { "str": "be", - "token_id": 6264, + "token_id": 6265, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61748,7 +61718,7 @@ }, { "str": "either", - "token_id": 6265, + "token_id": 6266, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61759,7 +61729,7 @@ }, { "str": "an", - "token_id": 6266, + "token_id": 6267, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61770,7 +61740,7 @@ }, { "str": "|", - "token_id": 6267, + "token_id": 6268, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61781,7 +61751,7 @@ }, { "str": "inkling", - "token_id": 6268, + "token_id": 6269, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61792,7 +61762,7 @@ }, { "str": "or", - "token_id": 6269, + "token_id": 6270, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61803,7 +61773,7 @@ }, { "str": "octoling", - "token_id": 6270, + "token_id": 6271, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61814,7 +61784,7 @@ }, { "str": "both", - "token_id": 6271, + "token_id": 6272, "o_rev_id": 1106892286, "in": [ 1144952513, @@ -61827,7 +61797,7 @@ }, { "str": "weapons", - "token_id": 6272, + "token_id": 6273, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61838,7 +61808,7 @@ }, { "str": "are", - "token_id": 6273, + "token_id": 6274, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61849,7 +61819,7 @@ }, { "str": "diverse", - "token_id": 6274, + "token_id": 6275, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61860,7 +61830,7 @@ }, { "str": "in", - "token_id": 6275, + "token_id": 6276, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61871,7 +61841,7 @@ }, { "str": "ability", - "token_id": 6276, + "token_id": 6277, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61882,7 +61852,7 @@ }, { "str": "and", - "token_id": 6277, + "token_id": 6278, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61893,7 +61863,7 @@ }, { "str": "imagery", - "token_id": 6278, + "token_id": 6279, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61904,7 +61874,7 @@ }, { "str": ",", - "token_id": 6279, + "token_id": 6280, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61915,7 +61885,7 @@ }, { "str": "with", - "token_id": 6280, + "token_id": 6281, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61926,7 +61896,7 @@ }, { "str": "most", - "token_id": 6281, + "token_id": 6282, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61937,7 +61907,7 @@ }, { "str": "resembling", - "token_id": 6282, + "token_id": 6283, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61948,7 +61918,7 @@ }, { "str": "household", - "token_id": 6283, + "token_id": 6284, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61959,7 +61929,7 @@ }, { "str": "objects", - "token_id": 6284, + "token_id": 6285, "o_rev_id": 1106892286, "in": [ 1178773007 @@ -61970,7 +61940,7 @@ }, { "str": "known", - "token_id": 6285, + "token_id": 6286, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -61983,7 +61953,7 @@ }, { "str": "as", - "token_id": 6286, + "token_id": 6287, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -61996,7 +61966,7 @@ }, { "str": "also", - "token_id": 6287, + "token_id": 6288, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -62009,7 +61979,7 @@ }, { "str": "features", - "token_id": 6288, + "token_id": 6289, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62021,7 +61991,7 @@ }, { "str": "monthly", - "token_id": 6289, + "token_id": 6290, "o_rev_id": 1106892286, "in": [ 1117591128, @@ -62035,7 +62005,7 @@ }, { "str": "\"", - "token_id": 6290, + "token_id": 6291, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62046,7 +62016,7 @@ }, { "str": "splatfests", - "token_id": 6291, + "token_id": 6292, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62055,7 +62025,7 @@ }, { "str": "\"", - "token_id": 6292, + "token_id": 6293, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62066,7 +62036,7 @@ }, { "str": ",", - "token_id": 6293, + "token_id": 6294, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62077,7 +62047,7 @@ }, { "str": "where", - "token_id": 6294, + "token_id": 6295, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62088,7 +62058,7 @@ }, { "str": "player", - "token_id": 6295, + "token_id": 6296, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62097,7 +62067,7 @@ }, { "str": "join", - "token_id": 6296, + "token_id": 6297, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62108,7 +62078,7 @@ }, { "str": "one", - "token_id": 6297, + "token_id": 6298, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62119,7 +62089,7 @@ }, { "str": "of", - "token_id": 6298, + "token_id": 6299, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62130,7 +62100,7 @@ }, { "str": "(", - "token_id": 6299, + "token_id": 6300, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62141,7 +62111,7 @@ }, { "str": "compared", - "token_id": 6300, + "token_id": 6301, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62152,7 +62122,7 @@ }, { "str": "two", - "token_id": 6301, + "token_id": 6302, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62163,7 +62133,7 @@ }, { "str": "in", - "token_id": 6302, + "token_id": 6303, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62174,7 +62144,7 @@ }, { "str": "previous", - "token_id": 6303, + "token_id": 6304, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62185,7 +62155,7 @@ }, { "str": "two", - "token_id": 6304, + "token_id": 6305, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62194,7 +62164,7 @@ }, { "str": ")", - "token_id": 6305, + "token_id": 6306, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62205,7 +62175,7 @@ }, { "str": "over", - "token_id": 6306, + "token_id": 6307, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62216,7 +62186,7 @@ }, { "str": "a", - "token_id": 6307, + "token_id": 6308, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62227,7 +62197,7 @@ }, { "str": "particular", - "token_id": 6308, + "token_id": 6309, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62238,7 +62208,7 @@ }, { "str": "theme", - "token_id": 6309, + "token_id": 6310, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62249,7 +62219,7 @@ }, { "str": "and", - "token_id": 6310, + "token_id": 6311, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62260,7 +62230,7 @@ }, { "str": "over", - "token_id": 6311, + "token_id": 6312, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62271,7 +62241,7 @@ }, { "str": "days", - "token_id": 6312, + "token_id": 6313, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62282,7 +62252,7 @@ }, { "str": "engage", - "token_id": 6313, + "token_id": 6314, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62293,7 +62263,7 @@ }, { "str": "in", - "token_id": 6314, + "token_id": 6315, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62304,7 +62274,7 @@ }, { "str": "matches", - "token_id": 6315, + "token_id": 6316, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62315,7 +62285,7 @@ }, { "str": "to", - "token_id": 6316, + "token_id": 6317, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62326,7 +62296,7 @@ }, { "str": "gain", - "token_id": 6317, + "token_id": 6318, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62337,7 +62307,7 @@ }, { "str": "most", - "token_id": 6318, + "token_id": 6319, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62348,7 +62318,7 @@ }, { "str": "points", - "token_id": 6319, + "token_id": 6320, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62359,7 +62329,7 @@ }, { "str": "for", - "token_id": 6320, + "token_id": 6321, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62370,7 +62340,7 @@ }, { "str": "victory", - "token_id": 6321, + "token_id": 6322, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62381,7 +62351,7 @@ }, { "str": ".", - "token_id": 6322, + "token_id": 6323, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62392,7 +62362,7 @@ }, { "str": "is", - "token_id": 6323, + "token_id": 6324, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62401,7 +62371,7 @@ }, { "str": "also", - "token_id": 6324, + "token_id": 6325, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62410,7 +62380,7 @@ }, { "str": "returning", - "token_id": 6325, + "token_id": 6326, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62419,7 +62389,7 @@ }, { "str": "is", - "token_id": 6326, + "token_id": 6327, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62431,7 +62401,7 @@ }, { "str": "known", - "token_id": 6327, + "token_id": 6328, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62443,7 +62413,7 @@ }, { "str": "as", - "token_id": 6328, + "token_id": 6329, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62455,7 +62425,7 @@ }, { "str": "is", - "token_id": 6329, + "token_id": 6330, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62467,7 +62437,7 @@ }, { "str": "in", - "token_id": 6330, + "token_id": 6331, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62479,7 +62449,7 @@ }, { "str": "a", - "token_id": 6331, + "token_id": 6332, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62491,7 +62461,7 @@ }, { "str": "different", - "token_id": 6332, + "token_id": 6333, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62503,7 +62473,7 @@ }, { "str": "region", - "token_id": 6333, + "token_id": 6334, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62515,7 +62485,7 @@ }, { "str": "known", - "token_id": 6334, + "token_id": 6335, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62524,7 +62494,7 @@ }, { "str": "as", - "token_id": 6335, + "token_id": 6336, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62533,7 +62503,7 @@ }, { "str": "'", - "token_id": 6336, + "token_id": 6337, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62542,7 +62512,7 @@ }, { "str": "'", - "token_id": 6337, + "token_id": 6338, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62551,7 +62521,7 @@ }, { "str": "splatlands", - "token_id": 6338, + "token_id": 6339, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62560,7 +62530,7 @@ }, { "str": "'", - "token_id": 6339, + "token_id": 6340, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62569,7 +62539,7 @@ }, { "str": "'", - "token_id": 6340, + "token_id": 6341, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62578,7 +62548,7 @@ }, { "str": ",", - "token_id": 6341, + "token_id": 6342, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62587,7 +62557,7 @@ }, { "str": "different", - "token_id": 6342, + "token_id": 6343, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62596,7 +62566,7 @@ }, { "str": "from", - "token_id": 6343, + "token_id": 6344, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62608,7 +62578,7 @@ }, { "str": "the", - "token_id": 6344, + "token_id": 6345, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62620,7 +62590,7 @@ }, { "str": "previous", - "token_id": 6345, + "token_id": 6346, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62632,7 +62602,7 @@ }, { "str": "games", - "token_id": 6346, + "token_id": 6347, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62644,7 +62614,7 @@ }, { "str": "'", - "token_id": 6347, + "token_id": 6348, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62656,7 +62626,7 @@ }, { "str": "hub", - "token_id": 6348, + "token_id": 6349, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62668,7 +62638,7 @@ }, { "str": "for", - "token_id": 6349, + "token_id": 6350, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62677,7 +62647,7 @@ }, { "str": "mode", - "token_id": 6350, + "token_id": 6351, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62688,7 +62658,7 @@ }, { "str": "of", - "token_id": 6351, + "token_id": 6352, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62699,7 +62669,7 @@ }, { "str": "is", - "token_id": 6352, + "token_id": 6353, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62708,7 +62678,7 @@ }, { "str": "in", - "token_id": 6353, + "token_id": 6354, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62719,7 +62689,7 @@ }, { "str": "a", - "token_id": 6354, + "token_id": 6355, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62730,7 +62700,7 @@ }, { "str": "new", - "token_id": 6355, + "token_id": 6356, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62741,7 +62711,7 @@ }, { "str": "location", - "token_id": 6356, + "token_id": 6357, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62752,7 +62722,7 @@ }, { "str": "will", - "token_id": 6357, + "token_id": 6358, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62761,7 +62731,7 @@ }, { "str": "[[", - "token_id": 6358, + "token_id": 6359, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62770,7 +62740,7 @@ }, { "str": "]]", - "token_id": 6359, + "token_id": 6360, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62779,7 +62749,7 @@ }, { "str": ",", - "token_id": 6360, + "token_id": 6361, "o_rev_id": 1106892286, "in": [ 1117591128 @@ -62790,7 +62760,7 @@ }, { "str": "assumed", - "token_id": 6361, + "token_id": 6362, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62799,7 +62769,7 @@ }, { "str": "to", - "token_id": 6362, + "token_id": 6363, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62808,7 +62778,7 @@ }, { "str": "long", - "token_id": 6363, + "token_id": 6364, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62817,7 +62787,7 @@ }, { "str": "be", - "token_id": 6364, + "token_id": 6365, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62826,7 +62796,7 @@ }, { "str": "near", - "token_id": 6365, + "token_id": 6366, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62835,7 +62805,7 @@ }, { "str": "-", - "token_id": 6366, + "token_id": 6367, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62844,7 +62814,7 @@ }, { "str": "extinct", - "token_id": 6367, + "token_id": 6368, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62853,7 +62823,7 @@ }, { "str": "[[", - "token_id": 6368, + "token_id": 6369, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62862,7 +62832,7 @@ }, { "str": "vertebrate", - "token_id": 6369, + "token_id": 6370, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62871,7 +62841,7 @@ }, { "str": "]]", - "token_id": 6370, + "token_id": 6371, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62880,7 +62850,7 @@ }, { "str": "within", - "token_id": 6371, + "token_id": 6372, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62889,7 +62859,7 @@ }, { "str": "the", - "token_id": 6372, + "token_id": 6373, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62898,7 +62868,7 @@ }, { "str": "game", - "token_id": 6373, + "token_id": 6374, "o_rev_id": 1106892286, "in": [], "out": [ @@ -62907,14 +62877,14 @@ }, { "str": "broadcast", - "token_id": 6374, + "token_id": 6375, "o_rev_id": 1106962223, "in": [], "out": [] }, { "str": "[[", - "token_id": 6375, + "token_id": 6376, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -62925,7 +62895,7 @@ }, { "str": "mammal", - "token_id": 6376, + "token_id": 6377, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -62936,7 +62906,7 @@ }, { "str": "]]", - "token_id": 6377, + "token_id": 6378, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -62947,7 +62917,7 @@ }, { "str": "s", - "token_id": 6378, + "token_id": 6379, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -62958,7 +62928,7 @@ }, { "str": "assumed", - "token_id": 6379, + "token_id": 6380, "o_rev_id": 1106996877, "in": [], "out": [ @@ -62967,7 +62937,7 @@ }, { "str": "to", - "token_id": 6380, + "token_id": 6381, "o_rev_id": 1106996877, "in": [], "out": [ @@ -62976,7 +62946,7 @@ }, { "str": "be", - "token_id": 6381, + "token_id": 6382, "o_rev_id": 1106996877, "in": [], "out": [ @@ -62985,7 +62955,7 @@ }, { "str": "long", - "token_id": 6382, + "token_id": 6383, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -62996,7 +62966,7 @@ }, { "str": "[[", - "token_id": 6383, + "token_id": 6384, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -63007,7 +62977,7 @@ }, { "str": "extinction", - "token_id": 6384, + "token_id": 6385, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -63018,7 +62988,7 @@ }, { "str": "|", - "token_id": 6385, + "token_id": 6386, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -63029,7 +62999,7 @@ }, { "str": "extinct", - "token_id": 6386, + "token_id": 6387, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -63040,7 +63010,7 @@ }, { "str": "]]", - "token_id": 6387, + "token_id": 6388, "o_rev_id": 1106996877, "in": [ 1117591128 @@ -63051,7 +63021,7 @@ }, { "str": "two", - "token_id": 6388, + "token_id": 6389, "o_rev_id": 1106997714, "in": [ 1117591128 @@ -63063,7 +63033,7 @@ }, { "str": "set", - "token_id": 6389, + "token_id": 6390, "o_rev_id": 1106997714, "in": [ 1117591128 @@ -63074,7 +63044,7 @@ }, { "str": "\"", - "token_id": 6390, + "token_id": 6391, "o_rev_id": 1106997714, "in": [ 1117591128 @@ -63086,7 +63056,7 @@ }, { "str": "\"", - "token_id": 6391, + "token_id": 6392, "o_rev_id": 1106997714, "in": [ 1117591128 @@ -63098,7 +63068,7 @@ }, { "str": "and", - "token_id": 6392, + "token_id": 6393, "o_rev_id": 1107004098, "in": [ 1117591128 @@ -63110,7 +63080,7 @@ }, { "str": "located", - "token_id": 6393, + "token_id": 6394, "o_rev_id": 1107004098, "in": [ 1117591128 @@ -63122,7 +63092,7 @@ }, { "str": "\"", - "token_id": 6394, + "token_id": 6395, "o_rev_id": 1107004098, "in": [ 1117591128 @@ -63134,7 +63104,7 @@ }, { "str": "known", - "token_id": 6395, + "token_id": 6396, "o_rev_id": 1107004098, "in": [ 1117591128 @@ -63146,7 +63116,7 @@ }, { "str": "as", - "token_id": 6396, + "token_id": 6397, "o_rev_id": 1107004098, "in": [ 1117591128 @@ -63158,7 +63128,7 @@ }, { "str": "\"", - "token_id": 6397, + "token_id": 6398, "o_rev_id": 1107004098, "in": [ 1117591128 @@ -63170,7 +63140,7 @@ }, { "str": "the", - "token_id": 6398, + "token_id": 6399, "o_rev_id": 1107004098, "in": [ 1117591128 @@ -63182,7 +63152,7 @@ }, { "str": "splatlands", - "token_id": 6399, + "token_id": 6400, "o_rev_id": 1107004098, "in": [ 1117591128 @@ -63194,7 +63164,7 @@ }, { "str": "|", - "token_id": 6400, + "token_id": 6401, "o_rev_id": 1107005318, "in": [], "out": [ @@ -63203,7 +63173,7 @@ }, { "str": "vertebrata", - "token_id": 6401, + "token_id": 6402, "o_rev_id": 1107005318, "in": [], "out": [ @@ -63212,7 +63182,7 @@ }, { "str": ".", - "token_id": 6402, + "token_id": 6403, "o_rev_id": 1107008931, "in": [ 1144952513, @@ -63226,7 +63196,7 @@ }, { "str": "at", - "token_id": 6403, + "token_id": 6404, "o_rev_id": 1107008931, "in": [ 1144952513, @@ -63240,7 +63210,7 @@ }, { "str": "the", - "token_id": 6404, + "token_id": 6405, "o_rev_id": 1107008931, "in": [ 1144952513 @@ -63252,7 +63222,7 @@ }, { "str": "same", - "token_id": 6405, + "token_id": 6406, "o_rev_id": 1107008931, "in": [ 1144952513, @@ -63266,7 +63236,7 @@ }, { "str": "time", - "token_id": 6406, + "token_id": 6407, "o_rev_id": 1107008931, "in": [ 1144952513, @@ -63280,7 +63250,7 @@ }, { "str": "to", - "token_id": 6407, + "token_id": 6408, "o_rev_id": 1107008931, "in": [ 1178773007 @@ -63291,7 +63261,7 @@ }, { "str": "before", - "token_id": 6408, + "token_id": 6409, "o_rev_id": 1107008931, "in": [ 1117591128 @@ -63302,21 +63272,21 @@ }, { "str": "-", - "token_id": 6409, + "token_id": 6410, "o_rev_id": 1107008931, "in": [], "out": [] }, { "str": "-", - "token_id": 6410, + "token_id": 6411, "o_rev_id": 1107008931, "in": [], "out": [] }, { "str": "like", - "token_id": 6411, + "token_id": 6412, "o_rev_id": 1107009550, "in": [ 1178773007 @@ -63327,7 +63297,7 @@ }, { "str": "its", - "token_id": 6412, + "token_id": 6413, "o_rev_id": 1107009550, "in": [], "out": [ @@ -63336,7 +63306,7 @@ }, { "str": "predecessors", - "token_id": 6413, + "token_id": 6414, "o_rev_id": 1107009550, "in": [], "out": [ @@ -63345,7 +63315,7 @@ }, { "str": ",", - "token_id": 6414, + "token_id": 6415, "o_rev_id": 1107009550, "in": [ 1178773007 @@ -63356,7 +63326,7 @@ }, { "str": "a", - "token_id": 6415, + "token_id": 6416, "o_rev_id": 1107009550, "in": [ 1178773007 @@ -63367,35 +63337,35 @@ }, { "str": "{{", - "token_id": 6416, + "token_id": 6417, "o_rev_id": 1107012865, "in": [], "out": [] }, { "str": "official", - "token_id": 6417, + "token_id": 6418, "o_rev_id": 1107012865, "in": [], "out": [] }, { "str": "website", - "token_id": 6418, + "token_id": 6419, "o_rev_id": 1107012865, "in": [], "out": [] }, { "str": "}}", - "token_id": 6419, + "token_id": 6420, "o_rev_id": 1107012865, "in": [], "out": [] }, { "str": "'", - "token_id": 6420, + "token_id": 6421, "o_rev_id": 1107037737, "in": [ 1117591128 @@ -63407,7 +63377,7 @@ }, { "str": "'", - "token_id": 6421, + "token_id": 6422, "o_rev_id": 1107037737, "in": [ 1117591128 @@ -63419,7 +63389,7 @@ }, { "str": "'", - "token_id": 6422, + "token_id": 6423, "o_rev_id": 1107037737, "in": [ 1117591128 @@ -63431,7 +63401,7 @@ }, { "str": "'", - "token_id": 6423, + "token_id": 6424, "o_rev_id": 1107037737, "in": [ 1117591128 @@ -63443,7 +63413,7 @@ }, { "str": "'", - "token_id": 6424, + "token_id": 6425, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63452,7 +63422,7 @@ }, { "str": "'", - "token_id": 6425, + "token_id": 6426, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63461,7 +63431,7 @@ }, { "str": "return", - "token_id": 6426, + "token_id": 6427, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63470,7 +63440,7 @@ }, { "str": "of", - "token_id": 6427, + "token_id": 6428, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63479,7 +63449,7 @@ }, { "str": "mammalians", - "token_id": 6428, + "token_id": 6429, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63488,7 +63458,7 @@ }, { "str": "'", - "token_id": 6429, + "token_id": 6430, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63497,7 +63467,7 @@ }, { "str": "'", - "token_id": 6430, + "token_id": 6431, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63506,7 +63476,7 @@ }, { "str": "'", - "token_id": 6431, + "token_id": 6432, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63515,7 +63485,7 @@ }, { "str": "'", - "token_id": 6432, + "token_id": 6433, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63524,7 +63494,7 @@ }, { "str": "'", - "token_id": 6433, + "token_id": 6434, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63533,7 +63503,7 @@ }, { "str": "'", - "token_id": 6434, + "token_id": 6435, "o_rev_id": 1107037737, "in": [], "out": [ @@ -63542,7 +63512,7 @@ }, { "str": "|", - "token_id": 6435, + "token_id": 6436, "o_rev_id": 1107112339, "in": [], "out": [ @@ -63551,7 +63521,7 @@ }, { "str": "off", - "token_id": 6436, + "token_id": 6437, "o_rev_id": 1107112339, "in": [], "out": [ @@ -63560,7 +63530,7 @@ }, { "str": "the", - "token_id": 6437, + "token_id": 6438, "o_rev_id": 1107112339, "in": [], "out": [ @@ -63569,7 +63539,7 @@ }, { "str": "hook", - "token_id": 6438, + "token_id": 6439, "o_rev_id": 1107112339, "in": [], "out": [ @@ -63578,35 +63548,35 @@ }, { "str": "was", - "token_id": 6439, + "token_id": 6440, "o_rev_id": 1107112339, "in": [], "out": [] }, { "str": "held", - "token_id": 6440, + "token_id": 6441, "o_rev_id": 1107112339, "in": [], "out": [] }, { "str": "on", - "token_id": 6441, + "token_id": 6442, "o_rev_id": 1107112339, "in": [], "out": [] }, { "str": "27", - "token_id": 6442, + "token_id": 6443, "o_rev_id": 1107112339, "in": [], "out": [] }, { "str": "&", - "token_id": 6443, + "token_id": 6444, "o_rev_id": 1107112339, "in": [], "out": [ @@ -63615,7 +63585,7 @@ }, { "str": "28", - "token_id": 6444, + "token_id": 6445, "o_rev_id": 1107112339, "in": [ 1202097960 @@ -63626,14 +63596,14 @@ }, { "str": "2022", - "token_id": 6445, + "token_id": 6446, "o_rev_id": 1107112339, "in": [], "out": [] }, { "str": "{{", - "token_id": 6446, + "token_id": 6447, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63642,7 +63612,7 @@ }, { "str": "better", - "token_id": 6447, + "token_id": 6448, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63651,7 +63621,7 @@ }, { "str": "source", - "token_id": 6448, + "token_id": 6449, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63660,7 +63630,7 @@ }, { "str": "needed", - "token_id": 6449, + "token_id": 6450, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63669,7 +63639,7 @@ }, { "str": "|", - "token_id": 6450, + "token_id": 6451, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63678,7 +63648,7 @@ }, { "str": "reason", - "token_id": 6451, + "token_id": 6452, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63687,7 +63657,7 @@ }, { "str": "=", - "token_id": 6452, + "token_id": 6453, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63696,7 +63666,7 @@ }, { "str": "reliable", - "token_id": 6453, + "token_id": 6454, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63705,7 +63675,7 @@ }, { "str": ",", - "token_id": 6454, + "token_id": 6455, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63714,7 +63684,7 @@ }, { "str": "secondary", - "token_id": 6455, + "token_id": 6456, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63723,7 +63693,7 @@ }, { "str": "sources", - "token_id": 6456, + "token_id": 6457, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63732,7 +63702,7 @@ }, { "str": "are", - "token_id": 6457, + "token_id": 6458, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63741,7 +63711,7 @@ }, { "str": "preferred", - "token_id": 6458, + "token_id": 6459, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63750,7 +63720,7 @@ }, { "str": ".", - "token_id": 6459, + "token_id": 6460, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63759,7 +63729,7 @@ }, { "str": "|", - "token_id": 6460, + "token_id": 6461, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63768,7 +63738,7 @@ }, { "str": "date", - "token_id": 6461, + "token_id": 6462, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63777,7 +63747,7 @@ }, { "str": "=", - "token_id": 6462, + "token_id": 6463, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63786,7 +63756,7 @@ }, { "str": "august", - "token_id": 6463, + "token_id": 6464, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63795,7 +63765,7 @@ }, { "str": "2022", - "token_id": 6464, + "token_id": 6465, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63804,7 +63774,7 @@ }, { "str": "}}", - "token_id": 6465, + "token_id": 6466, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63813,7 +63783,7 @@ }, { "str": "{{", - "token_id": 6466, + "token_id": 6467, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63822,7 +63792,7 @@ }, { "str": "better", - "token_id": 6467, + "token_id": 6468, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63831,7 +63801,7 @@ }, { "str": "source", - "token_id": 6468, + "token_id": 6469, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63840,7 +63810,7 @@ }, { "str": "needed", - "token_id": 6469, + "token_id": 6470, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63849,7 +63819,7 @@ }, { "str": "|", - "token_id": 6470, + "token_id": 6471, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63858,7 +63828,7 @@ }, { "str": "reason", - "token_id": 6471, + "token_id": 6472, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63867,7 +63837,7 @@ }, { "str": "=", - "token_id": 6472, + "token_id": 6473, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63876,7 +63846,7 @@ }, { "str": "reliable", - "token_id": 6473, + "token_id": 6474, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63885,7 +63855,7 @@ }, { "str": ",", - "token_id": 6474, + "token_id": 6475, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63894,7 +63864,7 @@ }, { "str": "secondary", - "token_id": 6475, + "token_id": 6476, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63903,7 +63873,7 @@ }, { "str": "sources", - "token_id": 6476, + "token_id": 6477, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63912,7 +63882,7 @@ }, { "str": "are", - "token_id": 6477, + "token_id": 6478, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63921,7 +63891,7 @@ }, { "str": "preferred", - "token_id": 6478, + "token_id": 6479, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63930,7 +63900,7 @@ }, { "str": ".", - "token_id": 6479, + "token_id": 6480, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63939,7 +63909,7 @@ }, { "str": "|", - "token_id": 6480, + "token_id": 6481, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63948,7 +63918,7 @@ }, { "str": "date", - "token_id": 6481, + "token_id": 6482, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63957,7 +63927,7 @@ }, { "str": "=", - "token_id": 6482, + "token_id": 6483, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63966,7 +63936,7 @@ }, { "str": "august", - "token_id": 6483, + "token_id": 6484, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63975,7 +63945,7 @@ }, { "str": "2022", - "token_id": 6484, + "token_id": 6485, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63984,7 +63954,7 @@ }, { "str": "}}", - "token_id": 6485, + "token_id": 6486, "o_rev_id": 1107201992, "in": [], "out": [ @@ -63993,392 +63963,392 @@ }, { "str": "world", - "token_id": 6486, + "token_id": 6487, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "premiere", - "token_id": 6487, + "token_id": 6488, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "<", - "token_id": 6488, + "token_id": 6489, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "ref", - "token_id": 6489, + "token_id": 6490, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "name", - "token_id": 6490, + "token_id": 6491, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6491, + "token_id": 6492, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "\"", - "token_id": 6492, + "token_id": 6493, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 6493, + "token_id": 6494, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "everything", - "token_id": 6494, + "token_id": 6495, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "\"", - "token_id": 6495, + "token_id": 6496, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ">", - "token_id": 6496, + "token_id": 6497, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "{{", - "token_id": 6497, + "token_id": 6498, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "cite", - "token_id": 6498, + "token_id": 6499, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "web", - "token_id": 6499, + "token_id": 6500, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6500, + "token_id": 6501, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "last1", - "token_id": 6501, + "token_id": 6502, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6502, + "token_id": 6503, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "ne", - "token_id": 6503, + "token_id": 6504, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6504, + "token_id": 6505, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "first1", - "token_id": 6505, + "token_id": 6506, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6506, + "token_id": 6507, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "brian", - "token_id": 6507, + "token_id": 6508, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6508, + "token_id": 6509, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "title", - "token_id": 6509, + "token_id": 6510, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6510, + "token_id": 6511, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6511, + "token_id": 6512, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "3", - "token_id": 6512, + "token_id": 6513, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ":", - "token_id": 6513, + "token_id": 6514, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 6514, + "token_id": 6515, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "world", - "token_id": 6515, + "token_id": 6516, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "premiere", - "token_id": 6516, + "token_id": 6517, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "results", - "token_id": 6517, + "token_id": 6518, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6518, + "token_id": 6519, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "url", - "token_id": 6519, + "token_id": 6520, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6520, + "token_id": 6521, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "https", - "token_id": 6521, + "token_id": 6522, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ":", - "token_id": 6522, + "token_id": 6523, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6523, + "token_id": 6524, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6524, + "token_id": 6525, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "nintendoeverything", - "token_id": 6525, + "token_id": 6526, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ".", - "token_id": 6526, + "token_id": 6527, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "com", - "token_id": 6527, + "token_id": 6528, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6528, + "token_id": 6529, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6529, + "token_id": 6530, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6530, + "token_id": 6531, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "3", - "token_id": 6531, + "token_id": 6532, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6532, + "token_id": 6533, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 6533, + "token_id": 6534, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6534, + "token_id": 6535, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "world", - "token_id": 6535, + "token_id": 6536, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6536, + "token_id": 6537, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "premiere", - "token_id": 6537, + "token_id": 6538, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6538, + "token_id": 6539, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "results", - "token_id": 6539, + "token_id": 6540, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6540, + "token_id": 6541, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6541, + "token_id": 6542, "o_rev_id": 1107214758, "in": [], "out": [ @@ -64387,7 +64357,7 @@ }, { "str": "website", - "token_id": 6542, + "token_id": 6543, "o_rev_id": 1107214758, "in": [], "out": [ @@ -64396,7 +64366,7 @@ }, { "str": "=", - "token_id": 6543, + "token_id": 6544, "o_rev_id": 1107214758, "in": [], "out": [ @@ -64405,7 +64375,7 @@ }, { "str": "nintendo", - "token_id": 6544, + "token_id": 6545, "o_rev_id": 1107214758, "in": [ 1202097960 @@ -64416,49 +64386,49 @@ }, { "str": "everything", - "token_id": 6545, + "token_id": 6546, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6546, + "token_id": 6547, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "access", - "token_id": 6547, + "token_id": 6548, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6548, + "token_id": 6549, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "date", - "token_id": 6549, + "token_id": 6550, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6550, + "token_id": 6551, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "28", - "token_id": 6551, + "token_id": 6552, "o_rev_id": 1107214758, "in": [], "out": [ @@ -64467,7 +64437,7 @@ }, { "str": "august", - "token_id": 6552, + "token_id": 6553, "o_rev_id": 1107214758, "in": [], "out": [ @@ -64476,518 +64446,518 @@ }, { "str": "2022", - "token_id": 6553, + "token_id": 6554, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "}}", - "token_id": 6554, + "token_id": 6555, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "<", - "token_id": 6555, + "token_id": 6556, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6556, + "token_id": 6557, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "ref", - "token_id": 6557, + "token_id": 6558, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ">", - "token_id": 6558, + "token_id": 6559, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "<", - "token_id": 6559, + "token_id": 6560, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "ref", - "token_id": 6560, + "token_id": 6561, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "name", - "token_id": 6561, + "token_id": 6562, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6562, + "token_id": 6563, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "\"", - "token_id": 6563, + "token_id": 6564, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "akiba", - "token_id": 6564, + "token_id": 6565, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "\"", - "token_id": 6565, + "token_id": 6566, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ">", - "token_id": 6566, + "token_id": 6567, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "{{", - "token_id": 6567, + "token_id": 6568, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "cite", - "token_id": 6568, + "token_id": 6569, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "web", - "token_id": 6569, + "token_id": 6570, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6570, + "token_id": 6571, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "last1", - "token_id": 6571, + "token_id": 6572, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6572, + "token_id": 6573, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "shirru", - "token_id": 6573, + "token_id": 6574, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6574, + "token_id": 6575, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "first1", - "token_id": 6575, + "token_id": 6576, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6576, + "token_id": 6577, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "frederico", - "token_id": 6577, + "token_id": 6578, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6578, + "token_id": 6579, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "title", - "token_id": 6579, + "token_id": 6580, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6580, + "token_id": 6581, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6581, + "token_id": 6582, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "3", - "token_id": 6582, + "token_id": 6583, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "–", - "token_id": 6583, + "token_id": 6584, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "prime", - "token_id": 6584, + "token_id": 6585, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "impressioni", - "token_id": 6585, + "token_id": 6586, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "dallo", - "token_id": 6586, + "token_id": 6587, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 6587, + "token_id": 6588, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "world", - "token_id": 6588, + "token_id": 6589, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "premiere", - "token_id": 6589, + "token_id": 6590, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6590, + "token_id": 6591, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "url", - "token_id": 6591, + "token_id": 6592, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6592, + "token_id": 6593, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "https", - "token_id": 6593, + "token_id": 6594, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ":", - "token_id": 6594, + "token_id": 6595, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6595, + "token_id": 6596, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6596, + "token_id": 6597, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "www", - "token_id": 6597, + "token_id": 6598, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ".", - "token_id": 6598, + "token_id": 6599, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "akibagamers", - "token_id": 6599, + "token_id": 6600, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": ".", - "token_id": 6600, + "token_id": 6601, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "it", - "token_id": 6601, + "token_id": 6602, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6602, + "token_id": 6603, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "28", - "token_id": 6603, + "token_id": 6604, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6604, + "token_id": 6605, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "08", - "token_id": 6605, + "token_id": 6606, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6606, + "token_id": 6607, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "2022", - "token_id": 6607, + "token_id": 6608, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6608, + "token_id": 6609, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6609, + "token_id": 6610, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6610, + "token_id": 6611, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "3", - "token_id": 6611, + "token_id": 6612, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6612, + "token_id": 6613, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "prime", - "token_id": 6613, + "token_id": 6614, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6614, + "token_id": 6615, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "impressioni", - "token_id": 6615, + "token_id": 6616, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6616, + "token_id": 6617, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 6617, + "token_id": 6618, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6618, + "token_id": 6619, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "world", - "token_id": 6619, + "token_id": 6620, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "-", - "token_id": 6620, + "token_id": 6621, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "premiere", - "token_id": 6621, + "token_id": 6622, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "/", - "token_id": 6622, + "token_id": 6623, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "|", - "token_id": 6623, + "token_id": 6624, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "website", - "token_id": 6624, + "token_id": 6625, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "=", - "token_id": 6625, + "token_id": 6626, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "akiba", - "token_id": 6626, + "token_id": 6627, "o_rev_id": 1107214758, "in": [], "out": [ @@ -64996,7 +64966,7 @@ }, { "str": "games", - "token_id": 6627, + "token_id": 6628, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65005,14 +64975,14 @@ }, { "str": "|", - "token_id": 6628, + "token_id": 6629, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "access", - "token_id": 6629, + "token_id": 6630, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65021,14 +64991,14 @@ }, { "str": "-", - "token_id": 6630, + "token_id": 6631, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "date", - "token_id": 6631, + "token_id": 6632, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65037,14 +65007,14 @@ }, { "str": "=", - "token_id": 6632, + "token_id": 6633, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "28", - "token_id": 6633, + "token_id": 6634, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65053,7 +65023,7 @@ }, { "str": "august", - "token_id": 6634, + "token_id": 6635, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65062,7 +65032,7 @@ }, { "str": "2022", - "token_id": 6635, + "token_id": 6636, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65071,7 +65041,7 @@ }, { "str": "}}", - "token_id": 6636, + "token_id": 6637, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65080,7 +65050,7 @@ }, { "str": "<", - "token_id": 6637, + "token_id": 6638, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65089,14 +65059,14 @@ }, { "str": "/", - "token_id": 6638, + "token_id": 6639, "o_rev_id": 1107214758, "in": [], "out": [] }, { "str": "ref", - "token_id": 6639, + "token_id": 6640, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65105,7 +65075,7 @@ }, { "str": ">", - "token_id": 6640, + "token_id": 6641, "o_rev_id": 1107214758, "in": [], "out": [ @@ -65114,14 +65084,14 @@ }, { "str": "techradar", - "token_id": 6641, + "token_id": 6642, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "|", - "token_id": 6642, + "token_id": 6643, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65130,7 +65100,7 @@ }, { "str": "last", - "token_id": 6643, + "token_id": 6644, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65139,7 +65109,7 @@ }, { "str": "=", - "token_id": 6644, + "token_id": 6645, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65148,14 +65118,14 @@ }, { "str": "hood", - "token_id": 6645, + "token_id": 6646, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "|", - "token_id": 6646, + "token_id": 6647, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65164,7 +65134,7 @@ }, { "str": "first", - "token_id": 6647, + "token_id": 6648, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65173,7 +65143,7 @@ }, { "str": "=", - "token_id": 6648, + "token_id": 6649, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65182,163 +65152,165 @@ }, { "str": "rhys", - "token_id": 6649, + "token_id": 6650, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "|", - "token_id": 6650, + "token_id": 6651, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "last2", - "token_id": 6651, + "token_id": 6652, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "=", - "token_id": 6652, + "token_id": 6653, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "boyle", - "token_id": 6653, + "token_id": 6654, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "|", - "token_id": 6654, + "token_id": 6655, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "first2", - "token_id": 6655, + "token_id": 6656, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "=", - "token_id": 6656, + "token_id": 6657, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "emma", - "token_id": 6657, + "token_id": 6658, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "|", - "token_id": 6658, + "token_id": 6659, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "last3", - "token_id": 6659, + "token_id": 6660, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "=", - "token_id": 6660, + "token_id": 6661, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "stockdale", - "token_id": 6661, + "token_id": 6662, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "|", - "token_id": 6662, + "token_id": 6663, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "first3", - "token_id": 6663, + "token_id": 6664, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "=", - "token_id": 6664, + "token_id": 6665, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "henry", - "token_id": 6665, + "token_id": 6666, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "|", - "token_id": 6666, + "token_id": 6667, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "date", - "token_id": 6667, + "token_id": 6668, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "=", - "token_id": 6668, + "token_id": 6669, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "2022", - "token_id": 6669, + "token_id": 6670, "o_rev_id": 1107354307, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 6670, + "token_id": 6671, "o_rev_id": 1107354307, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "02", - "token_id": 6671, + "token_id": 6672, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65347,7 +65319,7 @@ }, { "str": "-", - "token_id": 6672, + "token_id": 6673, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65356,182 +65328,182 @@ }, { "str": "20", - "token_id": 6673, + "token_id": 6674, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": ":", - "token_id": 6674, + "token_id": 6675, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": ",", - "token_id": 6675, + "token_id": 6676, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "trailers", - "token_id": 6676, + "token_id": 6677, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": ",", - "token_id": 6677, + "token_id": 6678, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "news", - "token_id": 6678, + "token_id": 6679, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "and", - "token_id": 6679, + "token_id": 6680, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "everything", - "token_id": 6680, + "token_id": 6681, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "you", - "token_id": 6681, + "token_id": 6682, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "need", - "token_id": 6682, + "token_id": 6683, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "to", - "token_id": 6683, + "token_id": 6684, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "know", - "token_id": 6684, + "token_id": 6685, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "techradar", - "token_id": 6685, + "token_id": 6686, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "news", - "token_id": 6686, + "token_id": 6687, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "/", - "token_id": 6687, + "token_id": 6688, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6688, + "token_id": 6689, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "3", - "token_id": 6689, + "token_id": 6690, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "-", - "token_id": 6690, + "token_id": 6691, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "release", - "token_id": 6691, + "token_id": 6692, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "-", - "token_id": 6692, + "token_id": 6693, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "date", - "token_id": 6693, + "token_id": 6694, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "-", - "token_id": 6694, + "token_id": 6695, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "trailer", - "token_id": 6695, + "token_id": 6696, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "-", - "token_id": 6696, + "token_id": 6697, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "news", - "token_id": 6697, + "token_id": 6698, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "08", - "token_id": 6698, + "token_id": 6699, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65540,7 +65512,7 @@ }, { "str": "29", - "token_id": 6699, + "token_id": 6700, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65549,7 +65521,7 @@ }, { "str": "techradar", - "token_id": 6700, + "token_id": 6701, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65558,14 +65530,14 @@ }, { "str": "|", - "token_id": 6701, + "token_id": 6702, "o_rev_id": 1107354307, "in": [], "out": [] }, { "str": "language", - "token_id": 6702, + "token_id": 6703, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65574,7 +65546,7 @@ }, { "str": "=", - "token_id": 6703, + "token_id": 6704, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65583,7 +65555,7 @@ }, { "str": "en", - "token_id": 6704, + "token_id": 6705, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65592,7 +65564,7 @@ }, { "str": "techradar", - "token_id": 6705, + "token_id": 6706, "o_rev_id": 1107354307, "in": [], "out": [ @@ -65601,7 +65573,7 @@ }, { "str": "will", - "token_id": 6706, + "token_id": 6707, "o_rev_id": 1107354645, "in": [], "out": [ @@ -65610,7 +65582,7 @@ }, { "str": "be", - "token_id": 6707, + "token_id": 6708, "o_rev_id": 1107354645, "in": [], "out": [ @@ -65619,21 +65591,21 @@ }, { "str": "carrying", - "token_id": 6708, + "token_id": 6709, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6709, + "token_id": 6710, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "last", - "token_id": 6710, + "token_id": 6711, "o_rev_id": 1107435919, "in": [], "out": [ @@ -65642,7 +65614,7 @@ }, { "str": "=", - "token_id": 6711, + "token_id": 6712, "o_rev_id": 1107435919, "in": [], "out": [ @@ -65651,7 +65623,7 @@ }, { "str": "humphries", - "token_id": 6712, + "token_id": 6713, "o_rev_id": 1107435919, "in": [], "out": [ @@ -65660,7 +65632,7 @@ }, { "str": "|", - "token_id": 6713, + "token_id": 6714, "o_rev_id": 1107435919, "in": [], "out": [ @@ -65669,7 +65641,7 @@ }, { "str": "first", - "token_id": 6714, + "token_id": 6715, "o_rev_id": 1107435919, "in": [], "out": [ @@ -65678,14 +65650,14 @@ }, { "str": "=", - "token_id": 6715, + "token_id": 6716, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "matthew", - "token_id": 6716, + "token_id": 6717, "o_rev_id": 1107435919, "in": [], "out": [ @@ -65694,42 +65666,42 @@ }, { "str": "|", - "token_id": 6717, + "token_id": 6718, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "date", - "token_id": 6718, + "token_id": 6719, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6719, + "token_id": 6720, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "2022", - "token_id": 6720, + "token_id": 6721, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6721, + "token_id": 6722, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "07", - "token_id": 6722, + "token_id": 6723, "o_rev_id": 1107435919, "in": [], "out": [ @@ -65738,14 +65710,14 @@ }, { "str": "-", - "token_id": 6723, + "token_id": 6724, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "06", - "token_id": 6724, + "token_id": 6725, "o_rev_id": 1107435919, "in": [], "out": [ @@ -65754,364 +65726,364 @@ }, { "str": "name", - "token_id": 6725, + "token_id": 6726, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6726, + "token_id": 6727, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "\"", - "token_id": 6727, + "token_id": 6728, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "nlifepremiere", - "token_id": 6728, + "token_id": 6729, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "\"", - "token_id": 6729, + "token_id": 6730, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6730, + "token_id": 6731, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "url", - "token_id": 6731, + "token_id": 6732, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6732, + "token_id": 6733, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "https", - "token_id": 6733, + "token_id": 6734, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": ":", - "token_id": 6734, + "token_id": 6735, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "/", - "token_id": 6735, + "token_id": 6736, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "/", - "token_id": 6736, + "token_id": 6737, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "www", - "token_id": 6737, + "token_id": 6738, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": ".", - "token_id": 6738, + "token_id": 6739, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 6739, + "token_id": 6740, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": ".", - "token_id": 6740, + "token_id": 6741, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "com", - "token_id": 6741, + "token_id": 6742, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "/", - "token_id": 6742, + "token_id": 6743, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "news", - "token_id": 6743, + "token_id": 6744, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "/", - "token_id": 6744, + "token_id": 6745, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "2022", - "token_id": 6745, + "token_id": 6746, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "/", - "token_id": 6746, + "token_id": 6747, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "08", - "token_id": 6747, + "token_id": 6748, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "/", - "token_id": 6748, + "token_id": 6749, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 6749, + "token_id": 6750, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6750, + "token_id": 6751, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "3s", - "token_id": 6751, + "token_id": 6752, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6752, + "token_id": 6753, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "first", - "token_id": 6753, + "token_id": 6754, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6754, + "token_id": 6755, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 6755, + "token_id": 6756, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6756, + "token_id": 6757, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "will", - "token_id": 6757, + "token_id": 6758, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6758, + "token_id": 6759, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "be", - "token_id": 6759, + "token_id": 6760, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6760, + "token_id": 6761, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "playable", - "token_id": 6761, + "token_id": 6762, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6762, + "token_id": 6763, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "later", - "token_id": 6763, + "token_id": 6764, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6764, + "token_id": 6765, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "this", - "token_id": 6765, + "token_id": 6766, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6766, + "token_id": 6767, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "month", - "token_id": 6767, + "token_id": 6768, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6768, + "token_id": 6769, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "in", - "token_id": 6769, + "token_id": 6770, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6770, + "token_id": 6771, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "free", - "token_id": 6771, + "token_id": 6772, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6772, + "token_id": 6773, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "demo", - "token_id": 6773, + "token_id": 6774, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6774, + "token_id": 6775, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "title", - "token_id": 6775, + "token_id": 6776, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6776, + "token_id": 6777, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -66122,21 +66094,21 @@ }, { "str": "splatoon", - "token_id": 6777, + "token_id": 6778, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "3", - "token_id": 6778, + "token_id": 6779, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "'", - "token_id": 6779, + "token_id": 6780, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -66147,7 +66119,7 @@ }, { "str": "s", - "token_id": 6780, + "token_id": 6781, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -66158,7 +66130,7 @@ }, { "str": "first", - "token_id": 6781, + "token_id": 6782, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -66169,7 +66141,7 @@ }, { "str": "splatfest", - "token_id": 6782, + "token_id": 6783, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -66180,63 +66152,67 @@ }, { "str": "will", - "token_id": 6783, + "token_id": 6784, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "be", - "token_id": 6784, + "token_id": 6785, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "playable", - "token_id": 6785, + "token_id": 6786, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "later", - "token_id": 6786, + "token_id": 6787, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "this", - "token_id": 6787, + "token_id": 6788, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "month", - "token_id": 6788, + "token_id": 6789, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "in", - "token_id": 6789, + "token_id": 6790, "o_rev_id": 1107435919, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "free", - "token_id": 6790, + "token_id": 6791, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "demo", - "token_id": 6791, + "token_id": 6792, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -66247,218 +66223,210 @@ }, { "str": "|", - "token_id": 6792, + "token_id": 6793, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "last", - "token_id": 6793, + "token_id": 6794, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6794, + "token_id": 6795, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "hagues", - "token_id": 6795, + "token_id": 6796, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6796, + "token_id": 6797, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "first", - "token_id": 6797, + "token_id": 6798, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6798, + "token_id": 6799, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "alana", - "token_id": 6799, + "token_id": 6800, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6800, + "token_id": 6801, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "date", - "token_id": 6801, + "token_id": 6802, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6802, + "token_id": 6803, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "10", - "token_id": 6803, + "token_id": 6804, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "august", - "token_id": 6804, + "token_id": 6805, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "2022", - "token_id": 6805, + "token_id": 6806, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6806, + "token_id": 6807, "o_rev_id": 1107435919, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "access", - "token_id": 6807, + "token_id": 6808, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6808, + "token_id": 6809, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "date", - "token_id": 6809, + "token_id": 6810, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6810, + "token_id": 6811, "o_rev_id": 1107435919, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "29", - "token_id": 6811, + "token_id": 6812, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "august", - "token_id": 6812, + "token_id": 6813, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "2022", - "token_id": 6813, + "token_id": 6814, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6814, + "token_id": 6815, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "language", - "token_id": 6815, + "token_id": 6816, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6816, + "token_id": 6817, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "en", - "token_id": 6817, + "token_id": 6818, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6818, + "token_id": 6819, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "website", - "token_id": 6819, + "token_id": 6820, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6820, + "token_id": 6821, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 6821, + "token_id": 6822, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -66469,7 +66437,7 @@ }, { "str": "life", - "token_id": 6822, + "token_id": 6823, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -66480,18 +66448,14 @@ }, { "str": "|", - "token_id": 6823, + "token_id": 6824, "o_rev_id": 1107435919, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "publisher", - "token_id": 6824, + "token_id": 6825, "o_rev_id": 1107435919, "in": [], "out": [ @@ -66500,7 +66464,7 @@ }, { "str": "=", - "token_id": 6825, + "token_id": 6826, "o_rev_id": 1107435919, "in": [], "out": [ @@ -66509,7 +66473,7 @@ }, { "str": "hookshot", - "token_id": 6826, + "token_id": 6827, "o_rev_id": 1107435919, "in": [], "out": [ @@ -66518,7 +66482,7 @@ }, { "str": "media", - "token_id": 6827, + "token_id": 6828, "o_rev_id": 1107435919, "in": [], "out": [ @@ -66527,7 +66491,7 @@ }, { "str": "|", - "token_id": 6828, + "token_id": 6829, "o_rev_id": 1107435919, "in": [], "out": [ @@ -66536,27 +66500,20 @@ }, { "str": "archive", - "token_id": 6829, - "o_rev_id": 1107435919, - "in": [], - "out": [] - }, - { - "str": "-", "token_id": 6830, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "url", + "str": "-", "token_id": 6831, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "=", + "str": "url", "token_id": 6832, "o_rev_id": 1107435919, "in": [ @@ -66567,21 +66524,21 @@ ] }, { - "str": "https", + "str": "=", "token_id": 6833, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": ":", + "str": "https", "token_id": 6834, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": ":", "token_id": 6835, "o_rev_id": 1107435919, "in": [], @@ -66595,91 +66552,91 @@ "out": [] }, { - "str": "web", + "str": "/", "token_id": 6837, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": ".", + "str": "web", "token_id": 6838, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "archive", + "str": ".", "token_id": 6839, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": ".", + "str": "archive", "token_id": 6840, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "org", + "str": ".", "token_id": 6841, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": "org", "token_id": 6842, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "web", + "str": "/", "token_id": 6843, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": "web", "token_id": 6844, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "20220822234837", + "str": "/", "token_id": 6845, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": "20220822234837", "token_id": 6846, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "https", + "str": "/", "token_id": 6847, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": ":", + "str": "https", "token_id": 6848, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": ":", "token_id": 6849, "o_rev_id": 1107435919, "in": [], @@ -66693,293 +66650,296 @@ "out": [] }, { - "str": "www", + "str": "/", "token_id": 6851, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": ".", + "str": "www", "token_id": 6852, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "nintendolife", + "str": ".", "token_id": 6853, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": ".", + "str": "nintendolife", "token_id": 6854, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "com", + "str": ".", "token_id": 6855, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": "com", "token_id": 6856, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "news", + "str": "/", "token_id": 6857, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": "news", "token_id": 6858, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "2022", + "str": "/", "token_id": 6859, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": "2022", "token_id": 6860, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "08", + "str": "/", "token_id": 6861, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "/", + "str": "08", "token_id": 6862, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "splatoon", + "str": "/", "token_id": 6863, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "splatoon", "token_id": 6864, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "3s", + "str": "-", "token_id": 6865, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "3s", "token_id": 6866, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "first", + "str": "-", "token_id": 6867, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "first", "token_id": 6868, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "splatfest", + "str": "-", "token_id": 6869, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "splatfest", "token_id": 6870, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "will", + "str": "-", "token_id": 6871, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "will", "token_id": 6872, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "be", + "str": "-", "token_id": 6873, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "be", "token_id": 6874, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "playable", + "str": "-", "token_id": 6875, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "playable", "token_id": 6876, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "later", + "str": "-", "token_id": 6877, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "later", "token_id": 6878, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "this", + "str": "-", "token_id": 6879, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "this", "token_id": 6880, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "month", + "str": "-", "token_id": 6881, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "month", "token_id": 6882, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "in", + "str": "-", "token_id": 6883, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "in", "token_id": 6884, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "free", + "str": "-", "token_id": 6885, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "free", "token_id": 6886, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "demo", + "str": "-", "token_id": 6887, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "|", + "str": "demo", "token_id": 6888, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "archive", + "str": "|", "token_id": 6889, "o_rev_id": 1107435919, "in": [], "out": [] }, { - "str": "-", + "str": "archive", "token_id": 6890, "o_rev_id": 1107435919, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { - "str": "date", + "str": "-", "token_id": 6891, "o_rev_id": 1107435919, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 6892, + "o_rev_id": 1107435919, "in": [ 1202097960 ], @@ -66989,78 +66949,70 @@ }, { "str": "=", - "token_id": 6892, + "token_id": 6893, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "22", - "token_id": 6893, + "token_id": 6894, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "august", - "token_id": 6894, + "token_id": 6895, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "2022", - "token_id": 6895, + "token_id": 6896, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "|", - "token_id": 6896, + "token_id": 6897, "o_rev_id": 1107435919, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "url", - "token_id": 6897, + "token_id": 6898, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "-", - "token_id": 6898, + "token_id": 6899, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "status", - "token_id": 6899, + "token_id": 6900, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "=", - "token_id": 6900, + "token_id": 6901, "o_rev_id": 1107435919, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "live", - "token_id": 6901, + "token_id": 6902, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -67071,21 +67023,21 @@ }, { "str": "}}", - "token_id": 6902, + "token_id": 6903, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "<", - "token_id": 6903, + "token_id": 6904, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "/", - "token_id": 6904, + "token_id": 6905, "o_rev_id": 1107435919, "in": [ 1202097960 @@ -67096,34 +67048,27 @@ }, { "str": "ref", - "token_id": 6905, + "token_id": 6906, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": ">", - "token_id": 6906, + "token_id": 6907, "o_rev_id": 1107435919, "in": [], "out": [] }, { "str": "amiibo", - "token_id": 6907, + "token_id": 6908, "o_rev_id": 1107435919, "in": [], "out": [ 1107638806 ] }, - { - "str": "can", - "token_id": 6908, - "o_rev_id": 1107435919, - "in": [], - "out": [] - }, { "str": "<", "token_id": 6909, @@ -67678,8 +67623,12 @@ "str": "2022", "token_id": 6987, "o_rev_id": 1107435919, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", @@ -67703,8 +67652,12 @@ "str": "-", "token_id": 6990, "o_rev_id": 1107435919, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "status", @@ -68137,12 +68090,8 @@ "str": "last", "token_id": 7052, "o_rev_id": 1107435919, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "=", @@ -68197,12 +68146,8 @@ "str": "date", "token_id": 7060, "o_rev_id": 1107435919, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "=", @@ -71240,12 +71185,8 @@ "str": "salmon", "token_id": 7423, "o_rev_id": 1109252166, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "\"", @@ -71469,9 +71410,11 @@ "str": "september", "token_id": 7448, "o_rev_id": 1109277930, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1140535097 + 1202071552 ] }, { @@ -71487,8 +71430,12 @@ "str": "2022", "token_id": 7450, "o_rev_id": 1109277930, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "at", @@ -71896,9 +71843,7 @@ "token_id": 7504, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", @@ -71975,9 +71920,7 @@ "token_id": 7515, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "]]", @@ -72568,14 +72511,18 @@ "token_id": 7592, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "<", "token_id": 7593, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "/", @@ -72598,7 +72545,9 @@ "token_id": 7596, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "|", @@ -73161,8 +73110,12 @@ "str": "2022", "token_id": 7668, "o_rev_id": 1109450972, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "}}", @@ -73178,7 +73131,9 @@ "token_id": 7670, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "/", @@ -73201,7 +73156,9 @@ "token_id": 7673, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "|", @@ -73392,8 +73349,12 @@ "str": "date", "token_id": 7699, "o_rev_id": 1109450972, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", @@ -73616,11 +73577,9 @@ "str": "nintendo", "token_id": 7731, "o_rev_id": 1109450972, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552 + 1351743164 ] }, { @@ -73714,9 +73673,7 @@ "token_id": 7742, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", @@ -73737,9 +73694,7 @@ "token_id": 7745, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "+", @@ -73783,18 +73738,14 @@ "token_id": 7751, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "september", "token_id": 7752, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "2022", @@ -74601,8 +74552,12 @@ "str": "2022", "token_id": 7862, "o_rev_id": 1109450972, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", @@ -74619,8 +74574,12 @@ "str": "url", "token_id": 7864, "o_rev_id": 1109450972, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", @@ -74964,14 +74923,18 @@ "token_id": 7910, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "<", "token_id": 7911, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "/", @@ -74994,7 +74957,9 @@ "token_id": 7914, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "|", @@ -75400,9 +75365,7 @@ "token_id": 7970, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "’", @@ -75467,27 +75430,21 @@ "token_id": 7979, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "its", "token_id": 7980, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "single", "token_id": 7981, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "-", @@ -75557,9 +75514,7 @@ "token_id": 7991, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", @@ -75580,9 +75535,7 @@ "token_id": 7994, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "]]", @@ -75619,17 +75572,17 @@ "token_id": 7999, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "september", "token_id": 8000, "o_rev_id": 1109450972, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1140535097 + 1202071552 ] }, { @@ -75637,23 +75590,25 @@ "token_id": 8001, "o_rev_id": 1109450972, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "}}", "token_id": 8002, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "<", "token_id": 8003, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "/", @@ -75676,7 +75631,9 @@ "token_id": 8006, "o_rev_id": 1109450972, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "'", @@ -76755,18 +76712,22 @@ "str": "splatoon", "token_id": 8125, "o_rev_id": 1109601759, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531 ] }, { "str": "2", "token_id": 8126, "o_rev_id": 1109601759, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531 ] }, { @@ -87728,18 +87689,24 @@ "str": "splatoon", "token_id": 9329, "o_rev_id": 1109820321, - "in": [], + "in": [ + 1117591128, + 1216768014 + ], "out": [ - 1115665292 + 1117588531, + 1216767975 ] }, { "str": "3", "token_id": 9330, "o_rev_id": 1109820321, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531 ] }, { @@ -90352,23 +90319,15 @@ "str": "the", "token_id": 9626, "o_rev_id": 1109857891, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "fastest", "token_id": 9627, "o_rev_id": 1109857891, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "-", @@ -90381,12 +90340,8 @@ "str": "selling", "token_id": 9629, "o_rev_id": 1109857891, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "nintendo", @@ -90960,7 +90915,9 @@ "token_id": 9709, "o_rev_id": 1109857891, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "2022", @@ -94327,26 +94284,17 @@ ] }, { - "str": "}", + "str": "}}", "token_id": 10087, "o_rev_id": 1110226546, "in": [], "out": [ - 1110228716 - ] - }, - { - "str": "}", - "token_id": 10088, - "o_rev_id": 1110226546, - "in": [], - "out": [ - 1110228716 + 1110794584 ] }, { "str": "|", - "token_id": 10089, + "token_id": 10088, "o_rev_id": 1110228716, "in": [], "out": [ @@ -94355,7 +94303,7 @@ }, { "str": "date", - "token_id": 10090, + "token_id": 10089, "o_rev_id": 1110228716, "in": [], "out": [ @@ -94364,7 +94312,7 @@ }, { "str": "=", - "token_id": 10091, + "token_id": 10090, "o_rev_id": 1110228716, "in": [], "out": [ @@ -94373,7 +94321,7 @@ }, { "str": "september", - "token_id": 10092, + "token_id": 10091, "o_rev_id": 1110228716, "in": [], "out": [ @@ -94382,16 +94330,7 @@ }, { "str": "2022", - "token_id": 10093, - "o_rev_id": 1110228716, - "in": [], - "out": [ - 1110794584 - ] - }, - { - "str": "}}", - "token_id": 10094, + "token_id": 10092, "o_rev_id": 1110228716, "in": [], "out": [ @@ -94400,7 +94339,7 @@ }, { "str": "craig", - "token_id": 10095, + "token_id": 10093, "o_rev_id": 1110250495, "in": [], "out": [ @@ -94409,7 +94348,7 @@ }, { "str": "cap", - "token_id": 10096, + "token_id": 10094, "o_rev_id": 1110259610, "in": [ 1115512328 @@ -94421,7 +94360,7 @@ }, { "str": "’", - "token_id": 10097, + "token_id": 10095, "o_rev_id": 1110259610, "in": [], "out": [ @@ -94430,7 +94369,7 @@ }, { "str": "n", - "token_id": 10098, + "token_id": 10096, "o_rev_id": 1110259610, "in": [ 1115512328 @@ -94442,56 +94381,56 @@ }, { "str": "[[", - "token_id": 10099, + "token_id": 10097, "o_rev_id": 1110390705, "in": [], "out": [] }, { "str": "toru", - "token_id": 10100, + "token_id": 10098, "o_rev_id": 1110390705, "in": [], "out": [] }, { "str": "minegishi", - "token_id": 10101, + "token_id": 10099, "o_rev_id": 1110390705, "in": [], "out": [] }, { "str": "]]", - "token_id": 10102, + "token_id": 10100, "o_rev_id": 1110390705, "in": [], "out": [] }, { "str": "<", - "token_id": 10103, + "token_id": 10101, "o_rev_id": 1110390705, "in": [], "out": [] }, { "str": "br", - "token_id": 10104, + "token_id": 10102, "o_rev_id": 1110390705, "in": [], "out": [] }, { "str": ">", - "token_id": 10105, + "token_id": 10103, "o_rev_id": 1110390705, "in": [], "out": [] }, { "str": "shiho", - "token_id": 10106, + "token_id": 10104, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94500,7 +94439,7 @@ }, { "str": "fujii", - "token_id": 10107, + "token_id": 10105, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94509,7 +94448,7 @@ }, { "str": "<", - "token_id": 10108, + "token_id": 10106, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94518,7 +94457,7 @@ }, { "str": "br", - "token_id": 10109, + "token_id": 10107, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94527,7 +94466,7 @@ }, { "str": ">", - "token_id": 10110, + "token_id": 10108, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94536,7 +94475,7 @@ }, { "str": "ryo", - "token_id": 10111, + "token_id": 10109, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94545,7 +94484,7 @@ }, { "str": "nagamatsu", - "token_id": 10112, + "token_id": 10110, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94554,7 +94493,7 @@ }, { "str": "<", - "token_id": 10113, + "token_id": 10111, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94563,7 +94502,7 @@ }, { "str": "br", - "token_id": 10114, + "token_id": 10112, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94572,7 +94511,7 @@ }, { "str": ">", - "token_id": 10115, + "token_id": 10113, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94581,7 +94520,7 @@ }, { "str": "yumi", - "token_id": 10116, + "token_id": 10114, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94590,7 +94529,7 @@ }, { "str": "takahashi", - "token_id": 10117, + "token_id": 10115, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94599,7 +94538,7 @@ }, { "str": "sayako", - "token_id": 10118, + "token_id": 10116, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94608,7 +94547,7 @@ }, { "str": "doi", - "token_id": 10119, + "token_id": 10117, "o_rev_id": 1110390705, "in": [], "out": [ @@ -94617,7 +94556,7 @@ }, { "str": "friend", - "token_id": 10120, + "token_id": 10118, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94626,7 +94565,7 @@ }, { "str": "(", - "token_id": 10121, + "token_id": 10119, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94635,7 +94574,7 @@ }, { "str": "also", - "token_id": 10122, + "token_id": 10120, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94644,7 +94583,7 @@ }, { "str": "known", - "token_id": 10123, + "token_id": 10121, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94653,7 +94592,7 @@ }, { "str": "as", - "token_id": 10124, + "token_id": 10122, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94662,7 +94601,7 @@ }, { "str": "\"", - "token_id": 10125, + "token_id": 10123, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94671,7 +94610,7 @@ }, { "str": "little", - "token_id": 10126, + "token_id": 10124, "o_rev_id": 1110393545, "in": [ 1117591128 @@ -94683,7 +94622,7 @@ }, { "str": "buddy", - "token_id": 10127, + "token_id": 10125, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94692,7 +94631,7 @@ }, { "str": "\"", - "token_id": 10128, + "token_id": 10126, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94701,7 +94640,7 @@ }, { "str": ")", - "token_id": 10129, + "token_id": 10127, "o_rev_id": 1110393545, "in": [], "out": [ @@ -94710,14 +94649,14 @@ }, { "str": "on", - "token_id": 10130, + "token_id": 10128, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "12", - "token_id": 10131, + "token_id": 10129, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -94728,42 +94667,42 @@ }, { "str": "september", - "token_id": 10132, + "token_id": 10130, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2022", - "token_id": 10133, + "token_id": 10131, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "the", - "token_id": 10134, + "token_id": 10132, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "first", - "token_id": 10135, + "token_id": 10133, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "and", - "token_id": 10136, + "token_id": 10134, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "[[", - "token_id": 10137, + "token_id": 10135, "o_rev_id": 1110409342, "in": [], "out": [ @@ -94772,56 +94711,56 @@ }, { "str": "shares", - "token_id": 10138, + "token_id": 10136, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "of", - "token_id": 10139, + "token_id": 10137, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 10140, + "token_id": 10138, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "were", - "token_id": 10141, + "token_id": 10139, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "noted", - "token_id": 10142, + "token_id": 10140, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "to", - "token_id": 10143, + "token_id": 10141, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "have", - "token_id": 10144, + "token_id": 10142, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "jumped", - "token_id": 10145, + "token_id": 10143, "o_rev_id": 1110409342, "in": [], "out": [ @@ -94830,28 +94769,28 @@ }, { "str": "5", - "token_id": 10146, + "token_id": 10144, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ".", - "token_id": 10147, + "token_id": 10145, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "5", - "token_id": 10148, + "token_id": 10146, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "%", - "token_id": 10149, + "token_id": 10147, "o_rev_id": 1110409342, "in": [], "out": [ @@ -94860,63 +94799,63 @@ }, { "str": "on", - "token_id": 10150, + "token_id": 10148, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "the", - "token_id": 10151, + "token_id": 10149, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "tuesday", - "token_id": 10152, + "token_id": 10150, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "following", - "token_id": 10153, + "token_id": 10151, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "the", - "token_id": 10154, + "token_id": 10152, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "announcement", - "token_id": 10155, + "token_id": 10153, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ",", - "token_id": 10156, + "token_id": 10154, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "the", - "token_id": 10157, + "token_id": 10155, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "biggest", - "token_id": 10158, + "token_id": 10156, "o_rev_id": 1110409342, "in": [], "out": [ @@ -94925,7 +94864,7 @@ }, { "str": "jump", - "token_id": 10159, + "token_id": 10157, "o_rev_id": 1110409342, "in": [], "out": [ @@ -94934,77 +94873,77 @@ }, { "str": "since", - "token_id": 10160, + "token_id": 10158, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "december", - "token_id": 10161, + "token_id": 10159, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2020", - "token_id": 10162, + "token_id": 10160, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ".", - "token_id": 10163, + "token_id": 10161, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "<", - "token_id": 10164, + "token_id": 10162, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "ref", - "token_id": 10165, + "token_id": 10163, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ">", - "token_id": 10166, + "token_id": 10164, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "{{", - "token_id": 10167, + "token_id": 10165, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "cite", - "token_id": 10168, + "token_id": 10166, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "web", - "token_id": 10169, + "token_id": 10167, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10170, + "token_id": 10168, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -95015,14 +94954,18 @@ }, { "str": "last", - "token_id": 10171, + "token_id": 10169, "o_rev_id": 1110409342, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 10172, + "token_id": 10170, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -95033,14 +94976,14 @@ }, { "str": "savov", - "token_id": 10173, + "token_id": 10171, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10174, + "token_id": 10172, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -95051,7 +94994,7 @@ }, { "str": "first", - "token_id": 10175, + "token_id": 10173, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -95062,7 +95005,7 @@ }, { "str": "=", - "token_id": 10176, + "token_id": 10174, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -95073,50 +95016,42 @@ }, { "str": "vlad", - "token_id": 10177, + "token_id": 10175, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10178, + "token_id": 10176, "o_rev_id": 1110409342, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "date", - "token_id": 10179, + "token_id": 10177, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10180, + "token_id": 10178, "o_rev_id": 1110409342, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "2022", - "token_id": 10181, + "token_id": 10179, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10182, + "token_id": 10180, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -95127,7 +95062,7 @@ }, { "str": "09", - "token_id": 10183, + "token_id": 10181, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95136,396 +95071,392 @@ }, { "str": "-", - "token_id": 10184, + "token_id": 10182, "o_rev_id": 1110409342, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "12", - "token_id": 10185, + "token_id": 10183, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10186, + "token_id": 10184, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "title", - "token_id": 10187, + "token_id": 10185, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10188, + "token_id": 10186, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 10189, + "token_id": 10187, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "surges", - "token_id": 10190, + "token_id": 10188, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "after", - "token_id": 10191, + "token_id": 10189, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "record", - "token_id": 10192, + "token_id": 10190, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "debut", - "token_id": 10193, + "token_id": 10191, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "of", - "token_id": 10194, + "token_id": 10192, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "new", - "token_id": 10195, + "token_id": 10193, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "switch", - "token_id": 10196, + "token_id": 10194, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "game", - "token_id": 10197, + "token_id": 10195, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10198, + "token_id": 10196, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "url", - "token_id": 10199, + "token_id": 10197, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10200, + "token_id": 10198, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "https", - "token_id": 10201, + "token_id": 10199, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ":", - "token_id": 10202, + "token_id": 10200, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10203, + "token_id": 10201, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10204, + "token_id": 10202, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "www", - "token_id": 10205, + "token_id": 10203, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ".", - "token_id": 10206, + "token_id": 10204, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "bloomberg", - "token_id": 10207, + "token_id": 10205, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ".", - "token_id": 10208, + "token_id": 10206, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "com", - "token_id": 10209, + "token_id": 10207, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10210, + "token_id": 10208, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "news", - "token_id": 10211, + "token_id": 10209, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10212, + "token_id": 10210, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "articles", - "token_id": 10213, + "token_id": 10211, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10214, + "token_id": 10212, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2022", - "token_id": 10215, + "token_id": 10213, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10216, + "token_id": 10214, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "09", - "token_id": 10217, + "token_id": 10215, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10218, + "token_id": 10216, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "13", - "token_id": 10219, + "token_id": 10217, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10220, + "token_id": 10218, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 10221, + "token_id": 10219, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10222, + "token_id": 10220, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "jumps", - "token_id": 10223, + "token_id": 10221, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10224, + "token_id": 10222, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "after", - "token_id": 10225, + "token_id": 10223, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10226, + "token_id": 10224, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "record", - "token_id": 10227, + "token_id": 10225, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10228, + "token_id": 10226, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "debut", - "token_id": 10229, + "token_id": 10227, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10230, + "token_id": 10228, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "of", - "token_id": 10231, + "token_id": 10229, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10232, + "token_id": 10230, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "new", - "token_id": 10233, + "token_id": 10231, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10234, + "token_id": 10232, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "switch", - "token_id": 10235, + "token_id": 10233, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10236, + "token_id": 10234, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "game", - "token_id": 10237, + "token_id": 10235, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10238, + "token_id": 10236, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "access", - "token_id": 10239, + "token_id": 10237, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95534,14 +95465,14 @@ }, { "str": "-", - "token_id": 10240, + "token_id": 10238, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "date", - "token_id": 10241, + "token_id": 10239, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95550,28 +95481,28 @@ }, { "str": "=", - "token_id": 10242, + "token_id": 10240, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2022", - "token_id": 10243, + "token_id": 10241, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10244, + "token_id": 10242, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "09", - "token_id": 10245, + "token_id": 10243, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95580,21 +95511,21 @@ }, { "str": "-", - "token_id": 10246, + "token_id": 10244, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "15", - "token_id": 10247, + "token_id": 10245, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10248, + "token_id": 10246, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95603,7 +95534,7 @@ }, { "str": "website", - "token_id": 10249, + "token_id": 10247, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95612,7 +95543,7 @@ }, { "str": "=", - "token_id": 10250, + "token_id": 10248, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95621,7 +95552,7 @@ }, { "str": "bloomberg", - "token_id": 10251, + "token_id": 10249, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95630,7 +95561,7 @@ }, { "str": "}}", - "token_id": 10252, + "token_id": 10250, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95639,7 +95570,7 @@ }, { "str": "<", - "token_id": 10253, + "token_id": 10251, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95648,14 +95579,14 @@ }, { "str": "/", - "token_id": 10254, + "token_id": 10252, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "ref", - "token_id": 10255, + "token_id": 10253, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95664,7 +95595,7 @@ }, { "str": ">", - "token_id": 10256, + "token_id": 10254, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95673,84 +95604,84 @@ }, { "str": "<", - "token_id": 10257, + "token_id": 10255, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "ref", - "token_id": 10258, + "token_id": 10256, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ">", - "token_id": 10259, + "token_id": 10257, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "{{", - "token_id": 10260, + "token_id": 10258, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "cite", - "token_id": 10261, + "token_id": 10259, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "news", - "token_id": 10262, + "token_id": 10260, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10263, + "token_id": 10261, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "last", - "token_id": 10264, + "token_id": 10262, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10265, + "token_id": 10263, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "nussey", - "token_id": 10266, + "token_id": 10264, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10267, + "token_id": 10265, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "first", - "token_id": 10268, + "token_id": 10266, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -95761,56 +95692,56 @@ }, { "str": "=", - "token_id": 10269, + "token_id": 10267, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "sam", - "token_id": 10270, + "token_id": 10268, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10271, + "token_id": 10269, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "date", - "token_id": 10272, + "token_id": 10270, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10273, + "token_id": 10271, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2022", - "token_id": 10274, + "token_id": 10272, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10275, + "token_id": 10273, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "09", - "token_id": 10276, + "token_id": 10274, "o_rev_id": 1110409342, "in": [], "out": [ @@ -95819,70 +95750,78 @@ }, { "str": "-", - "token_id": 10277, + "token_id": 10275, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "12", - "token_id": 10278, + "token_id": 10276, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10279, + "token_id": 10277, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "title", - "token_id": 10280, + "token_id": 10278, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10281, + "token_id": 10279, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 10282, + "token_id": 10280, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "shares", - "token_id": 10283, + "token_id": 10281, "o_rev_id": 1110409342, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "jump", - "token_id": 10284, + "token_id": 10282, "o_rev_id": 1110409342, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "5", - "token_id": 10285, + "token_id": 10283, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "%", - "token_id": 10286, + "token_id": 10284, "o_rev_id": 1110409342, "in": [ 1202097960 @@ -95893,13 +95832,35 @@ }, { "str": "on", - "token_id": 10287, + "token_id": 10285, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "record", + "token_id": 10286, + "o_rev_id": 1110409342, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "'", + "token_id": 10287, + "o_rev_id": 1110409342, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "splatoon", "token_id": 10288, "o_rev_id": 1110409342, "in": [ @@ -95921,16 +95882,9 @@ ] }, { - "str": "splatoon", + "str": "launch", "token_id": 10290, "o_rev_id": 1110409342, - "in": [], - "out": [] - }, - { - "str": "'", - "token_id": 10291, - "o_rev_id": 1110409342, "in": [ 1202097960 ], @@ -95939,123 +95893,126 @@ ] }, { - "str": "launch", + "str": "|", + "token_id": 10291, + "o_rev_id": 1110409342, + "in": [], + "out": [] + }, + { + "str": "language", "token_id": 10292, "o_rev_id": 1110409342, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { - "str": "|", + "str": "=", "token_id": 10293, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "language", + "str": "en", "token_id": 10294, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "=", + "str": "|", "token_id": 10295, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "en", + "str": "work", "token_id": 10296, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "|", + "str": "=", "token_id": 10297, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "work", + "str": "reuters", "token_id": 10298, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "=", + "str": "|", "token_id": 10299, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "reuters", + "str": "url", "token_id": 10300, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "|", + "str": "=", "token_id": 10301, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "url", + "str": "https", "token_id": 10302, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "=", + "str": ":", "token_id": 10303, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "https", + "str": "/", "token_id": 10304, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": ":", + "str": "/", "token_id": 10305, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "/", + "str": "www", "token_id": 10306, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "/", + "str": ".", "token_id": 10307, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "www", + "str": "reuters", "token_id": 10308, "o_rev_id": 1110409342, "in": [], @@ -96069,21 +96026,21 @@ "out": [] }, { - "str": "reuters", + "str": "com", "token_id": 10310, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": ".", + "str": "/", "token_id": 10311, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "com", + "str": "artcile", "token_id": 10312, "o_rev_id": 1110409342, "in": [], @@ -96097,7 +96054,7 @@ "out": [] }, { - "str": "artcile", + "str": "article", "token_id": 10314, "o_rev_id": 1110409342, "in": [], @@ -96111,49 +96068,49 @@ "out": [] }, { - "str": "article", + "str": "nintendo", "token_id": 10316, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "/", + "str": "-", "token_id": 10317, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "nintendo", + "str": "stocks", "token_id": 10318, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "-", + "str": "/", "token_id": 10319, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "stocks", + "str": "nintendo", "token_id": 10320, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "/", + "str": "-", "token_id": 10321, "o_rev_id": 1110409342, "in": [], "out": [] }, { - "str": "nintendo", + "str": "shares", "token_id": 10322, "o_rev_id": 1110409342, "in": [], @@ -96167,7 +96124,7 @@ "out": [] }, { - "str": "shares", + "str": "jump", "token_id": 10324, "o_rev_id": 1110409342, "in": [], @@ -96181,7 +96138,7 @@ "out": [] }, { - "str": "jump", + "str": "5", "token_id": 10326, "o_rev_id": 1110409342, "in": [], @@ -96195,7 +96152,7 @@ "out": [] }, { - "str": "5", + "str": "on", "token_id": 10328, "o_rev_id": 1110409342, "in": [], @@ -96209,7 +96166,7 @@ "out": [] }, { - "str": "on", + "str": "record", "token_id": 10330, "o_rev_id": 1110409342, "in": [], @@ -96223,7 +96180,7 @@ "out": [] }, { - "str": "record", + "str": "splatoon", "token_id": 10332, "o_rev_id": 1110409342, "in": [], @@ -96237,7 +96194,7 @@ "out": [] }, { - "str": "splatoon", + "str": "launch", "token_id": 10334, "o_rev_id": 1110409342, "in": [], @@ -96250,37 +96207,23 @@ "in": [], "out": [] }, - { - "str": "launch", - "token_id": 10336, - "o_rev_id": 1110409342, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 10337, - "o_rev_id": 1110409342, - "in": [], - "out": [] - }, { "str": "iduskbn2qe02c", - "token_id": 10338, + "token_id": 10336, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10339, + "token_id": 10337, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "access", - "token_id": 10340, + "token_id": 10338, "o_rev_id": 1110409342, "in": [], "out": [ @@ -96289,35 +96232,35 @@ }, { "str": "-", - "token_id": 10341, + "token_id": 10339, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "date", - "token_id": 10342, + "token_id": 10340, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10343, + "token_id": 10341, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2022", - "token_id": 10344, + "token_id": 10342, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10345, + "token_id": 10343, "o_rev_id": 1110409342, "in": [], "out": [ @@ -96326,7 +96269,7 @@ }, { "str": "09", - "token_id": 10346, + "token_id": 10344, "o_rev_id": 1110409342, "in": [], "out": [ @@ -96335,189 +96278,189 @@ }, { "str": "-", - "token_id": 10347, + "token_id": 10345, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "15", - "token_id": 10348, + "token_id": 10346, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "}}", - "token_id": 10349, + "token_id": 10347, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "<", - "token_id": 10350, + "token_id": 10348, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10351, + "token_id": 10349, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "ref", - "token_id": 10352, + "token_id": 10350, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ">", - "token_id": 10353, + "token_id": 10351, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "<", - "token_id": 10354, + "token_id": 10352, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "ref", - "token_id": 10355, + "token_id": 10353, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ">", - "token_id": 10356, + "token_id": 10354, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "{{", - "token_id": 10357, + "token_id": 10355, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "cite", - "token_id": 10358, + "token_id": 10356, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "web", - "token_id": 10359, + "token_id": 10357, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10360, + "token_id": 10358, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "last", - "token_id": 10361, + "token_id": 10359, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10362, + "token_id": 10360, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "kharpal", - "token_id": 10363, + "token_id": 10361, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10364, + "token_id": 10362, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "first", - "token_id": 10365, + "token_id": 10363, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10366, + "token_id": 10364, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "arjun", - "token_id": 10367, + "token_id": 10365, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10368, + "token_id": 10366, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "date", - "token_id": 10369, + "token_id": 10367, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10370, + "token_id": 10368, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2022", - "token_id": 10371, + "token_id": 10369, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10372, + "token_id": 10370, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "09", - "token_id": 10373, + "token_id": 10371, "o_rev_id": 1110409342, "in": [], "out": [ @@ -96526,7 +96469,7 @@ }, { "str": "-", - "token_id": 10374, + "token_id": 10372, "o_rev_id": 1110409342, "in": [], "out": [ @@ -96535,445 +96478,441 @@ }, { "str": "13", - "token_id": 10375, + "token_id": 10373, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10376, + "token_id": 10374, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "title", - "token_id": 10377, + "token_id": 10375, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10378, + "token_id": 10376, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 10379, + "token_id": 10377, "o_rev_id": 1110409342, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "shares", - "token_id": 10380, + "token_id": 10378, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "jump", - "token_id": 10381, + "token_id": 10379, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "5", - "token_id": 10382, + "token_id": 10380, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "%", - "token_id": 10383, + "token_id": 10381, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "after", - "token_id": 10384, + "token_id": 10382, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "new", - "token_id": 10385, + "token_id": 10383, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "game", - "token_id": 10386, + "token_id": 10384, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 10387, + "token_id": 10385, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "3", - "token_id": 10388, + "token_id": 10386, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "hits", - "token_id": 10389, + "token_id": 10387, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "japan", - "token_id": 10390, + "token_id": 10388, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "sales", - "token_id": 10391, + "token_id": 10389, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "record", - "token_id": 10392, + "token_id": 10390, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10393, + "token_id": 10391, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "url", - "token_id": 10394, + "token_id": 10392, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10395, + "token_id": 10393, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "https", - "token_id": 10396, + "token_id": 10394, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ":", - "token_id": 10397, + "token_id": 10395, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10398, + "token_id": 10396, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10399, + "token_id": 10397, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "www", - "token_id": 10400, + "token_id": 10398, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ".", - "token_id": 10401, + "token_id": 10399, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "cnbc", - "token_id": 10402, + "token_id": 10400, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ".", - "token_id": 10403, + "token_id": 10401, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "com", - "token_id": 10404, + "token_id": 10402, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10405, + "token_id": 10403, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2022", - "token_id": 10406, + "token_id": 10404, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10407, + "token_id": 10405, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "09", - "token_id": 10408, + "token_id": 10406, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10409, + "token_id": 10407, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "13", - "token_id": 10410, + "token_id": 10408, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "/", - "token_id": 10411, + "token_id": 10409, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 10412, + "token_id": 10410, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10413, + "token_id": 10411, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "shares", - "token_id": 10414, + "token_id": 10412, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10415, + "token_id": 10413, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "jump", - "token_id": 10416, + "token_id": 10414, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10417, + "token_id": 10415, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "after", - "token_id": 10418, + "token_id": 10416, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10419, + "token_id": 10417, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 10420, + "token_id": 10418, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10421, + "token_id": 10419, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "3", - "token_id": 10422, + "token_id": 10420, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10423, + "token_id": 10421, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "japan", - "token_id": 10424, + "token_id": 10422, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10425, + "token_id": 10423, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "sales", - "token_id": 10426, + "token_id": 10424, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10427, + "token_id": 10425, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "record", - "token_id": 10428, + "token_id": 10426, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": ".", - "token_id": 10429, + "token_id": 10427, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "html", - "token_id": 10430, + "token_id": 10428, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10431, + "token_id": 10429, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "access", - "token_id": 10432, + "token_id": 10430, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10433, + "token_id": 10431, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "date", - "token_id": 10434, + "token_id": 10432, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10435, + "token_id": 10433, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "2022", - "token_id": 10436, + "token_id": 10434, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "-", - "token_id": 10437, + "token_id": 10435, "o_rev_id": 1110409342, "in": [], "out": [ @@ -96982,7 +96921,7 @@ }, { "str": "09", - "token_id": 10438, + "token_id": 10436, "o_rev_id": 1110409342, "in": [], "out": [ @@ -96991,7 +96930,7 @@ }, { "str": "-", - "token_id": 10439, + "token_id": 10437, "o_rev_id": 1110409342, "in": [], "out": [ @@ -97000,35 +96939,35 @@ }, { "str": "15", - "token_id": 10440, + "token_id": 10438, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "|", - "token_id": 10441, + "token_id": 10439, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "website", - "token_id": 10442, + "token_id": 10440, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "=", - "token_id": 10443, + "token_id": 10441, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "cnbc", - "token_id": 10444, + "token_id": 10442, "o_rev_id": 1110409342, "in": [], "out": [ @@ -97037,14 +96976,14 @@ }, { "str": "|", - "token_id": 10445, + "token_id": 10443, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "language", - "token_id": 10446, + "token_id": 10444, "o_rev_id": 1110409342, "in": [], "out": [ @@ -97053,21 +96992,21 @@ }, { "str": "=", - "token_id": 10447, + "token_id": 10445, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "en", - "token_id": 10448, + "token_id": 10446, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "}}", - "token_id": 10449, + "token_id": 10447, "o_rev_id": 1110409342, "in": [], "out": [ @@ -97076,7 +97015,7 @@ }, { "str": "<", - "token_id": 10450, + "token_id": 10448, "o_rev_id": 1110409342, "in": [], "out": [ @@ -97085,14 +97024,14 @@ }, { "str": "/", - "token_id": 10451, + "token_id": 10449, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "ref", - "token_id": 10452, + "token_id": 10450, "o_rev_id": 1110409342, "in": [], "out": [ @@ -97101,14 +97040,14 @@ }, { "str": ">", - "token_id": 10453, + "token_id": 10451, "o_rev_id": 1110409342, "in": [], "out": [] }, { "str": "83", - "token_id": 10454, + "token_id": 10452, "o_rev_id": 1110424845, "in": [ 1111943650 @@ -97119,7 +97058,7 @@ }, { "str": "15", - "token_id": 10455, + "token_id": 10453, "o_rev_id": 1110424845, "in": [], "out": [ @@ -97128,7 +97067,7 @@ }, { "str": "83", - "token_id": 10456, + "token_id": 10454, "o_rev_id": 1110424845, "in": [], "out": [ @@ -97137,7 +97076,7 @@ }, { "str": "and", - "token_id": 10457, + "token_id": 10455, "o_rev_id": 1110425384, "in": [], "out": [ @@ -97146,7 +97085,7 @@ }, { "str": "received", - "token_id": 10458, + "token_id": 10456, "o_rev_id": 1110425384, "in": [ 1148919560 @@ -97158,7 +97097,7 @@ }, { "str": "generally", - "token_id": 10459, + "token_id": 10457, "o_rev_id": 1110425384, "in": [ 1148919560 @@ -97170,7 +97109,7 @@ }, { "str": "positive", - "token_id": 10460, + "token_id": 10458, "o_rev_id": 1110425384, "in": [], "out": [ @@ -97179,7 +97118,7 @@ }, { "str": "reviews", - "token_id": 10461, + "token_id": 10459, "o_rev_id": 1110425384, "in": [ 1148919560 @@ -97191,7 +97130,7 @@ }, { "str": "from", - "token_id": 10462, + "token_id": 10460, "o_rev_id": 1110425384, "in": [ 1148919560 @@ -97203,7 +97142,7 @@ }, { "str": "critics", - "token_id": 10463, + "token_id": 10461, "o_rev_id": 1110425384, "in": [ 1148919560 @@ -97215,7 +97154,7 @@ }, { "str": "favorable", - "token_id": 10464, + "token_id": 10462, "o_rev_id": 1110425456, "in": [ 1148919560 @@ -97227,7 +97166,7 @@ }, { "str": "a", - "token_id": 10465, + "token_id": 10463, "o_rev_id": 1110515920, "in": [ 1178773007 @@ -97238,7 +97177,7 @@ }, { "str": "respectively", - "token_id": 10466, + "token_id": 10464, "o_rev_id": 1110515920, "in": [ 1178773007 @@ -97249,7 +97188,7 @@ }, { "str": ".", - "token_id": 10467, + "token_id": 10465, "o_rev_id": 1110515920, "in": [ 1178773007 @@ -97260,7 +97199,7 @@ }, { "str": "this", - "token_id": 10468, + "token_id": 10466, "o_rev_id": 1110515920, "in": [ 1178773007 @@ -97271,7 +97210,7 @@ }, { "str": "form", - "token_id": 10469, + "token_id": 10467, "o_rev_id": 1110515920, "in": [ 1178773007 @@ -97282,7 +97221,7 @@ }, { "str": "is", - "token_id": 10470, + "token_id": 10468, "o_rev_id": 1110515920, "in": [ 1178773007 @@ -97293,7 +97232,7 @@ }, { "str": ",", - "token_id": 10471, + "token_id": 10469, "o_rev_id": 1110515920, "in": [ 1178773007 @@ -97304,7 +97243,7 @@ }, { "str": "and", - "token_id": 10472, + "token_id": 10470, "o_rev_id": 1110515920, "in": [ 1178773007 @@ -97315,21 +97254,21 @@ }, { "str": "with", - "token_id": 10473, + "token_id": 10471, "o_rev_id": 1110529242, "in": [], "out": [] }, { "str": "a", - "token_id": 10474, + "token_id": 10472, "o_rev_id": 1110529242, "in": [], "out": [] }, { "str": "[[", - "token_id": 10475, + "token_id": 10473, "o_rev_id": 1110529242, "in": [], "out": [ @@ -97338,35 +97277,35 @@ }, { "str": "rock", - "token_id": 10476, + "token_id": 10474, "o_rev_id": 1110529242, "in": [], "out": [] }, { "str": "-", - "token_id": 10477, + "token_id": 10475, "o_rev_id": 1110529242, "in": [], "out": [] }, { "str": "paper", - "token_id": 10478, + "token_id": 10476, "o_rev_id": 1110529242, "in": [], "out": [] }, { "str": "-", - "token_id": 10479, + "token_id": 10477, "o_rev_id": 1110529242, "in": [], "out": [] }, { "str": "scisscors", - "token_id": 10480, + "token_id": 10478, "o_rev_id": 1110529242, "in": [], "out": [ @@ -97375,7 +97314,7 @@ }, { "str": "]]", - "token_id": 10481, + "token_id": 10479, "o_rev_id": 1110529242, "in": [], "out": [ @@ -97384,49 +97323,49 @@ }, { "str": "theme", - "token_id": 10482, + "token_id": 10480, "o_rev_id": 1110529242, "in": [], "out": [] }, { "str": "[[", - "token_id": 10483, + "token_id": 10481, "o_rev_id": 1110529281, "in": [], "out": [] }, { "str": "scissors", - "token_id": 10484, + "token_id": 10482, "o_rev_id": 1110529281, "in": [], "out": [] }, { "str": "]]", - "token_id": 10485, + "token_id": 10483, "o_rev_id": 1110529281, "in": [], "out": [] }, { "str": "domestically", - "token_id": 10486, + "token_id": 10484, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "video", - "token_id": 10487, + "token_id": 10485, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": ",", - "token_id": 10488, + "token_id": 10486, "o_rev_id": 1110557919, "in": [], "out": [ @@ -97435,49 +97374,49 @@ }, { "str": "surpassing", - "token_id": 10489, + "token_id": 10487, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "[[", - "token_id": 10490, + "token_id": 10488, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "pokémon", - "token_id": 10491, + "token_id": 10489, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "black", - "token_id": 10492, + "token_id": 10490, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "white", - "token_id": 10493, + "token_id": 10491, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "]]", - "token_id": 10494, + "token_id": 10492, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "'", - "token_id": 10495, + "token_id": 10493, "o_rev_id": 1110557919, "in": [], "out": [ @@ -97486,7 +97425,7 @@ }, { "str": "'", - "token_id": 10496, + "token_id": 10494, "o_rev_id": 1110557919, "in": [], "out": [ @@ -97495,133 +97434,133 @@ }, { "str": "<", - "token_id": 10497, + "token_id": 10495, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "ref", - "token_id": 10498, + "token_id": 10496, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": ">", - "token_id": 10499, + "token_id": 10497, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "{{", - "token_id": 10500, + "token_id": 10498, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "cite", - "token_id": 10501, + "token_id": 10499, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "web", - "token_id": 10502, + "token_id": 10500, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "|", - "token_id": 10503, + "token_id": 10501, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "last", - "token_id": 10504, + "token_id": 10502, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "=", - "token_id": 10505, + "token_id": 10503, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "tassi", - "token_id": 10506, + "token_id": 10504, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "|", - "token_id": 10507, + "token_id": 10505, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "first", - "token_id": 10508, + "token_id": 10506, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "=", - "token_id": 10509, + "token_id": 10507, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "paul", - "token_id": 10510, + "token_id": 10508, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "|", - "token_id": 10511, + "token_id": 10509, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "title", - "token_id": 10512, + "token_id": 10510, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "=", - "token_id": 10513, + "token_id": 10511, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 10514, + "token_id": 10512, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "’", - "token_id": 10515, + "token_id": 10513, "o_rev_id": 1110557919, "in": [], "out": [ @@ -97630,14 +97569,14 @@ }, { "str": "s", - "token_id": 10516, + "token_id": 10514, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "‘splatoon", - "token_id": 10517, + "token_id": 10515, "o_rev_id": 1110557919, "in": [], "out": [ @@ -97646,14 +97585,14 @@ }, { "str": "3", - "token_id": 10518, + "token_id": 10516, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "’", - "token_id": 10519, + "token_id": 10517, "o_rev_id": 1110557919, "in": [], "out": [ @@ -97662,28 +97601,28 @@ }, { "str": "just", - "token_id": 10520, + "token_id": 10518, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "set", - "token_id": 10521, + "token_id": 10519, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "japan", - "token_id": 10522, + "token_id": 10520, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "’", - "token_id": 10523, + "token_id": 10521, "o_rev_id": 1110557919, "in": [], "out": [ @@ -97692,104 +97631,118 @@ }, { "str": "s", - "token_id": 10524, + "token_id": 10522, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "all", - "token_id": 10525, + "token_id": 10523, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "-", - "token_id": 10526, + "token_id": 10524, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "time", - "token_id": 10527, + "token_id": 10525, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "launch", - "token_id": 10528, + "token_id": 10526, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "sales", - "token_id": 10529, + "token_id": 10527, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "record", - "token_id": 10530, + "token_id": 10528, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "|", - "token_id": 10531, + "token_id": 10529, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "url", - "token_id": 10532, + "token_id": 10530, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "=", - "token_id": 10533, + "token_id": 10531, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "https", - "token_id": 10534, + "token_id": 10532, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": ":", - "token_id": 10535, + "token_id": 10533, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "/", - "token_id": 10536, + "token_id": 10534, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "/", - "token_id": 10537, + "token_id": 10535, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "www", + "token_id": 10536, + "o_rev_id": 1110557919, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 10537, + "o_rev_id": 1110557919, + "in": [], + "out": [] + }, + { + "str": "forbes", "token_id": 10538, "o_rev_id": 1110557919, "in": [], @@ -97803,21 +97756,21 @@ "out": [] }, { - "str": "forbes", + "str": "com", "token_id": 10540, "o_rev_id": 1110557919, "in": [], "out": [] }, { - "str": ".", + "str": "/", "token_id": 10541, "o_rev_id": 1110557919, "in": [], "out": [] }, { - "str": "com", + "str": "sites", "token_id": 10542, "o_rev_id": 1110557919, "in": [], @@ -97831,7 +97784,7 @@ "out": [] }, { - "str": "sites", + "str": "paultassi", "token_id": 10544, "o_rev_id": 1110557919, "in": [], @@ -97845,7 +97798,7 @@ "out": [] }, { - "str": "paultassi", + "str": "2022", "token_id": 10546, "o_rev_id": 1110557919, "in": [], @@ -97859,7 +97812,7 @@ "out": [] }, { - "str": "2022", + "str": "09", "token_id": 10548, "o_rev_id": 1110557919, "in": [], @@ -97873,7 +97826,7 @@ "out": [] }, { - "str": "09", + "str": "12", "token_id": 10550, "o_rev_id": 1110557919, "in": [], @@ -97887,21 +97840,21 @@ "out": [] }, { - "str": "12", + "str": "nintendos", "token_id": 10552, "o_rev_id": 1110557919, "in": [], "out": [] }, { - "str": "/", + "str": "-", "token_id": 10553, "o_rev_id": 1110557919, "in": [], "out": [] }, { - "str": "nintendos", + "str": "splatoon", "token_id": 10554, "o_rev_id": 1110557919, "in": [], @@ -97915,7 +97868,7 @@ "out": [] }, { - "str": "splatoon", + "str": "3", "token_id": 10556, "o_rev_id": 1110557919, "in": [], @@ -97929,7 +97882,7 @@ "out": [] }, { - "str": "3", + "str": "just", "token_id": 10558, "o_rev_id": 1110557919, "in": [], @@ -97943,7 +97896,7 @@ "out": [] }, { - "str": "just", + "str": "set", "token_id": 10560, "o_rev_id": 1110557919, "in": [], @@ -97957,7 +97910,7 @@ "out": [] }, { - "str": "set", + "str": "japans", "token_id": 10562, "o_rev_id": 1110557919, "in": [], @@ -97971,7 +97924,7 @@ "out": [] }, { - "str": "japans", + "str": "all", "token_id": 10564, "o_rev_id": 1110557919, "in": [], @@ -97985,7 +97938,7 @@ "out": [] }, { - "str": "all", + "str": "time", "token_id": 10566, "o_rev_id": 1110557919, "in": [], @@ -97999,7 +97952,7 @@ "out": [] }, { - "str": "time", + "str": "launch", "token_id": 10568, "o_rev_id": 1110557919, "in": [], @@ -98013,7 +97966,7 @@ "out": [] }, { - "str": "launch", + "str": "sales", "token_id": 10570, "o_rev_id": 1110557919, "in": [], @@ -98026,44 +97979,30 @@ "in": [], "out": [] }, - { - "str": "sales", - "token_id": 10572, - "o_rev_id": 1110557919, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 10573, - "o_rev_id": 1110557919, - "in": [], - "out": [] - }, { "str": "record", - "token_id": 10574, + "token_id": 10572, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "/", - "token_id": 10575, + "token_id": 10573, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "|", - "token_id": 10576, + "token_id": 10574, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "access", - "token_id": 10577, + "token_id": 10575, "o_rev_id": 1110557919, "in": [], "out": [ @@ -98072,42 +98011,42 @@ }, { "str": "-", - "token_id": 10578, + "token_id": 10576, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "date", - "token_id": 10579, + "token_id": 10577, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "=", - "token_id": 10580, + "token_id": 10578, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "2022", - "token_id": 10581, + "token_id": 10579, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "-", - "token_id": 10582, + "token_id": 10580, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "09", - "token_id": 10583, + "token_id": 10581, "o_rev_id": 1110557919, "in": [], "out": [ @@ -98116,14 +98055,14 @@ }, { "str": "-", - "token_id": 10584, + "token_id": 10582, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "16", - "token_id": 10585, + "token_id": 10583, "o_rev_id": 1110557919, "in": [], "out": [ @@ -98132,28 +98071,28 @@ }, { "str": "|", - "token_id": 10586, + "token_id": 10584, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "website", - "token_id": 10587, + "token_id": 10585, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "=", - "token_id": 10588, + "token_id": 10586, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "forbes", - "token_id": 10589, + "token_id": 10587, "o_rev_id": 1110557919, "in": [], "out": [ @@ -98162,35 +98101,35 @@ }, { "str": "|", - "token_id": 10590, + "token_id": 10588, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "language", - "token_id": 10591, + "token_id": 10589, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "=", - "token_id": 10592, + "token_id": 10590, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "en", - "token_id": 10593, + "token_id": 10591, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "}}", - "token_id": 10594, + "token_id": 10592, "o_rev_id": 1110557919, "in": [], "out": [ @@ -98199,7 +98138,7 @@ }, { "str": "<", - "token_id": 10595, + "token_id": 10593, "o_rev_id": 1110557919, "in": [], "out": [ @@ -98208,14 +98147,14 @@ }, { "str": "/", - "token_id": 10596, + "token_id": 10594, "o_rev_id": 1110557919, "in": [], "out": [] }, { "str": "ref", - "token_id": 10597, + "token_id": 10595, "o_rev_id": 1110557919, "in": [], "out": [ @@ -98224,7 +98163,7 @@ }, { "str": ">", - "token_id": 10598, + "token_id": 10596, "o_rev_id": 1110557919, "in": [], "out": [ @@ -98233,7 +98172,7 @@ }, { "str": "agents", - "token_id": 10599, + "token_id": 10597, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98242,7 +98181,7 @@ }, { "str": "1", - "token_id": 10600, + "token_id": 10598, "o_rev_id": 1110737007, "in": [ 1119273540 @@ -98254,7 +98193,7 @@ }, { "str": "and", - "token_id": 10601, + "token_id": 10599, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98263,7 +98202,7 @@ }, { "str": "2", - "token_id": 10602, + "token_id": 10600, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98272,7 +98211,7 @@ }, { "str": ",", - "token_id": 10603, + "token_id": 10601, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98281,7 +98220,7 @@ }, { "str": "of", - "token_id": 10604, + "token_id": 10602, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98290,7 +98229,7 @@ }, { "str": "the", - "token_id": 10605, + "token_id": 10603, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98299,7 +98238,7 @@ }, { "str": "squid", - "token_id": 10606, + "token_id": 10604, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98308,7 +98247,7 @@ }, { "str": "sisters", - "token_id": 10607, + "token_id": 10605, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98317,7 +98256,7 @@ }, { "str": ",", - "token_id": 10608, + "token_id": 10606, "o_rev_id": 1110737007, "in": [], "out": [ @@ -98326,7 +98265,7 @@ }, { "str": "[[", - "token_id": 10609, + "token_id": 10607, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98335,7 +98274,7 @@ }, { "str": "morbuis", - "token_id": 10610, + "token_id": 10608, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98344,7 +98283,7 @@ }, { "str": "]]", - "token_id": 10611, + "token_id": 10609, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98353,7 +98292,7 @@ }, { "str": "[[", - "token_id": 10612, + "token_id": 10610, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98362,7 +98301,7 @@ }, { "str": "ben", - "token_id": 10613, + "token_id": 10611, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98371,7 +98310,7 @@ }, { "str": "]]", - "token_id": 10614, + "token_id": 10612, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98380,7 +98319,7 @@ }, { "str": "[[", - "token_id": 10615, + "token_id": 10613, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98389,7 +98328,7 @@ }, { "str": "ben", - "token_id": 10616, + "token_id": 10614, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98398,7 +98337,7 @@ }, { "str": "]]", - "token_id": 10617, + "token_id": 10615, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98407,7 +98346,7 @@ }, { "str": "[[", - "token_id": 10618, + "token_id": 10616, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98416,7 +98355,7 @@ }, { "str": "morbin", - "token_id": 10619, + "token_id": 10617, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98425,7 +98364,7 @@ }, { "str": "sim", - "token_id": 10620, + "token_id": 10618, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98434,7 +98373,7 @@ }, { "str": "]]", - "token_id": 10621, + "token_id": 10619, "o_rev_id": 1111440983, "in": [], "out": [ @@ -98443,7 +98382,7 @@ }, { "str": "also", - "token_id": 10622, + "token_id": 10620, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98452,7 +98391,7 @@ }, { "str": "(", - "token_id": 10623, + "token_id": 10621, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98461,7 +98400,7 @@ }, { "str": "also", - "token_id": 10624, + "token_id": 10622, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98470,7 +98409,7 @@ }, { "str": "known", - "token_id": 10625, + "token_id": 10623, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98479,7 +98418,7 @@ }, { "str": "as", - "token_id": 10626, + "token_id": 10624, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98488,7 +98427,7 @@ }, { "str": "sub", - "token_id": 10627, + "token_id": 10625, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98497,7 +98436,7 @@ }, { "str": "weapons", - "token_id": 10628, + "token_id": 10626, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98506,7 +98445,7 @@ }, { "str": ")", - "token_id": 10629, + "token_id": 10627, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98515,7 +98454,7 @@ }, { "str": ".", - "token_id": 10630, + "token_id": 10628, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98524,7 +98463,7 @@ }, { "str": "also", - "token_id": 10631, + "token_id": 10629, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98533,7 +98472,7 @@ }, { "str": "returning", - "token_id": 10632, + "token_id": 10630, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98542,7 +98481,7 @@ }, { "str": "from", - "token_id": 10633, + "token_id": 10631, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98551,7 +98490,7 @@ }, { "str": "previous", - "token_id": 10634, + "token_id": 10632, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98560,7 +98499,7 @@ }, { "str": "splatoon", - "token_id": 10635, + "token_id": 10633, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98569,7 +98508,7 @@ }, { "str": "games", - "token_id": 10636, + "token_id": 10634, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98578,7 +98517,7 @@ }, { "str": "is", - "token_id": 10637, + "token_id": 10635, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98587,7 +98526,7 @@ }, { "str": "anarchy", - "token_id": 10638, + "token_id": 10636, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98596,7 +98535,7 @@ }, { "str": "battle", - "token_id": 10639, + "token_id": 10637, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98605,7 +98544,7 @@ }, { "str": "(", - "token_id": 10640, + "token_id": 10638, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98614,7 +98553,7 @@ }, { "str": "used", - "token_id": 10641, + "token_id": 10639, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98623,7 +98562,7 @@ }, { "str": "to", - "token_id": 10642, + "token_id": 10640, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98632,7 +98571,7 @@ }, { "str": "be", - "token_id": 10643, + "token_id": 10641, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98641,7 +98580,7 @@ }, { "str": "ranked", - "token_id": 10644, + "token_id": 10642, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98650,7 +98589,7 @@ }, { "str": "battles", - "token_id": 10645, + "token_id": 10643, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98659,7 +98598,7 @@ }, { "str": ")", - "token_id": 10646, + "token_id": 10644, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98668,7 +98607,7 @@ }, { "str": ".", - "token_id": 10647, + "token_id": 10645, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98677,7 +98616,7 @@ }, { "str": "like", - "token_id": 10648, + "token_id": 10646, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98686,7 +98625,7 @@ }, { "str": "turf", - "token_id": 10649, + "token_id": 10647, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98695,7 +98634,7 @@ }, { "str": "war", - "token_id": 10650, + "token_id": 10648, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98704,7 +98643,7 @@ }, { "str": ",", - "token_id": 10651, + "token_id": 10649, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98713,7 +98652,7 @@ }, { "str": "anarchy", - "token_id": 10652, + "token_id": 10650, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98722,7 +98661,7 @@ }, { "str": "battle", - "token_id": 10653, + "token_id": 10651, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98731,7 +98670,7 @@ }, { "str": "is", - "token_id": 10654, + "token_id": 10652, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98740,7 +98679,7 @@ }, { "str": "a", - "token_id": 10655, + "token_id": 10653, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98749,7 +98688,7 @@ }, { "str": "competitive", - "token_id": 10656, + "token_id": 10654, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98758,7 +98697,7 @@ }, { "str": "online", - "token_id": 10657, + "token_id": 10655, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98767,7 +98706,7 @@ }, { "str": "multiplayer", - "token_id": 10658, + "token_id": 10656, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98776,7 +98715,7 @@ }, { "str": "gamemode", - "token_id": 10659, + "token_id": 10657, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98785,7 +98724,7 @@ }, { "str": ".", - "token_id": 10660, + "token_id": 10658, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98794,7 +98733,7 @@ }, { "str": "you", - "token_id": 10661, + "token_id": 10659, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98803,7 +98742,7 @@ }, { "str": "can", - "token_id": 10662, + "token_id": 10660, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98812,7 +98751,7 @@ }, { "str": "start", - "token_id": 10663, + "token_id": 10661, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98821,7 +98760,7 @@ }, { "str": "an", - "token_id": 10664, + "token_id": 10662, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98830,7 +98769,7 @@ }, { "str": "anarchy", - "token_id": 10665, + "token_id": 10663, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98839,7 +98778,7 @@ }, { "str": "battle", - "token_id": 10666, + "token_id": 10664, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98848,7 +98787,7 @@ }, { "str": "series", - "token_id": 10667, + "token_id": 10665, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98857,7 +98796,7 @@ }, { "str": ",", - "token_id": 10668, + "token_id": 10666, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98866,7 +98805,7 @@ }, { "str": "where", - "token_id": 10669, + "token_id": 10667, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98875,7 +98814,7 @@ }, { "str": "you", - "token_id": 10670, + "token_id": 10668, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98884,7 +98823,7 @@ }, { "str": "win", - "token_id": 10671, + "token_id": 10669, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98893,7 +98832,7 @@ }, { "str": "5", - "token_id": 10672, + "token_id": 10670, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98902,7 +98841,7 @@ }, { "str": "battles", - "token_id": 10673, + "token_id": 10671, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98911,7 +98850,7 @@ }, { "str": "to", - "token_id": 10674, + "token_id": 10672, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98920,7 +98859,7 @@ }, { "str": "succeed", - "token_id": 10675, + "token_id": 10673, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98929,7 +98868,7 @@ }, { "str": "and", - "token_id": 10676, + "token_id": 10674, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98938,7 +98877,7 @@ }, { "str": "lose", - "token_id": 10677, + "token_id": 10675, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98947,7 +98886,7 @@ }, { "str": "3", - "token_id": 10678, + "token_id": 10676, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98956,7 +98895,7 @@ }, { "str": "to", - "token_id": 10679, + "token_id": 10677, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98965,7 +98904,7 @@ }, { "str": "lose", - "token_id": 10680, + "token_id": 10678, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98974,7 +98913,7 @@ }, { "str": ".", - "token_id": 10681, + "token_id": 10679, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98983,7 +98922,7 @@ }, { "str": "or", - "token_id": 10682, + "token_id": 10680, "o_rev_id": 1111606673, "in": [], "out": [ @@ -98992,7 +98931,7 @@ }, { "str": "you", - "token_id": 10683, + "token_id": 10681, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99001,7 +98940,7 @@ }, { "str": "can", - "token_id": 10684, + "token_id": 10682, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99010,7 +98949,7 @@ }, { "str": "play", - "token_id": 10685, + "token_id": 10683, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99019,7 +98958,7 @@ }, { "str": "anarchy", - "token_id": 10686, + "token_id": 10684, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99028,7 +98967,7 @@ }, { "str": "battle", - "token_id": 10687, + "token_id": 10685, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99037,7 +98976,7 @@ }, { "str": "open", - "token_id": 10688, + "token_id": 10686, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99046,7 +98985,7 @@ }, { "str": ",", - "token_id": 10689, + "token_id": 10687, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99055,7 +98994,7 @@ }, { "str": "which", - "token_id": 10690, + "token_id": 10688, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99064,7 +99003,7 @@ }, { "str": "is", - "token_id": 10691, + "token_id": 10689, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99073,7 +99012,7 @@ }, { "str": "just", - "token_id": 10692, + "token_id": 10690, "o_rev_id": 1111606673, "in": [], "out": [ @@ -99082,6 +99021,24 @@ }, { "str": "one", + "token_id": 10691, + "o_rev_id": 1111606673, + "in": [], + "out": [ + 1111608047 + ] + }, + { + "str": "\"", + "token_id": 10692, + "o_rev_id": 1111606673, + "in": [], + "out": [ + 1111608047 + ] + }, + { + "str": "extreme", "token_id": 10693, "o_rev_id": 1111606673, "in": [], @@ -99099,7 +99056,7 @@ ] }, { - "str": "extreme", + "str": "battle", "token_id": 10695, "o_rev_id": 1111606673, "in": [], @@ -99108,7 +99065,7 @@ ] }, { - "str": "\"", + "str": ".", "token_id": 10696, "o_rev_id": 1111606673, "in": [], @@ -99117,7 +99074,7 @@ ] }, { - "str": "battle", + "str": "the", "token_id": 10697, "o_rev_id": 1111606673, "in": [], @@ -99126,7 +99083,7 @@ ] }, { - "str": ".", + "str": "exact", "token_id": 10698, "o_rev_id": 1111606673, "in": [], @@ -99135,7 +99092,7 @@ ] }, { - "str": "the", + "str": "mode", "token_id": 10699, "o_rev_id": 1111606673, "in": [], @@ -99144,7 +99101,7 @@ ] }, { - "str": "exact", + "str": "that", "token_id": 10700, "o_rev_id": 1111606673, "in": [], @@ -99153,7 +99110,7 @@ ] }, { - "str": "mode", + "str": "you", "token_id": 10701, "o_rev_id": 1111606673, "in": [], @@ -99162,7 +99119,7 @@ ] }, { - "str": "that", + "str": "play", "token_id": 10702, "o_rev_id": 1111606673, "in": [], @@ -99171,7 +99128,7 @@ ] }, { - "str": "you", + "str": "rotates", "token_id": 10703, "o_rev_id": 1111606673, "in": [], @@ -99180,7 +99137,7 @@ ] }, { - "str": "play", + "str": "between", "token_id": 10704, "o_rev_id": 1111606673, "in": [], @@ -99189,7 +99146,7 @@ ] }, { - "str": "rotates", + "str": "four", "token_id": 10705, "o_rev_id": 1111606673, "in": [], @@ -99198,7 +99155,7 @@ ] }, { - "str": "between", + "str": "different", "token_id": 10706, "o_rev_id": 1111606673, "in": [], @@ -99207,7 +99164,7 @@ ] }, { - "str": "four", + "str": "game", "token_id": 10707, "o_rev_id": 1111606673, "in": [], @@ -99216,7 +99173,7 @@ ] }, { - "str": "different", + "str": "modes", "token_id": 10708, "o_rev_id": 1111606673, "in": [], @@ -99225,7 +99182,7 @@ ] }, { - "str": "game", + "str": ";", "token_id": 10709, "o_rev_id": 1111606673, "in": [], @@ -99234,7 +99191,7 @@ ] }, { - "str": "modes", + "str": "clam", "token_id": 10710, "o_rev_id": 1111606673, "in": [], @@ -99243,7 +99200,7 @@ ] }, { - "str": ";", + "str": "blitz", "token_id": 10711, "o_rev_id": 1111606673, "in": [], @@ -99252,7 +99209,7 @@ ] }, { - "str": "clam", + "str": ",", "token_id": 10712, "o_rev_id": 1111606673, "in": [], @@ -99261,7 +99218,7 @@ ] }, { - "str": "blitz", + "str": "rainmaker", "token_id": 10713, "o_rev_id": 1111606673, "in": [], @@ -99279,7 +99236,7 @@ ] }, { - "str": "rainmaker", + "str": "splat", "token_id": 10715, "o_rev_id": 1111606673, "in": [], @@ -99288,7 +99245,7 @@ ] }, { - "str": ",", + "str": "zones", "token_id": 10716, "o_rev_id": 1111606673, "in": [], @@ -99297,7 +99254,7 @@ ] }, { - "str": "splat", + "str": ",", "token_id": 10717, "o_rev_id": 1111606673, "in": [], @@ -99306,7 +99263,7 @@ ] }, { - "str": "zones", + "str": "and", "token_id": 10718, "o_rev_id": 1111606673, "in": [], @@ -99315,7 +99272,7 @@ ] }, { - "str": ",", + "str": "tower", "token_id": 10719, "o_rev_id": 1111606673, "in": [], @@ -99324,7 +99281,7 @@ ] }, { - "str": "and", + "str": "control", "token_id": 10720, "o_rev_id": 1111606673, "in": [], @@ -99333,7 +99290,7 @@ ] }, { - "str": "tower", + "str": ".", "token_id": 10721, "o_rev_id": 1111606673, "in": [], @@ -99342,7 +99299,7 @@ ] }, { - "str": "control", + "str": "the", "token_id": 10722, "o_rev_id": 1111606673, "in": [], @@ -99351,7 +99308,7 @@ ] }, { - "str": ".", + "str": "more", "token_id": 10723, "o_rev_id": 1111606673, "in": [], @@ -99360,7 +99317,7 @@ ] }, { - "str": "the", + "str": "points", "token_id": 10724, "o_rev_id": 1111606673, "in": [], @@ -99369,7 +99326,7 @@ ] }, { - "str": "more", + "str": "you", "token_id": 10725, "o_rev_id": 1111606673, "in": [], @@ -99378,7 +99335,7 @@ ] }, { - "str": "points", + "str": "earn", "token_id": 10726, "o_rev_id": 1111606673, "in": [], @@ -99387,7 +99344,7 @@ ] }, { - "str": "you", + "str": "the", "token_id": 10727, "o_rev_id": 1111606673, "in": [], @@ -99396,7 +99353,7 @@ ] }, { - "str": "earn", + "str": "higher", "token_id": 10728, "o_rev_id": 1111606673, "in": [], @@ -99405,7 +99362,7 @@ ] }, { - "str": "the", + "str": "up", "token_id": 10729, "o_rev_id": 1111606673, "in": [], @@ -99414,7 +99371,7 @@ ] }, { - "str": "higher", + "str": "your", "token_id": 10730, "o_rev_id": 1111606673, "in": [], @@ -99423,7 +99380,7 @@ ] }, { - "str": "up", + "str": "rank", "token_id": 10731, "o_rev_id": 1111606673, "in": [], @@ -99432,7 +99389,7 @@ ] }, { - "str": "your", + "str": "goes", "token_id": 10732, "o_rev_id": 1111606673, "in": [], @@ -99441,7 +99398,7 @@ ] }, { - "str": "rank", + "str": ".", "token_id": 10733, "o_rev_id": 1111606673, "in": [], @@ -99450,7 +99407,7 @@ ] }, { - "str": "goes", + "str": "starting", "token_id": 10734, "o_rev_id": 1111606673, "in": [], @@ -99459,7 +99416,7 @@ ] }, { - "str": ".", + "str": "at", "token_id": 10735, "o_rev_id": 1111606673, "in": [], @@ -99468,7 +99425,7 @@ ] }, { - "str": "starting", + "str": "rank", "token_id": 10736, "o_rev_id": 1111606673, "in": [], @@ -99477,7 +99434,7 @@ ] }, { - "str": "at", + "str": "\"", "token_id": 10737, "o_rev_id": 1111606673, "in": [], @@ -99486,7 +99443,7 @@ ] }, { - "str": "rank", + "str": "c", "token_id": 10738, "o_rev_id": 1111606673, "in": [], @@ -99495,7 +99452,7 @@ ] }, { - "str": "\"", + "str": "-", "token_id": 10739, "o_rev_id": 1111606673, "in": [], @@ -99504,7 +99461,7 @@ ] }, { - "str": "c", + "str": "\"", "token_id": 10740, "o_rev_id": 1111606673, "in": [], @@ -99513,7 +99470,7 @@ ] }, { - "str": "-", + "str": "you", "token_id": 10741, "o_rev_id": 1111606673, "in": [], @@ -99522,7 +99479,7 @@ ] }, { - "str": "\"", + "str": "can", "token_id": 10742, "o_rev_id": 1111606673, "in": [], @@ -99531,7 +99488,7 @@ ] }, { - "str": "you", + "str": "get", "token_id": 10743, "o_rev_id": 1111606673, "in": [], @@ -99540,7 +99497,7 @@ ] }, { - "str": "can", + "str": "to", "token_id": 10744, "o_rev_id": 1111606673, "in": [], @@ -99549,7 +99506,7 @@ ] }, { - "str": "get", + "str": "\"", "token_id": 10745, "o_rev_id": 1111606673, "in": [], @@ -99558,7 +99515,7 @@ ] }, { - "str": "to", + "str": "c", "token_id": 10746, "o_rev_id": 1111606673, "in": [], @@ -99567,7 +99524,7 @@ ] }, { - "str": "\"", + "str": ",", "token_id": 10747, "o_rev_id": 1111606673, "in": [], @@ -99585,7 +99542,7 @@ ] }, { - "str": ",", + "str": "+", "token_id": 10749, "o_rev_id": 1111606673, "in": [], @@ -99594,7 +99551,7 @@ ] }, { - "str": "c", + "str": ",", "token_id": 10750, "o_rev_id": 1111606673, "in": [], @@ -99603,7 +99560,7 @@ ] }, { - "str": "+", + "str": "b", "token_id": 10751, "o_rev_id": 1111606673, "in": [], @@ -99612,7 +99569,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 10752, "o_rev_id": 1111606673, "in": [], @@ -99621,7 +99578,7 @@ ] }, { - "str": "b", + "str": ",", "token_id": 10753, "o_rev_id": 1111606673, "in": [], @@ -99630,7 +99587,7 @@ ] }, { - "str": "-", + "str": "b", "token_id": 10754, "o_rev_id": 1111606673, "in": [], @@ -99657,7 +99614,7 @@ ] }, { - "str": ",", + "str": "+", "token_id": 10757, "o_rev_id": 1111606673, "in": [], @@ -99666,7 +99623,7 @@ ] }, { - "str": "b", + "str": ",", "token_id": 10758, "o_rev_id": 1111606673, "in": [], @@ -99675,7 +99632,7 @@ ] }, { - "str": "+", + "str": "a", "token_id": 10759, "o_rev_id": 1111606673, "in": [], @@ -99684,7 +99641,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 10760, "o_rev_id": 1111606673, "in": [], @@ -99693,7 +99650,7 @@ ] }, { - "str": "a", + "str": ",", "token_id": 10761, "o_rev_id": 1111606673, "in": [], @@ -99702,7 +99659,7 @@ ] }, { - "str": "-", + "str": "a", "token_id": 10762, "o_rev_id": 1111606673, "in": [], @@ -99729,7 +99686,7 @@ ] }, { - "str": ",", + "str": "+", "token_id": 10765, "o_rev_id": 1111606673, "in": [], @@ -99738,7 +99695,7 @@ ] }, { - "str": "a", + "str": ",", "token_id": 10766, "o_rev_id": 1111606673, "in": [], @@ -99747,7 +99704,7 @@ ] }, { - "str": "+", + "str": "s", "token_id": 10767, "o_rev_id": 1111606673, "in": [], @@ -99756,7 +99713,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 10768, "o_rev_id": 1111606673, "in": [], @@ -99765,7 +99722,7 @@ ] }, { - "str": "s", + "str": ",", "token_id": 10769, "o_rev_id": 1111606673, "in": [], @@ -99774,7 +99731,7 @@ ] }, { - "str": "-", + "str": "s", "token_id": 10770, "o_rev_id": 1111606673, "in": [], @@ -99801,7 +99758,7 @@ ] }, { - "str": ",", + "str": "+", "token_id": 10773, "o_rev_id": 1111606673, "in": [], @@ -99810,7 +99767,7 @@ ] }, { - "str": "s", + "str": ",", "token_id": 10774, "o_rev_id": 1111606673, "in": [], @@ -99819,7 +99776,7 @@ ] }, { - "str": "+", + "str": "s", "token_id": 10775, "o_rev_id": 1111606673, "in": [], @@ -99828,7 +99785,7 @@ ] }, { - "str": ",", + "str": "+", "token_id": 10776, "o_rev_id": 1111606673, "in": [], @@ -99837,7 +99794,7 @@ ] }, { - "str": "s", + "str": "1", "token_id": 10777, "o_rev_id": 1111606673, "in": [], @@ -99846,7 +99803,7 @@ ] }, { - "str": "+", + "str": ",", "token_id": 10778, "o_rev_id": 1111606673, "in": [], @@ -99855,7 +99812,7 @@ ] }, { - "str": "1", + "str": "s", "token_id": 10779, "o_rev_id": 1111606673, "in": [], @@ -99864,7 +99821,7 @@ ] }, { - "str": ",", + "str": "+", "token_id": 10780, "o_rev_id": 1111606673, "in": [], @@ -99873,7 +99830,7 @@ ] }, { - "str": "s", + "str": "2", "token_id": 10781, "o_rev_id": 1111606673, "in": [], @@ -99882,7 +99839,7 @@ ] }, { - "str": "+", + "str": ",", "token_id": 10782, "o_rev_id": 1111606673, "in": [], @@ -99891,7 +99848,7 @@ ] }, { - "str": "2", + "str": "etc", "token_id": 10783, "o_rev_id": 1111606673, "in": [], @@ -99900,7 +99857,7 @@ ] }, { - "str": ",", + "str": ".", "token_id": 10784, "o_rev_id": 1111606673, "in": [], @@ -99909,7 +99866,7 @@ ] }, { - "str": "etc", + "str": "to", "token_id": 10785, "o_rev_id": 1111606673, "in": [], @@ -99918,7 +99875,7 @@ ] }, { - "str": ".", + "str": "s", "token_id": 10786, "o_rev_id": 1111606673, "in": [], @@ -99927,7 +99884,7 @@ ] }, { - "str": "to", + "str": "+", "token_id": 10787, "o_rev_id": 1111606673, "in": [], @@ -99936,7 +99893,7 @@ ] }, { - "str": "s", + "str": "50", "token_id": 10788, "o_rev_id": 1111606673, "in": [], @@ -99945,7 +99902,7 @@ ] }, { - "str": "+", + "str": ",", "token_id": 10789, "o_rev_id": 1111606673, "in": [], @@ -99954,7 +99911,7 @@ ] }, { - "str": "50", + "str": "and", "token_id": 10790, "o_rev_id": 1111606673, "in": [], @@ -99963,7 +99920,7 @@ ] }, { - "str": ",", + "str": "x", "token_id": 10791, "o_rev_id": 1111606673, "in": [], @@ -99972,7 +99929,7 @@ ] }, { - "str": "and", + "str": "rank", "token_id": 10792, "o_rev_id": 1111606673, "in": [], @@ -99981,7 +99938,7 @@ ] }, { - "str": "x", + "str": "\"", "token_id": 10793, "o_rev_id": 1111606673, "in": [], @@ -99990,7 +99947,7 @@ ] }, { - "str": "rank", + "str": "respectively", "token_id": 10794, "o_rev_id": 1111606673, "in": [], @@ -100008,7 +99965,7 @@ ] }, { - "str": "respectively", + "str": "alterna", "token_id": 10796, "o_rev_id": 1111606673, "in": [], @@ -100026,7 +99983,7 @@ ] }, { - "str": "alterna", + "str": "contraption", "token_id": 10798, "o_rev_id": 1111606673, "in": [], @@ -100035,7 +99992,7 @@ ] }, { - "str": "\"", + "str": "the", "token_id": 10799, "o_rev_id": 1111606673, "in": [], @@ -100044,7 +100001,7 @@ ] }, { - "str": "contraption", + "str": "\"", "token_id": 10800, "o_rev_id": 1111606673, "in": [], @@ -100053,7 +100010,7 @@ ] }, { - "str": "the", + "str": "stringer", "token_id": 10801, "o_rev_id": 1111606673, "in": [], @@ -100070,27 +100027,9 @@ 1111608047 ] }, - { - "str": "stringer", - "token_id": 10803, - "o_rev_id": 1111606673, - "in": [], - "out": [ - 1111608047 - ] - }, - { - "str": "\"", - "token_id": 10804, - "o_rev_id": 1111606673, - "in": [], - "out": [ - 1111608047 - ] - }, { "str": "weapon", - "token_id": 10805, + "token_id": 10803, "o_rev_id": 1111606673, "in": [], "out": [ @@ -100099,7 +100038,7 @@ }, { "str": "class", - "token_id": 10806, + "token_id": 10804, "o_rev_id": 1111606673, "in": [], "out": [ @@ -100108,7 +100047,7 @@ }, { "str": "although", - "token_id": 10807, + "token_id": 10805, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100117,7 +100056,7 @@ }, { "str": "before", - "token_id": 10808, + "token_id": 10806, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100126,7 +100065,7 @@ }, { "str": "launch", - "token_id": 10809, + "token_id": 10807, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100135,7 +100074,7 @@ }, { "str": "some", - "token_id": 10810, + "token_id": 10808, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100144,7 +100083,7 @@ }, { "str": "believed", - "token_id": 10811, + "token_id": 10809, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100153,7 +100092,7 @@ }, { "str": "splatoon", - "token_id": 10812, + "token_id": 10810, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100162,7 +100101,7 @@ }, { "str": "3", - "token_id": 10813, + "token_id": 10811, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100171,7 +100110,7 @@ }, { "str": "was", - "token_id": 10814, + "token_id": 10812, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100180,7 +100119,7 @@ }, { "str": "a", - "token_id": 10815, + "token_id": 10813, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100189,7 +100128,7 @@ }, { "str": "\"", - "token_id": 10816, + "token_id": 10814, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100198,7 +100137,7 @@ }, { "str": "minor", - "token_id": 10817, + "token_id": 10815, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100207,7 +100146,7 @@ }, { "str": "installment", - "token_id": 10818, + "token_id": 10816, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100216,7 +100155,7 @@ }, { "str": "\"", - "token_id": 10819, + "token_id": 10817, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100225,7 +100164,7 @@ }, { "str": "or", - "token_id": 10820, + "token_id": 10818, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100234,7 +100173,7 @@ }, { "str": "\"", - "token_id": 10821, + "token_id": 10819, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100243,7 +100182,7 @@ }, { "str": "splatoon", - "token_id": 10822, + "token_id": 10820, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100252,7 +100191,7 @@ }, { "str": "2", - "token_id": 10823, + "token_id": 10821, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100261,7 +100200,7 @@ }, { "str": ".", - "token_id": 10824, + "token_id": 10822, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100270,7 +100209,7 @@ }, { "str": "5", - "token_id": 10825, + "token_id": 10823, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100279,7 +100218,7 @@ }, { "str": "\"", - "token_id": 10826, + "token_id": 10824, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100288,7 +100227,7 @@ }, { "str": "it", - "token_id": 10827, + "token_id": 10825, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100297,7 +100236,7 @@ }, { "str": "seems", - "token_id": 10828, + "token_id": 10826, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100306,7 +100245,7 @@ }, { "str": "reception", - "token_id": 10829, + "token_id": 10827, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100315,7 +100254,7 @@ }, { "str": "post", - "token_id": 10830, + "token_id": 10828, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100324,7 +100263,7 @@ }, { "str": "launch", - "token_id": 10831, + "token_id": 10829, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100333,7 +100272,7 @@ }, { "str": "is", - "token_id": 10832, + "token_id": 10830, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100342,7 +100281,7 @@ }, { "str": "positive", - "token_id": 10833, + "token_id": 10831, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100351,7 +100290,7 @@ }, { "str": "and", - "token_id": 10834, + "token_id": 10832, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100360,7 +100299,7 @@ }, { "str": "many", - "token_id": 10835, + "token_id": 10833, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100369,7 +100308,7 @@ }, { "str": "fans", - "token_id": 10836, + "token_id": 10834, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100378,7 +100317,7 @@ }, { "str": "enjoy", - "token_id": 10837, + "token_id": 10835, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100387,7 +100326,7 @@ }, { "str": "the", - "token_id": 10838, + "token_id": 10836, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100396,7 +100335,7 @@ }, { "str": "new", - "token_id": 10839, + "token_id": 10837, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100405,7 +100344,7 @@ }, { "str": "installment", - "token_id": 10840, + "token_id": 10838, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100414,7 +100353,7 @@ }, { "str": ".", - "token_id": 10841, + "token_id": 10839, "o_rev_id": 1111607876, "in": [], "out": [ @@ -100423,7 +100362,7 @@ }, { "str": "(", - "token_id": 10842, + "token_id": 10840, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100432,7 +100371,7 @@ }, { "str": "composed", - "token_id": 10843, + "token_id": 10841, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100441,7 +100380,7 @@ }, { "str": "of", - "token_id": 10844, + "token_id": 10842, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100450,7 +100389,7 @@ }, { "str": "frye", - "token_id": 10845, + "token_id": 10843, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100459,7 +100398,7 @@ }, { "str": ",", - "token_id": 10846, + "token_id": 10844, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100468,7 +100407,7 @@ }, { "str": "shiver", - "token_id": 10847, + "token_id": 10845, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100477,7 +100416,7 @@ }, { "str": ",", - "token_id": 10848, + "token_id": 10846, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100486,7 +100425,7 @@ }, { "str": "and", - "token_id": 10849, + "token_id": 10847, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100495,7 +100434,7 @@ }, { "str": "big", - "token_id": 10850, + "token_id": 10848, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100504,7 +100443,7 @@ }, { "str": "man", - "token_id": 10851, + "token_id": 10849, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100513,7 +100452,7 @@ }, { "str": ")", - "token_id": 10852, + "token_id": 10850, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100522,7 +100461,7 @@ }, { "str": "shark", - "token_id": 10853, + "token_id": 10851, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100531,7 +100470,7 @@ }, { "str": "come", - "token_id": 10854, + "token_id": 10852, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100540,7 +100479,7 @@ }, { "str": "to", - "token_id": 10855, + "token_id": 10853, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100549,7 +100488,7 @@ }, { "str": "terms", - "token_id": 10856, + "token_id": 10854, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100558,7 +100497,7 @@ }, { "str": "with", - "token_id": 10857, + "token_id": 10855, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100567,7 +100506,7 @@ }, { "str": "his", - "token_id": 10858, + "token_id": 10856, "o_rev_id": 1111632970, "in": [], "out": [ @@ -100576,7 +100515,7 @@ }, { "str": ".", - "token_id": 10859, + "token_id": 10857, "o_rev_id": 1111799617, "in": [], "out": [ @@ -100585,7 +100524,7 @@ }, { "str": "become", - "token_id": 10860, + "token_id": 10858, "o_rev_id": 1111799617, "in": [], "out": [ @@ -100594,7 +100533,7 @@ }, { "str": "one", - "token_id": 10861, + "token_id": 10859, "o_rev_id": 1111799617, "in": [], "out": [ @@ -100603,7 +100542,7 @@ }, { "str": "of", - "token_id": 10862, + "token_id": 10860, "o_rev_id": 1111799617, "in": [], "out": [ @@ -100612,7 +100551,7 @@ }, { "str": "mammals", - "token_id": 10863, + "token_id": 10861, "o_rev_id": 1111799617, "in": [], "out": [ @@ -100621,7 +100560,7 @@ }, { "str": "left", - "token_id": 10864, + "token_id": 10862, "o_rev_id": 1111799617, "in": [], "out": [ @@ -100630,56 +100569,56 @@ }, { "str": "[[", - "token_id": 10865, + "token_id": 10863, "o_rev_id": 1111921385, "in": [], "out": [] }, { "str": "systems", - "token_id": 10866, + "token_id": 10864, "o_rev_id": 1111921385, "in": [], "out": [] }, { "str": "research", - "token_id": 10867, + "token_id": 10865, "o_rev_id": 1111921385, "in": [], "out": [] }, { "str": "&", - "token_id": 10868, + "token_id": 10866, "o_rev_id": 1111921385, "in": [], "out": [] }, { "str": "development", - "token_id": 10869, + "token_id": 10867, "o_rev_id": 1111921385, "in": [], "out": [] }, { "str": "|", - "token_id": 10870, + "token_id": 10868, "o_rev_id": 1111921385, "in": [], "out": [] }, { "str": "]]", - "token_id": 10871, + "token_id": 10869, "o_rev_id": 1111921385, "in": [], "out": [] }, { "str": "of", - "token_id": 10872, + "token_id": 10870, "o_rev_id": 1111921385, "in": [ 1117591128 @@ -100690,7 +100629,7 @@ }, { "str": "five", - "token_id": 10873, + "token_id": 10871, "o_rev_id": 1111921385, "in": [ 1117591128 @@ -100701,65 +100640,63 @@ }, { "str": "23", - "token_id": 10874, + "token_id": 10872, "o_rev_id": 1111943650, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "|", - "token_id": 10875, + "token_id": 10873, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "eurog", - "token_id": 10876, + "token_id": 10874, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 10877, + "token_id": 10875, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "recommended", - "token_id": 10878, + "token_id": 10876, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "<", - "token_id": 10879, + "token_id": 10877, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "ref", - "token_id": 10880, + "token_id": 10878, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": ">", - "token_id": 10881, + "token_id": 10879, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "{{", - "token_id": 10882, + "token_id": 10880, "o_rev_id": 1111976824, "in": [ 1202097960 @@ -100770,21 +100707,29 @@ }, { "str": "cite", - "token_id": 10883, + "token_id": 10881, "o_rev_id": 1111976824, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "web", - "token_id": 10884, + "token_id": 10882, "o_rev_id": 1111976824, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 10885, + "token_id": 10883, "o_rev_id": 1111976824, "in": [ 1202097960 @@ -100795,14 +100740,7 @@ }, { "str": "last", - "token_id": 10886, - "o_rev_id": 1111976824, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 10887, + "token_id": 10884, "o_rev_id": 1111976824, "in": [ 1202097960 @@ -100811,73 +100749,72 @@ 1202071552 ] }, + { + "str": "=", + "token_id": 10885, + "o_rev_id": 1111976824, + "in": [], + "out": [] + }, { "str": "robinson", - "token_id": 10888, + "token_id": 10886, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 10889, + "token_id": 10887, "o_rev_id": 1111976824, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "first", - "token_id": 10890, + "token_id": 10888, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 10891, + "token_id": 10889, "o_rev_id": 1111976824, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "martin", - "token_id": 10892, + "token_id": 10890, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 10893, + "token_id": 10891, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "date", - "token_id": 10894, + "token_id": 10892, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 10895, + "token_id": 10893, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "7", - "token_id": 10896, + "token_id": 10894, "o_rev_id": 1111976824, "in": [ 1202097960 @@ -100888,69 +100825,99 @@ }, { "str": "september", - "token_id": 10897, + "token_id": 10895, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "2022", - "token_id": 10898, + "token_id": 10896, "o_rev_id": 1111976824, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 10899, + "token_id": 10897, "o_rev_id": 1111976824, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "url", + "token_id": 10898, + "o_rev_id": 1111976824, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "=", + "token_id": 10899, + "o_rev_id": 1111976824, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "https", "token_id": 10900, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "=", + "str": ":", "token_id": 10901, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "https", + "str": "/", "token_id": 10902, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": ":", + "str": "/", "token_id": 10903, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "/", + "str": "www", "token_id": 10904, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "/", + "str": ".", "token_id": 10905, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "www", + "str": "eurogamer", "token_id": 10906, "o_rev_id": 1111976824, "in": [], @@ -100964,35 +100931,35 @@ "out": [] }, { - "str": "eurogamer", + "str": "net", "token_id": 10908, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": ".", + "str": "/", "token_id": 10909, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "net", + "str": "splatoon", "token_id": 10910, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "/", + "str": "-", "token_id": 10911, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "splatoon", + "str": "3", "token_id": 10912, "o_rev_id": 1111976824, "in": [], @@ -101006,7 +100973,7 @@ "out": [] }, { - "str": "3", + "str": "review", "token_id": 10914, "o_rev_id": 1111976824, "in": [], @@ -101020,7 +100987,7 @@ "out": [] }, { - "str": "review", + "str": "a", "token_id": 10916, "o_rev_id": 1111976824, "in": [], @@ -101034,7 +101001,7 @@ "out": [] }, { - "str": "a", + "str": "lot", "token_id": 10918, "o_rev_id": 1111976824, "in": [], @@ -101048,7 +101015,7 @@ "out": [] }, { - "str": "lot", + "str": "more", "token_id": 10920, "o_rev_id": 1111976824, "in": [], @@ -101062,7 +101029,7 @@ "out": [] }, { - "str": "more", + "str": "of", "token_id": 10922, "o_rev_id": 1111976824, "in": [], @@ -101076,7 +101043,7 @@ "out": [] }, { - "str": "of", + "str": "the", "token_id": 10924, "o_rev_id": 1111976824, "in": [], @@ -101090,7 +101057,7 @@ "out": [] }, { - "str": "the", + "str": "brilliant", "token_id": 10926, "o_rev_id": 1111976824, "in": [], @@ -101104,82 +101071,64 @@ "out": [] }, { - "str": "brilliant", + "str": "same", "token_id": 10928, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "-", + "str": "|", "token_id": 10929, "o_rev_id": 1111976824, "in": [], "out": [] }, { - "str": "same", + "str": "title", "token_id": 10930, "o_rev_id": 1111976824, "in": [], "out": [] }, - { - "str": "|", - "token_id": 10931, - "o_rev_id": 1111976824, - "in": [], - "out": [] - }, - { - "str": "title", - "token_id": 10932, - "o_rev_id": 1111976824, - "in": [], - "out": [ - 1140535097 - ] - }, { "str": "=", - "token_id": 10933, + "token_id": 10931, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 10934, + "token_id": 10932, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "3", - "token_id": 10935, + "token_id": 10933, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "review", - "token_id": 10936, + "token_id": 10934, "o_rev_id": 1111976824, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "-", - "token_id": 10937, + "token_id": 10935, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "alot", - "token_id": 10938, + "token_id": 10936, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101188,95 +101137,91 @@ }, { "str": "more", - "token_id": 10939, + "token_id": 10937, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "of", - "token_id": 10940, + "token_id": 10938, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "the", - "token_id": 10941, + "token_id": 10939, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "brilliant", - "token_id": 10942, + "token_id": 10940, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "game", - "token_id": 10943, + "token_id": 10941, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 10944, + "token_id": 10942, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "website", - "token_id": 10945, + "token_id": 10943, "o_rev_id": 1111976824, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", - "token_id": 10946, + "token_id": 10944, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "[[", - "token_id": 10947, + "token_id": 10945, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "eurogamer", - "token_id": 10948, + "token_id": 10946, "o_rev_id": 1111976824, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "]]", - "token_id": 10949, + "token_id": 10947, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 10950, + "token_id": 10948, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "accessdate", - "token_id": 10951, + "token_id": 10949, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101285,258 +101230,253 @@ }, { "str": "=", - "token_id": 10952, + "token_id": 10950, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "23", - "token_id": 10953, + "token_id": 10951, "o_rev_id": 1111976824, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "september", - "token_id": 10954, + "token_id": 10952, "o_rev_id": 1111976824, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1140535097 + 1202071552 ] }, { "str": "2022", - "token_id": 10955, + "token_id": 10953, "o_rev_id": 1111976824, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1140535097 + 1202071552 ] }, { "str": "}}", - "token_id": 10956, + "token_id": 10954, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "<", - "token_id": 10957, + "token_id": 10955, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "/", - "token_id": 10958, + "token_id": 10956, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "ref", - "token_id": 10959, + "token_id": 10957, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": ">", - "token_id": 10960, + "token_id": 10958, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 10961, + "token_id": 10959, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "gspot", - "token_id": 10962, + "token_id": 10960, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 10963, + "token_id": 10961, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "7", - "token_id": 10964, + "token_id": 10962, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "/", - "token_id": 10965, + "token_id": 10963, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "10", - "token_id": 10966, + "token_id": 10964, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "<", - "token_id": 10967, + "token_id": 10965, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "ref", - "token_id": 10968, + "token_id": 10966, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": ">", - "token_id": 10969, + "token_id": 10967, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "{{", - "token_id": 10970, + "token_id": 10968, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "cite", - "token_id": 10971, + "token_id": 10969, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "web", - "token_id": 10972, + "token_id": 10970, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 10973, + "token_id": 10971, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "last", - "token_id": 10974, + "token_id": 10972, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 10975, + "token_id": 10973, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "watts", - "token_id": 10976, + "token_id": 10974, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 10977, + "token_id": 10975, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "first", - "token_id": 10978, + "token_id": 10976, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 10979, + "token_id": 10977, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "steve", - "token_id": 10980, + "token_id": 10978, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 10981, + "token_id": 10979, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "date", - "token_id": 10982, + "token_id": 10980, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 10983, + "token_id": 10981, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "19", - "token_id": 10984, + "token_id": 10982, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "september", - "token_id": 10985, + "token_id": 10983, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "2022", - "token_id": 10986, - "o_rev_id": 1111976824, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 10987, + "token_id": 10984, "o_rev_id": 1111976824, "in": [ 1202097960 @@ -101545,181 +101485,184 @@ 1202071552 ] }, + { + "str": "|", + "token_id": 10985, + "o_rev_id": 1111976824, + "in": [], + "out": [] + }, { "str": "url", - "token_id": 10988, + "token_id": 10986, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 10989, + "token_id": 10987, "o_rev_id": 1111976824, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "https", - "token_id": 10990, + "token_id": 10988, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": ":", - "token_id": 10991, + "token_id": 10989, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "/", - "token_id": 10992, + "token_id": 10990, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "/", - "token_id": 10993, + "token_id": 10991, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "www", - "token_id": 10994, + "token_id": 10992, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": ".", - "token_id": 10995, + "token_id": 10993, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "gamespot", - "token_id": 10996, + "token_id": 10994, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": ".", - "token_id": 10997, + "token_id": 10995, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "com", - "token_id": 10998, + "token_id": 10996, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "/", - "token_id": 10999, + "token_id": 10997, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "reviews", - "token_id": 11000, + "token_id": 10998, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "/", - "token_id": 11001, + "token_id": 10999, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 11002, + "token_id": 11000, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "-", - "token_id": 11003, + "token_id": 11001, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "3", - "token_id": 11004, + "token_id": 11002, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "-", - "token_id": 11005, + "token_id": 11003, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "review", - "token_id": 11006, + "token_id": 11004, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "/", - "token_id": 11007, + "token_id": 11005, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "1900", - "token_id": 11008, + "token_id": 11006, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "-", - "token_id": 11009, + "token_id": 11007, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "6417951", - "token_id": 11010, + "token_id": 11008, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "|", - "token_id": 11011, + "token_id": 11009, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "title", - "token_id": 11012, + "token_id": 11010, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101728,28 +101671,28 @@ }, { "str": "=", - "token_id": 11013, + "token_id": 11011, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 11014, + "token_id": 11012, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "3", - "token_id": 11015, + "token_id": 11013, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "review", - "token_id": 11016, + "token_id": 11014, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101758,28 +101701,28 @@ }, { "str": "|", - "token_id": 11017, + "token_id": 11015, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "website", - "token_id": 11018, + "token_id": 11016, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "=", - "token_id": 11019, + "token_id": 11017, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "[[", - "token_id": 11020, + "token_id": 11018, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101788,7 +101731,7 @@ }, { "str": "gamespot", - "token_id": 11021, + "token_id": 11019, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101797,7 +101740,7 @@ }, { "str": "]]", - "token_id": 11022, + "token_id": 11020, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101806,14 +101749,14 @@ }, { "str": "|", - "token_id": 11023, + "token_id": 11021, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "accessdate", - "token_id": 11024, + "token_id": 11022, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101822,14 +101765,14 @@ }, { "str": "=", - "token_id": 11025, + "token_id": 11023, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "23", - "token_id": 11026, + "token_id": 11024, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101838,7 +101781,7 @@ }, { "str": "september", - "token_id": 11027, + "token_id": 11025, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101847,14 +101790,18 @@ }, { "str": "2022", - "token_id": 11028, + "token_id": 11026, "o_rev_id": 1111976824, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "}}", - "token_id": 11029, + "token_id": 11027, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101863,7 +101810,7 @@ }, { "str": "<", - "token_id": 11030, + "token_id": 11028, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101872,14 +101819,14 @@ }, { "str": "/", - "token_id": 11031, + "token_id": 11029, "o_rev_id": 1111976824, "in": [], "out": [] }, { "str": "ref", - "token_id": 11032, + "token_id": 11030, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101888,7 +101835,7 @@ }, { "str": ">", - "token_id": 11033, + "token_id": 11031, "o_rev_id": 1111976824, "in": [], "out": [ @@ -101897,14 +101844,14 @@ }, { "str": "worldwide", - "token_id": 11034, + "token_id": 11032, "o_rev_id": 1112359500, "in": [], "out": [] }, { "str": "'", - "token_id": 11035, + "token_id": 11033, "o_rev_id": 1112703902, "in": [ 1115512328 @@ -101916,35 +101863,35 @@ }, { "str": "'", - "token_id": 11036, + "token_id": 11034, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "|", - "token_id": 11037, + "token_id": 11035, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "vgc", - "token_id": 11038, + "token_id": 11036, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11039, + "token_id": 11037, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "{{", - "token_id": 11040, + "token_id": 11038, "o_rev_id": 1112703902, "in": [], "out": [ @@ -101953,7 +101900,7 @@ }, { "str": "rating", - "token_id": 11041, + "token_id": 11039, "o_rev_id": 1112703902, "in": [], "out": [ @@ -101962,7 +101909,7 @@ }, { "str": "|", - "token_id": 11042, + "token_id": 11040, "o_rev_id": 1112703902, "in": [], "out": [ @@ -101971,14 +101918,14 @@ }, { "str": "3", - "token_id": 11043, + "token_id": 11041, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "|", - "token_id": 11044, + "token_id": 11042, "o_rev_id": 1112703902, "in": [], "out": [ @@ -101987,14 +101934,14 @@ }, { "str": "5", - "token_id": 11045, + "token_id": 11043, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "}}", - "token_id": 11046, + "token_id": 11044, "o_rev_id": 1112703902, "in": [], "out": [ @@ -102003,142 +101950,140 @@ }, { "str": "<", - "token_id": 11047, + "token_id": 11045, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "ref", - "token_id": 11048, + "token_id": 11046, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": ">", - "token_id": 11049, + "token_id": 11047, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "{{", - "token_id": 11050, + "token_id": 11048, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "cite", - "token_id": 11051, + "token_id": 11049, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "web", - "token_id": 11052, + "token_id": 11050, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "|", - "token_id": 11053, + "token_id": 11051, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "last", - "token_id": 11054, + "token_id": 11052, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11055, + "token_id": 11053, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "castle", - "token_id": 11056, + "token_id": 11054, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "|", - "token_id": 11057, + "token_id": 11055, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "first", - "token_id": 11058, + "token_id": 11056, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11059, + "token_id": 11057, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "matthew", - "token_id": 11060, + "token_id": 11058, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "|", - "token_id": 11061, + "token_id": 11059, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "date", - "token_id": 11062, + "token_id": 11060, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11063, + "token_id": 11061, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "2022", - "token_id": 11064, + "token_id": 11062, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "-", - "token_id": 11065, + "token_id": 11063, "o_rev_id": 1112703902, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "09", - "token_id": 11066, + "token_id": 11064, "o_rev_id": 1112703902, "in": [], "out": [ @@ -102147,16 +102092,18 @@ }, { "str": "-", - "token_id": 11067, + "token_id": 11065, "o_rev_id": 1112703902, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552 ] }, { "str": "07", - "token_id": 11068, + "token_id": 11066, "o_rev_id": 1112703902, "in": [], "out": [ @@ -102165,335 +102112,341 @@ }, { "str": "|", - "token_id": 11069, + "token_id": 11067, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "title", - "token_id": 11070, + "token_id": 11068, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11071, + "token_id": 11069, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "review", - "token_id": 11072, + "token_id": 11070, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": ":", - "token_id": 11073, + "token_id": 11071, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 11074, + "token_id": 11072, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "3", - "token_id": 11075, + "token_id": 11073, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "gives", - "token_id": 11076, + "token_id": 11074, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 11077, + "token_id": 11075, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "'", - "token_id": 11078, + "token_id": 11076, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "s", - "token_id": 11079, + "token_id": 11077, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "weirdest", - "token_id": 11080, + "token_id": 11078, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "world", - "token_id": 11081, + "token_id": 11079, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "its", - "token_id": 11082, + "token_id": 11080, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "safest", - "token_id": 11083, + "token_id": 11081, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "sequel", - "token_id": 11084, + "token_id": 11082, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "|", - "token_id": 11085, + "token_id": 11083, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "url", - "token_id": 11086, + "token_id": 11084, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11087, + "token_id": 11085, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "https", - "token_id": 11088, + "token_id": 11086, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": ":", - "token_id": 11089, + "token_id": 11087, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "/", - "token_id": 11090, + "token_id": 11088, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "/", - "token_id": 11091, + "token_id": 11089, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "www", - "token_id": 11092, + "token_id": 11090, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": ".", - "token_id": 11093, + "token_id": 11091, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "videogameschronicle", - "token_id": 11094, + "token_id": 11092, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": ".", - "token_id": 11095, + "token_id": 11093, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "com", - "token_id": 11096, + "token_id": 11094, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "/", - "token_id": 11097, + "token_id": 11095, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "review", - "token_id": 11098, + "token_id": 11096, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "/", - "token_id": 11099, + "token_id": 11097, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "splatoon3", - "token_id": 11100, + "token_id": 11098, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "/", - "token_id": 11101, + "token_id": 11099, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "|", - "token_id": 11102, + "token_id": 11100, "o_rev_id": 1112703902, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "url", - "token_id": 11103, + "token_id": 11101, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "-", - "token_id": 11104, + "token_id": 11102, "o_rev_id": 1112703902, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "status", - "token_id": 11105, + "token_id": 11103, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11106, + "token_id": 11104, "o_rev_id": 1112703902, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "live", - "token_id": 11107, + "token_id": 11105, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "|", - "token_id": 11108, + "token_id": 11106, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "access", - "token_id": 11109, + "token_id": 11107, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "-", - "token_id": 11110, + "token_id": 11108, "o_rev_id": 1112703902, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552 ] }, { "str": "date", - "token_id": 11111, + "token_id": 11109, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11112, + "token_id": 11110, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "2022", - "token_id": 11113, + "token_id": 11111, "o_rev_id": 1112703902, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 11114, + "token_id": 11112, "o_rev_id": 1112703902, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "09", - "token_id": 11115, + "token_id": 11113, "o_rev_id": 1112703902, "in": [], "out": [ @@ -102502,16 +102455,14 @@ }, { "str": "-", - "token_id": 11116, + "token_id": 11114, "o_rev_id": 1112703902, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "27", - "token_id": 11117, + "token_id": 11115, "o_rev_id": 1112703902, "in": [], "out": [ @@ -102520,35 +102471,37 @@ }, { "str": "|", - "token_id": 11118, + "token_id": 11116, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "website", - "token_id": 11119, + "token_id": 11117, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11120, + "token_id": 11118, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "[[", - "token_id": 11121, + "token_id": 11119, "o_rev_id": 1112703902, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "video", - "token_id": 11122, + "token_id": 11120, "o_rev_id": 1112703902, "in": [], "out": [ @@ -102557,7 +102510,7 @@ }, { "str": "games", - "token_id": 11123, + "token_id": 11121, "o_rev_id": 1112703902, "in": [], "out": [ @@ -102566,7 +102519,7 @@ }, { "str": "chronicle", - "token_id": 11124, + "token_id": 11122, "o_rev_id": 1112703902, "in": [], "out": [ @@ -102575,126 +102528,128 @@ }, { "str": "]]", - "token_id": 11125, + "token_id": 11123, "o_rev_id": 1112703902, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "|", - "token_id": 11126, + "token_id": 11124, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "language", - "token_id": 11127, + "token_id": 11125, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "=", - "token_id": 11128, + "token_id": 11126, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "en", - "token_id": 11129, + "token_id": 11127, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "-", - "token_id": 11130, + "token_id": 11128, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "gb", - "token_id": 11131, + "token_id": 11129, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "}}", - "token_id": 11132, + "token_id": 11130, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "<", - "token_id": 11133, + "token_id": 11131, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "/", - "token_id": 11134, + "token_id": 11132, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "ref", - "token_id": 11135, + "token_id": 11133, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": ">", - "token_id": 11136, + "token_id": 11134, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "'", - "token_id": 11137, + "token_id": 11135, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "'", - "token_id": 11138, + "token_id": 11136, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 11139, + "token_id": 11137, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "'", - "token_id": 11140, + "token_id": 11138, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "'", - "token_id": 11141, + "token_id": 11139, "o_rev_id": 1112703902, "in": [], "out": [] }, { "str": "with", - "token_id": 11142, + "token_id": 11140, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102703,7 +102658,7 @@ }, { "str": "85", - "token_id": 11143, + "token_id": 11141, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102712,7 +102667,7 @@ }, { "str": "reviews", - "token_id": 11144, + "token_id": 11142, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102721,7 +102676,7 @@ }, { "str": "on", - "token_id": 11145, + "token_id": 11143, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102730,7 +102685,7 @@ }, { "str": "[[", - "token_id": 11146, + "token_id": 11144, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102739,7 +102694,7 @@ }, { "str": "opencritic", - "token_id": 11147, + "token_id": 11145, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102748,7 +102703,7 @@ }, { "str": "]]", - "token_id": 11148, + "token_id": 11146, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102757,7 +102712,7 @@ }, { "str": ",", - "token_id": 11149, + "token_id": 11147, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102766,7 +102721,7 @@ }, { "str": "it", - "token_id": 11150, + "token_id": 11148, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102775,7 +102730,7 @@ }, { "str": "received", - "token_id": 11151, + "token_id": 11149, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102784,7 +102739,7 @@ }, { "str": "a", - "token_id": 11152, + "token_id": 11150, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102793,7 +102748,7 @@ }, { "str": "83", - "token_id": 11153, + "token_id": 11151, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102802,7 +102757,7 @@ }, { "str": "/", - "token_id": 11154, + "token_id": 11152, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102811,7 +102766,7 @@ }, { "str": "100", - "token_id": 11155, + "token_id": 11153, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102820,7 +102775,7 @@ }, { "str": "with", - "token_id": 11156, + "token_id": 11154, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102829,7 +102784,7 @@ }, { "str": "91", - "token_id": 11157, + "token_id": 11155, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102838,7 +102793,7 @@ }, { "str": "%", - "token_id": 11158, + "token_id": 11156, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102847,7 +102802,7 @@ }, { "str": "of", - "token_id": 11159, + "token_id": 11157, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102856,7 +102811,7 @@ }, { "str": "reviewers", - "token_id": 11160, + "token_id": 11158, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102865,7 +102820,7 @@ }, { "str": "recommending", - "token_id": 11161, + "token_id": 11159, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102874,7 +102829,7 @@ }, { "str": "the", - "token_id": 11162, + "token_id": 11160, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102883,7 +102838,7 @@ }, { "str": "game", - "token_id": 11163, + "token_id": 11161, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102892,7 +102847,7 @@ }, { "str": ".", - "token_id": 11164, + "token_id": 11162, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102901,7 +102856,7 @@ }, { "str": "<", - "token_id": 11165, + "token_id": 11163, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102910,7 +102865,7 @@ }, { "str": "ref", - "token_id": 11166, + "token_id": 11164, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102919,7 +102874,7 @@ }, { "str": ">", - "token_id": 11167, + "token_id": 11165, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102928,7 +102883,7 @@ }, { "str": "{{", - "token_id": 11168, + "token_id": 11166, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102937,7 +102892,7 @@ }, { "str": "cite", - "token_id": 11169, + "token_id": 11167, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102946,7 +102901,7 @@ }, { "str": "web", - "token_id": 11170, + "token_id": 11168, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102955,7 +102910,7 @@ }, { "str": "|", - "token_id": 11171, + "token_id": 11169, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102964,7 +102919,7 @@ }, { "str": "date", - "token_id": 11172, + "token_id": 11170, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102973,7 +102928,7 @@ }, { "str": "=", - "token_id": 11173, + "token_id": 11171, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102982,7 +102937,7 @@ }, { "str": "2022", - "token_id": 11174, + "token_id": 11172, "o_rev_id": 1112789480, "in": [], "out": [ @@ -102991,7 +102946,7 @@ }, { "str": "-", - "token_id": 11175, + "token_id": 11173, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103000,7 +102955,7 @@ }, { "str": "09", - "token_id": 11176, + "token_id": 11174, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103009,7 +102964,7 @@ }, { "str": "-", - "token_id": 11177, + "token_id": 11175, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103018,7 +102973,7 @@ }, { "str": "07", - "token_id": 11178, + "token_id": 11176, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103027,7 +102982,7 @@ }, { "str": "|", - "token_id": 11179, + "token_id": 11177, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103036,7 +102991,7 @@ }, { "str": "title", - "token_id": 11180, + "token_id": 11178, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103045,7 +103000,7 @@ }, { "str": "=", - "token_id": 11181, + "token_id": 11179, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103054,7 +103009,7 @@ }, { "str": "splatoon", - "token_id": 11182, + "token_id": 11180, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103063,7 +103018,7 @@ }, { "str": "3", - "token_id": 11183, + "token_id": 11181, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103072,7 +103027,7 @@ }, { "str": "reviews", - "token_id": 11184, + "token_id": 11182, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103081,7 +103036,7 @@ }, { "str": "|", - "token_id": 11185, + "token_id": 11183, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103090,7 +103045,7 @@ }, { "str": "url", - "token_id": 11186, + "token_id": 11184, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103099,7 +103054,7 @@ }, { "str": "=", - "token_id": 11187, + "token_id": 11185, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103108,7 +103063,7 @@ }, { "str": "https", - "token_id": 11188, + "token_id": 11186, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103117,7 +103072,7 @@ }, { "str": ":", - "token_id": 11189, + "token_id": 11187, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103126,7 +103081,7 @@ }, { "str": "/", - "token_id": 11190, + "token_id": 11188, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103135,7 +103090,7 @@ }, { "str": "/", - "token_id": 11191, + "token_id": 11189, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103144,7 +103099,7 @@ }, { "str": "opencritic", - "token_id": 11192, + "token_id": 11190, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103153,7 +103108,7 @@ }, { "str": ".", - "token_id": 11193, + "token_id": 11191, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103162,7 +103117,7 @@ }, { "str": "com", - "token_id": 11194, + "token_id": 11192, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103171,7 +103126,7 @@ }, { "str": "/", - "token_id": 11195, + "token_id": 11193, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103180,7 +103135,7 @@ }, { "str": "game", - "token_id": 11196, + "token_id": 11194, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103189,7 +103144,7 @@ }, { "str": "/", - "token_id": 11197, + "token_id": 11195, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103198,7 +103153,7 @@ }, { "str": "13284", - "token_id": 11198, + "token_id": 11196, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103207,7 +103162,7 @@ }, { "str": "/", - "token_id": 11199, + "token_id": 11197, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103216,7 +103171,7 @@ }, { "str": "splatoon", - "token_id": 11200, + "token_id": 11198, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103225,7 +103180,7 @@ }, { "str": "-", - "token_id": 11201, + "token_id": 11199, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103234,7 +103189,7 @@ }, { "str": "3", - "token_id": 11202, + "token_id": 11200, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103243,7 +103198,7 @@ }, { "str": "|", - "token_id": 11203, + "token_id": 11201, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103252,7 +103207,7 @@ }, { "str": "access", - "token_id": 11204, + "token_id": 11202, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103261,7 +103216,7 @@ }, { "str": "-", - "token_id": 11205, + "token_id": 11203, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103270,7 +103225,7 @@ }, { "str": "date", - "token_id": 11206, + "token_id": 11204, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103279,7 +103234,7 @@ }, { "str": "=", - "token_id": 11207, + "token_id": 11205, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103288,7 +103243,7 @@ }, { "str": "2022", - "token_id": 11208, + "token_id": 11206, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103297,7 +103252,7 @@ }, { "str": "-", - "token_id": 11209, + "token_id": 11207, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103306,7 +103261,7 @@ }, { "str": "09", - "token_id": 11210, + "token_id": 11208, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103315,7 +103270,7 @@ }, { "str": "-", - "token_id": 11211, + "token_id": 11209, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103324,7 +103279,7 @@ }, { "str": "28", - "token_id": 11212, + "token_id": 11210, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103333,7 +103288,7 @@ }, { "str": "|", - "token_id": 11213, + "token_id": 11211, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103342,7 +103297,7 @@ }, { "str": "website", - "token_id": 11214, + "token_id": 11212, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103351,7 +103306,7 @@ }, { "str": "=", - "token_id": 11215, + "token_id": 11213, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103360,7 +103315,7 @@ }, { "str": "opencritic", - "token_id": 11216, + "token_id": 11214, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103369,7 +103324,7 @@ }, { "str": "|", - "token_id": 11217, + "token_id": 11215, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103378,7 +103333,7 @@ }, { "str": "language", - "token_id": 11218, + "token_id": 11216, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103387,7 +103342,7 @@ }, { "str": "=", - "token_id": 11219, + "token_id": 11217, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103396,7 +103351,7 @@ }, { "str": "en", - "token_id": 11220, + "token_id": 11218, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103405,7 +103360,7 @@ }, { "str": "}}", - "token_id": 11221, + "token_id": 11219, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103414,7 +103369,7 @@ }, { "str": "<", - "token_id": 11222, + "token_id": 11220, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103423,7 +103378,7 @@ }, { "str": "/", - "token_id": 11223, + "token_id": 11221, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103432,7 +103387,7 @@ }, { "str": "ref", - "token_id": 11224, + "token_id": 11222, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103441,7 +103396,7 @@ }, { "str": ">", - "token_id": 11225, + "token_id": 11223, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103450,7 +103405,7 @@ }, { "str": "reviewers", - "token_id": 11226, + "token_id": 11224, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103459,7 +103414,7 @@ }, { "str": "noted", - "token_id": 11227, + "token_id": 11225, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103468,7 +103423,7 @@ }, { "str": "that", - "token_id": 11228, + "token_id": 11226, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103477,7 +103432,7 @@ }, { "str": "while", - "token_id": 11229, + "token_id": 11227, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103486,7 +103441,7 @@ }, { "str": "the", - "token_id": 11230, + "token_id": 11228, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103495,7 +103450,7 @@ }, { "str": "game", - "token_id": 11231, + "token_id": 11229, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103504,7 +103459,7 @@ }, { "str": "has", - "token_id": 11232, + "token_id": 11230, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103513,7 +103468,7 @@ }, { "str": "a", - "token_id": 11233, + "token_id": 11231, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103522,7 +103477,7 @@ }, { "str": "lack", - "token_id": 11234, + "token_id": 11232, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103531,7 +103486,7 @@ }, { "str": "of", - "token_id": 11235, + "token_id": 11233, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103540,7 +103495,7 @@ }, { "str": "new", - "token_id": 11236, + "token_id": 11234, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103549,7 +103504,7 @@ }, { "str": "ideas", - "token_id": 11237, + "token_id": 11235, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103558,7 +103513,7 @@ }, { "str": ",", - "token_id": 11238, + "token_id": 11236, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103567,7 +103522,7 @@ }, { "str": "it", - "token_id": 11239, + "token_id": 11237, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103576,7 +103531,7 @@ }, { "str": "is", - "token_id": 11240, + "token_id": 11238, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103585,7 +103540,7 @@ }, { "str": "the", - "token_id": 11241, + "token_id": 11239, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103594,7 +103549,7 @@ }, { "str": "most", - "token_id": 11242, + "token_id": 11240, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103603,7 +103558,7 @@ }, { "str": "refined", - "token_id": 11243, + "token_id": 11241, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103612,7 +103567,7 @@ }, { "str": "version", - "token_id": 11244, + "token_id": 11242, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103621,7 +103576,7 @@ }, { "str": "of", - "token_id": 11245, + "token_id": 11243, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103630,7 +103585,7 @@ }, { "str": "splatoon", - "token_id": 11246, + "token_id": 11244, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103639,7 +103594,7 @@ }, { "str": "to", - "token_id": 11247, + "token_id": 11245, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103648,7 +103603,7 @@ }, { "str": "date", - "token_id": 11248, + "token_id": 11246, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103657,7 +103612,7 @@ }, { "str": ".", - "token_id": 11249, + "token_id": 11247, "o_rev_id": 1112789480, "in": [], "out": [ @@ -103666,7 +103621,7 @@ }, { "str": "most", - "token_id": 11250, + "token_id": 11248, "o_rev_id": 1113535128, "in": [], "out": [ @@ -103675,7 +103630,7 @@ }, { "str": "morbin", - "token_id": 11251, + "token_id": 11249, "o_rev_id": 1113535128, "in": [], "out": [ @@ -103684,7 +103639,7 @@ }, { "str": "morbius", - "token_id": 11252, + "token_id": 11250, "o_rev_id": 1113535681, "in": [], "out": [ @@ -103693,7 +103648,7 @@ }, { "str": "morbius", - "token_id": 11253, + "token_id": 11251, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103705,7 +103660,7 @@ }, { "str": ",", - "token_id": 11254, + "token_id": 11252, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103717,7 +103672,7 @@ }, { "str": "saul", - "token_id": 11255, + "token_id": 11253, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103729,7 +103684,7 @@ }, { "str": "goodman", - "token_id": 11256, + "token_id": 11254, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103741,7 +103696,7 @@ }, { "str": ",", - "token_id": 11257, + "token_id": 11255, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103753,7 +103708,7 @@ }, { "str": "and", - "token_id": 11258, + "token_id": 11256, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103765,7 +103720,7 @@ }, { "str": "walter", - "token_id": 11259, + "token_id": 11257, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103777,7 +103732,7 @@ }, { "str": "white", - "token_id": 11260, + "token_id": 11258, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103789,7 +103744,7 @@ }, { "str": ")", - "token_id": 11261, + "token_id": 11259, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103801,7 +103756,7 @@ }, { "str": "(", - "token_id": 11262, + "token_id": 11260, "o_rev_id": 1113535934, "in": [ 1113538264 @@ -103813,7 +103768,7 @@ }, { "str": ":", - "token_id": 11263, + "token_id": 11261, "o_rev_id": 1113538039, "in": [], "out": [ @@ -103822,7 +103777,7 @@ }, { "str": "morbius", - "token_id": 11264, + "token_id": 11262, "o_rev_id": 1113538039, "in": [], "out": [ @@ -103831,7 +103786,7 @@ }, { "str": "(", - "token_id": 11265, + "token_id": 11263, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -103843,16 +103798,19 @@ }, { "str": "specifically", - "token_id": 11266, + "token_id": 11264, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": ",", - "token_id": 11267, + "token_id": 11265, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -103864,34 +103822,42 @@ }, { "str": "the", - "token_id": 11268, + "token_id": 11266, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531 ] }, { "str": "events", - "token_id": 11269, + "token_id": 11267, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": "of", - "token_id": 11270, + "token_id": 11268, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": "splatoon", - "token_id": 11271, + "token_id": 11269, "o_rev_id": 1113961045, "in": [], "out": [ @@ -103900,7 +103866,7 @@ }, { "str": "3", - "token_id": 11272, + "token_id": 11270, "o_rev_id": 1113961045, "in": [], "out": [ @@ -103909,7 +103875,7 @@ }, { "str": "actually", - "token_id": 11273, + "token_id": 11271, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -103921,7 +103887,7 @@ }, { "str": "take", - "token_id": 11274, + "token_id": 11272, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -103933,7 +103899,7 @@ }, { "str": "place", - "token_id": 11275, + "token_id": 11273, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -103945,7 +103911,7 @@ }, { "str": "parallel", - "token_id": 11276, + "token_id": 11274, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -103957,7 +103923,7 @@ }, { "str": "to", - "token_id": 11277, + "token_id": 11275, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -103969,7 +103935,7 @@ }, { "str": "our", - "token_id": 11278, + "token_id": 11276, "o_rev_id": 1113961045, "in": [], "out": [ @@ -103978,7 +103944,7 @@ }, { "str": "own", - "token_id": 11279, + "token_id": 11277, "o_rev_id": 1113961045, "in": [], "out": [ @@ -103987,7 +103953,7 @@ }, { "str": "world", - "token_id": 11280, + "token_id": 11278, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -103999,7 +103965,7 @@ }, { "str": ",", - "token_id": 11281, + "token_id": 11279, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104011,25 +103977,31 @@ }, { "str": "similar", - "token_id": 11282, + "token_id": 11280, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": "to", - "token_id": 11283, + "token_id": 11281, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": "[[", - "token_id": 11284, + "token_id": 11282, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104041,25 +104013,31 @@ }, { "str": "real", - "token_id": 11285, + "token_id": 11283, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": "time", - "token_id": 11286, + "token_id": 11284, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": "(", - "token_id": 11287, + "token_id": 11285, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104071,16 +104049,19 @@ }, { "str": "media", - "token_id": 11288, + "token_id": 11286, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": ")", - "token_id": 11289, + "token_id": 11287, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104092,7 +104073,7 @@ }, { "str": "|", - "token_id": 11290, + "token_id": 11288, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104104,25 +104085,31 @@ }, { "str": "real", - "token_id": 11291, + "token_id": 11289, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": "time", - "token_id": 11292, + "token_id": 11290, "o_rev_id": 1113961045, - "in": [], + "in": [ + 1117591128 + ], "out": [ - 1115665292 + 1117588531, + 1131750441 ] }, { "str": "]]", - "token_id": 11293, + "token_id": 11291, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104134,7 +104121,7 @@ }, { "str": ")", - "token_id": 11294, + "token_id": 11292, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104146,7 +104133,7 @@ }, { "str": "<", - "token_id": 11295, + "token_id": 11293, "o_rev_id": 1113961045, "in": [ 1204442227 @@ -104158,7 +104145,7 @@ }, { "str": "ref", - "token_id": 11296, + "token_id": 11294, "o_rev_id": 1113961045, "in": [ 1204442227 @@ -104170,7 +104157,7 @@ }, { "str": ">", - "token_id": 11297, + "token_id": 11295, "o_rev_id": 1113961045, "in": [ 1204442227 @@ -104182,7 +104169,7 @@ }, { "str": "https", - "token_id": 11298, + "token_id": 11296, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104193,7 +104180,7 @@ }, { "str": ":", - "token_id": 11299, + "token_id": 11297, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104204,7 +104191,7 @@ }, { "str": "/", - "token_id": 11300, + "token_id": 11298, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104215,7 +104202,7 @@ }, { "str": "/", - "token_id": 11301, + "token_id": 11299, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104226,6 +104213,28 @@ }, { "str": "www", + "token_id": 11300, + "o_rev_id": 1113961045, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, + { + "str": ".", + "token_id": 11301, + "o_rev_id": 1113961045, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, + { + "str": "thegamer", "token_id": 11302, "o_rev_id": 1113961045, "in": [ @@ -104247,7 +104256,7 @@ ] }, { - "str": "thegamer", + "str": "com", "token_id": 11304, "o_rev_id": 1113961045, "in": [ @@ -104258,7 +104267,7 @@ ] }, { - "str": ".", + "str": "/", "token_id": 11305, "o_rev_id": 1113961045, "in": [ @@ -104269,7 +104278,7 @@ ] }, { - "str": "com", + "str": "splatoon", "token_id": 11306, "o_rev_id": 1113961045, "in": [ @@ -104280,7 +104289,7 @@ ] }, { - "str": "/", + "str": "-", "token_id": 11307, "o_rev_id": 1113961045, "in": [ @@ -104291,7 +104300,7 @@ ] }, { - "str": "splatoon", + "str": "3", "token_id": 11308, "o_rev_id": 1113961045, "in": [ @@ -104313,7 +104322,7 @@ ] }, { - "str": "3", + "str": "2022", "token_id": 11310, "o_rev_id": 1113961045, "in": [ @@ -104335,7 +104344,7 @@ ] }, { - "str": "2022", + "str": "timeline", "token_id": 11312, "o_rev_id": 1113961045, "in": [ @@ -104357,7 +104366,7 @@ ] }, { - "str": "timeline", + "str": "passage", "token_id": 11314, "o_rev_id": 1113961045, "in": [ @@ -104378,31 +104387,9 @@ 1117588531 ] }, - { - "str": "passage", - "token_id": 11316, - "o_rev_id": 1113961045, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, - { - "str": "-", - "token_id": 11317, - "o_rev_id": 1113961045, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, { "str": "time", - "token_id": 11318, + "token_id": 11316, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104413,7 +104400,7 @@ }, { "str": "/", - "token_id": 11319, + "token_id": 11317, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104424,7 +104411,7 @@ }, { "str": "<", - "token_id": 11320, + "token_id": 11318, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104436,7 +104423,7 @@ }, { "str": "/", - "token_id": 11321, + "token_id": 11319, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104447,7 +104434,7 @@ }, { "str": "ref", - "token_id": 11322, + "token_id": 11320, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104459,7 +104446,7 @@ }, { "str": ">", - "token_id": 11323, + "token_id": 11321, "o_rev_id": 1113961045, "in": [ 1117591128 @@ -104471,7 +104458,7 @@ }, { "str": "(", - "token_id": 11324, + "token_id": 11322, "o_rev_id": 1113961208, "in": [], "out": [ @@ -104480,7 +104467,7 @@ }, { "str": "later", - "token_id": 11325, + "token_id": 11323, "o_rev_id": 1113961208, "in": [], "out": [ @@ -104489,7 +104476,7 @@ }, { "str": "dubbed", - "token_id": 11326, + "token_id": 11324, "o_rev_id": 1113961208, "in": [], "out": [ @@ -104498,7 +104485,7 @@ }, { "str": "the", - "token_id": 11327, + "token_id": 11325, "o_rev_id": 1113961208, "in": [], "out": [ @@ -104507,7 +104494,7 @@ }, { "str": "tri", - "token_id": 11328, + "token_id": 11326, "o_rev_id": 1113961208, "in": [], "out": [ @@ -104516,7 +104503,7 @@ }, { "str": "-", - "token_id": 11329, + "token_id": 11327, "o_rev_id": 1113961208, "in": [], "out": [ @@ -104525,7 +104512,7 @@ }, { "str": "stringer", - "token_id": 11330, + "token_id": 11328, "o_rev_id": 1113961208, "in": [], "out": [ @@ -104534,7 +104521,7 @@ }, { "str": ")", - "token_id": 11331, + "token_id": 11329, "o_rev_id": 1113961208, "in": [], "out": [ @@ -104543,7 +104530,7 @@ }, { "str": "|", - "token_id": 11332, + "token_id": 11330, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104554,19 +104541,18 @@ }, { "str": "title", - "token_id": 11333, + "token_id": 11331, "o_rev_id": 1114168936, "in": [ 1117591128 ], "out": [ - 1117588531, - 1140535097 + 1117588531 ] }, { "str": "=", - "token_id": 11334, + "token_id": 11332, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104577,7 +104563,7 @@ }, { "str": "splatoon", - "token_id": 11335, + "token_id": 11333, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104588,7 +104574,7 @@ }, { "str": "3", - "token_id": 11336, + "token_id": 11334, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104599,7 +104585,7 @@ }, { "str": "takes", - "token_id": 11337, + "token_id": 11335, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104610,7 +104596,7 @@ }, { "str": "place", - "token_id": 11338, + "token_id": 11336, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104621,7 +104607,7 @@ }, { "str": "in", - "token_id": 11339, + "token_id": 11337, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104632,7 +104618,7 @@ }, { "str": "2022", - "token_id": 11340, + "token_id": 11338, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104643,7 +104629,7 @@ }, { "str": "and", - "token_id": 11341, + "token_id": 11339, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104654,7 +104640,7 @@ }, { "str": "the", - "token_id": 11342, + "token_id": 11340, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104665,7 +104651,7 @@ }, { "str": "\"", - "token_id": 11343, + "token_id": 11341, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104676,7 +104662,7 @@ }, { "str": "same", - "token_id": 11344, + "token_id": 11342, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104687,7 +104673,7 @@ }, { "str": "amount", - "token_id": 11345, + "token_id": 11343, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104698,7 +104684,7 @@ }, { "str": "of", - "token_id": 11346, + "token_id": 11344, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104709,7 +104695,7 @@ }, { "str": "time", - "token_id": 11347, + "token_id": 11345, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104720,7 +104706,7 @@ }, { "str": "has", - "token_id": 11348, + "token_id": 11346, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104731,7 +104717,7 @@ }, { "str": "passed", - "token_id": 11349, + "token_id": 11347, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104742,7 +104728,7 @@ }, { "str": "in", - "token_id": 11350, + "token_id": 11348, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104753,7 +104739,7 @@ }, { "str": "the", - "token_id": 11351, + "token_id": 11349, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104764,7 +104750,7 @@ }, { "str": "squid", - "token_id": 11352, + "token_id": 11350, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104775,7 +104761,7 @@ }, { "str": "world", - "token_id": 11353, + "token_id": 11351, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104786,7 +104772,7 @@ }, { "str": "as", - "token_id": 11354, + "token_id": 11352, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104797,7 +104783,7 @@ }, { "str": "the", - "token_id": 11355, + "token_id": 11353, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104808,7 +104794,7 @@ }, { "str": "real", - "token_id": 11356, + "token_id": 11354, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104819,7 +104805,7 @@ }, { "str": "world", - "token_id": 11357, + "token_id": 11355, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104830,7 +104816,7 @@ }, { "str": "\"", - "token_id": 11358, + "token_id": 11356, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104841,7 +104827,7 @@ }, { "str": "|", - "token_id": 11359, + "token_id": 11357, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104852,7 +104838,7 @@ }, { "str": "date", - "token_id": 11360, + "token_id": 11358, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104863,7 +104849,7 @@ }, { "str": "=", - "token_id": 11361, + "token_id": 11359, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104874,19 +104860,18 @@ }, { "str": "9", - "token_id": 11362, + "token_id": 11360, "o_rev_id": 1114168936, "in": [ 1117591128 ], "out": [ - 1117588531, - 1140535097 + 1117588531 ] }, { "str": "september", - "token_id": 11363, + "token_id": 11361, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104897,19 +104882,20 @@ }, { "str": "2022", - "token_id": 11364, + "token_id": 11362, "o_rev_id": 1114168936, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ 1117588531, - 1140535097 + 1202071552 ] }, { "str": "}}", - "token_id": 11365, + "token_id": 11363, "o_rev_id": 1114168936, "in": [ 1117591128 @@ -104921,55 +104907,69 @@ }, { "str": "|", - "token_id": 11366, + "token_id": 11364, "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "last1", - "token_id": 11367, + "token_id": 11365, "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "=", - "token_id": 11368, + "token_id": 11366, "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "|", - "token_id": 11369, + "token_id": 11367, "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "first1", - "token_id": 11370, + "token_id": 11368, "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "=", - "token_id": 11371, + "token_id": 11369, "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "{{", - "token_id": 11372, + "token_id": 11370, "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "magazine", + "token_id": 11371, + "o_rev_id": 1114168936, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 11372, + "o_rev_id": 1114168936, + "in": [], + "out": [] + }, + { + "str": "=", "token_id": 11373, "o_rev_id": 1114168936, "in": [], @@ -105035,34 +105035,12 @@ "str": "|", "token_id": 11382, "o_rev_id": 1114168936, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "=", - "token_id": 11383, - "o_rev_id": 1114168936, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "|", - "token_id": 11384, - "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "magazine", - "token_id": 11385, + "token_id": 11383, "o_rev_id": 1114168936, "in": [], "out": [ @@ -105071,14 +105049,14 @@ }, { "str": "=", - "token_id": 11386, + "token_id": 11384, "o_rev_id": 1114168936, "in": [], "out": [] }, { "str": "|", - "token_id": 11387, + "token_id": 11385, "o_rev_id": 1114168936, "in": [], "out": [ @@ -105087,7 +105065,7 @@ }, { "str": "=", - "token_id": 11388, + "token_id": 11386, "o_rev_id": 1114168936, "in": [], "out": [ @@ -105096,119 +105074,121 @@ }, { "str": "}}", - "token_id": 11389, + "token_id": 11387, "o_rev_id": 1114168936, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "returns", - "token_id": 11390, + "token_id": 11388, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": ".", - "token_id": 11391, + "token_id": 11389, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "next", - "token_id": 11392, + "token_id": 11390, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "wave", - "token_id": 11393, + "token_id": 11391, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "adds", - "token_id": 11394, + "token_id": 11392, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "the", - "token_id": 11395, + "token_id": 11393, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "ability", - "token_id": 11396, + "token_id": 11394, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "to", - "token_id": 11397, + "token_id": 11395, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "throw", - "token_id": 11398, + "token_id": 11396, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "golden", - "token_id": 11399, + "token_id": 11397, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "eggs", - "token_id": 11400, + "token_id": 11398, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "along", - "token_id": 11401, + "token_id": 11399, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "with", - "token_id": 11402, + "token_id": 11400, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "new", - "token_id": 11403, + "token_id": 11401, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "enemies", - "token_id": 11404, + "token_id": 11402, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": ",", - "token_id": 11405, + "token_id": 11403, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105217,7 +105197,7 @@ }, { "str": "new", - "token_id": 11406, + "token_id": 11404, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105226,7 +105206,7 @@ }, { "str": "\"", - "token_id": 11407, + "token_id": 11405, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105235,7 +105215,7 @@ }, { "str": "known", - "token_id": 11408, + "token_id": 11406, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105244,7 +105224,7 @@ }, { "str": "occurrence", - "token_id": 11409, + "token_id": 11407, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105253,7 +105233,7 @@ }, { "str": "\"", - "token_id": 11410, + "token_id": 11408, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105262,7 +105242,7 @@ }, { "str": "events", - "token_id": 11411, + "token_id": 11409, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105271,7 +105251,7 @@ }, { "str": ",", - "token_id": 11412, + "token_id": 11410, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105280,7 +105260,7 @@ }, { "str": "and", - "token_id": 11413, + "token_id": 11411, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105289,7 +105269,7 @@ }, { "str": "a", - "token_id": 11414, + "token_id": 11412, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105298,7 +105278,7 @@ }, { "str": "new", - "token_id": 11415, + "token_id": 11413, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105307,7 +105287,7 @@ }, { "str": "boss", - "token_id": 11416, + "token_id": 11414, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105316,7 +105296,7 @@ }, { "str": "fight", - "token_id": 11417, + "token_id": 11415, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105325,7 +105305,7 @@ }, { "str": "with", - "token_id": 11418, + "token_id": 11416, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105334,7 +105314,7 @@ }, { "str": "the", - "token_id": 11419, + "token_id": 11417, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105343,7 +105323,7 @@ }, { "str": "king", - "token_id": 11420, + "token_id": 11418, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105352,7 +105332,7 @@ }, { "str": "salmonid", - "token_id": 11421, + "token_id": 11419, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105361,16 +105341,16 @@ }, { "str": ",", - "token_id": 11422, + "token_id": 11420, "o_rev_id": 1114384678, "in": [], "out": [ - 1116374072 + 1115494631 ] }, { "str": "cohozuna", - "token_id": 11423, + "token_id": 11421, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105379,158 +105359,154 @@ }, { "str": ".", - "token_id": 11424, + "token_id": 11422, "o_rev_id": 1114384678, - "in": [ - 1179974250 - ], - "out": [ - 1179954307 - ] + "in": [], + "out": [] }, { "str": "salmon", - "token_id": 11425, + "token_id": 11423, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "run", - "token_id": 11426, + "token_id": 11424, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "is", - "token_id": 11427, + "token_id": 11425, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "also", - "token_id": 11428, + "token_id": 11426, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "no", - "token_id": 11429, + "token_id": 11427, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "longer", - "token_id": 11430, + "token_id": 11428, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "limited", - "token_id": 11431, + "token_id": 11429, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "to", - "token_id": 11432, + "token_id": 11430, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "certain", - "token_id": 11433, + "token_id": 11431, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "times", - "token_id": 11434, + "token_id": 11432, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "of", - "token_id": 11435, + "token_id": 11433, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "day", - "token_id": 11436, + "token_id": 11434, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": ";", - "token_id": 11437, + "token_id": 11435, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "players", - "token_id": 11438, + "token_id": 11436, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "are", - "token_id": 11439, + "token_id": 11437, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "able", - "token_id": 11440, + "token_id": 11438, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "to", - "token_id": 11441, + "token_id": 11439, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "access", - "token_id": 11442, + "token_id": 11440, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "salmon", - "token_id": 11443, + "token_id": 11441, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "run", - "token_id": 11444, + "token_id": 11442, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "24", - "token_id": 11445, + "token_id": 11443, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105539,7 +105515,7 @@ }, { "str": "/", - "token_id": 11446, + "token_id": 11444, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105548,7 +105524,7 @@ }, { "str": "7", - "token_id": 11447, + "token_id": 11445, "o_rev_id": 1114384678, "in": [], "out": [ @@ -105557,35 +105533,35 @@ }, { "str": ",", - "token_id": 11448, + "token_id": 11446, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "even", - "token_id": 11449, + "token_id": 11447, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "during", - "token_id": 11450, + "token_id": 11448, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "splatfests", - "token_id": 11451, + "token_id": 11449, "o_rev_id": 1114384678, "in": [], "out": [] }, { "str": "(", - "token_id": 11452, + "token_id": 11450, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105594,7 +105570,7 @@ }, { "str": "players", - "token_id": 11453, + "token_id": 11451, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105603,7 +105579,7 @@ }, { "str": "are", - "token_id": 11454, + "token_id": 11452, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105612,7 +105588,7 @@ }, { "str": "not", - "token_id": 11455, + "token_id": 11453, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105621,7 +105597,7 @@ }, { "str": "required", - "token_id": 11456, + "token_id": 11454, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105630,7 +105606,7 @@ }, { "str": "to", - "token_id": 11457, + "token_id": 11455, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105639,7 +105615,7 @@ }, { "str": "buy", - "token_id": 11458, + "token_id": 11456, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105648,7 +105624,7 @@ }, { "str": "dlc", - "token_id": 11459, + "token_id": 11457, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105657,7 +105633,7 @@ }, { "str": "to", - "token_id": 11460, + "token_id": 11458, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105666,7 +105642,7 @@ }, { "str": "play", - "token_id": 11461, + "token_id": 11459, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105675,7 +105651,7 @@ }, { "str": "as", - "token_id": 11462, + "token_id": 11460, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105684,7 +105660,7 @@ }, { "str": "octolings", - "token_id": 11463, + "token_id": 11461, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105693,7 +105669,7 @@ }, { "str": "in", - "token_id": 11464, + "token_id": 11462, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105702,7 +105678,7 @@ }, { "str": "splatoon", - "token_id": 11465, + "token_id": 11463, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105711,7 +105687,7 @@ }, { "str": "3", - "token_id": 11466, + "token_id": 11464, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105720,7 +105696,7 @@ }, { "str": ")", - "token_id": 11467, + "token_id": 11465, "o_rev_id": 1114450894, "in": [], "out": [ @@ -105729,7 +105705,7 @@ }, { "str": ",", - "token_id": 11468, + "token_id": 11466, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105738,7 +105714,7 @@ }, { "str": "reviving", - "token_id": 11469, + "token_id": 11467, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105747,7 +105723,7 @@ }, { "str": "mammal", - "token_id": 11470, + "token_id": 11468, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105756,7 +105732,7 @@ }, { "str": "life", - "token_id": 11471, + "token_id": 11469, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105765,7 +105741,7 @@ }, { "str": "at", - "token_id": 11472, + "token_id": 11470, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105774,7 +105750,7 @@ }, { "str": "the", - "token_id": 11473, + "token_id": 11471, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105783,7 +105759,7 @@ }, { "str": "expense", - "token_id": 11474, + "token_id": 11472, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105792,7 +105768,7 @@ }, { "str": "of", - "token_id": 11475, + "token_id": 11473, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105801,7 +105777,7 @@ }, { "str": "all", - "token_id": 11476, + "token_id": 11474, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105810,7 +105786,7 @@ }, { "str": "marine", - "token_id": 11477, + "token_id": 11475, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105819,7 +105795,7 @@ }, { "str": "life", - "token_id": 11478, + "token_id": 11476, "o_rev_id": 1114988257, "in": [], "out": [ @@ -105828,196 +105804,196 @@ }, { "str": "|", - "token_id": 11479, + "token_id": 11477, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ign", - "token_id": 11480, + "token_id": 11478, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11481, + "token_id": 11479, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "9", - "token_id": 11482, + "token_id": 11480, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11483, + "token_id": 11481, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "10", - "token_id": 11484, + "token_id": 11482, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "{{", - "token_id": 11485, + "token_id": 11483, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "small", - "token_id": 11486, + "token_id": 11484, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11487, + "token_id": 11485, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "(", - "token_id": 11488, + "token_id": 11486, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "{{", - "token_id": 11489, + "token_id": 11487, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "abbr", - "token_id": 11490, + "token_id": 11488, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11491, + "token_id": 11489, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "mp", - "token_id": 11492, + "token_id": 11490, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11493, + "token_id": 11491, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 11494, + "token_id": 11492, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "}}", - "token_id": 11495, + "token_id": 11493, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ")", - "token_id": 11496, + "token_id": 11494, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "}}", - "token_id": 11497, + "token_id": 11495, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "<", - "token_id": 11498, + "token_id": 11496, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ref", - "token_id": 11499, + "token_id": 11497, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "name", - "token_id": 11500, + "token_id": 11498, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11501, + "token_id": 11499, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "\"", - "token_id": 11502, + "token_id": 11500, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ignmp", - "token_id": 11503, + "token_id": 11501, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "\"", - "token_id": 11504, + "token_id": 11502, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ">", - "token_id": 11505, + "token_id": 11503, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "{{", - "token_id": 11506, + "token_id": 11504, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106028,14 +106004,14 @@ }, { "str": "cite", - "token_id": 11507, + "token_id": 11505, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "web", - "token_id": 11508, + "token_id": 11506, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106046,7 +106022,7 @@ }, { "str": "|", - "token_id": 11509, + "token_id": 11507, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106057,14 +106033,14 @@ }, { "str": "last", - "token_id": 11510, + "token_id": 11508, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11511, + "token_id": 11509, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106075,14 +106051,14 @@ }, { "str": "graeber", - "token_id": 11512, + "token_id": 11510, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11513, + "token_id": 11511, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106093,14 +106069,14 @@ }, { "str": "first", - "token_id": 11514, + "token_id": 11512, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11515, + "token_id": 11513, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106111,21 +106087,21 @@ }, { "str": "brendan", - "token_id": 11516, + "token_id": 11514, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11517, + "token_id": 11515, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "date", - "token_id": 11518, + "token_id": 11516, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106136,21 +106112,21 @@ }, { "str": "=", - "token_id": 11519, + "token_id": 11517, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "2022", - "token_id": 11520, + "token_id": 11518, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11521, + "token_id": 11519, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106159,7 +106135,7 @@ }, { "str": "09", - "token_id": 11522, + "token_id": 11520, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106168,7 +106144,7 @@ }, { "str": "-", - "token_id": 11523, + "token_id": 11521, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106177,7 +106153,7 @@ }, { "str": "07", - "token_id": 11524, + "token_id": 11522, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106186,217 +106162,217 @@ }, { "str": "|", - "token_id": 11525, + "token_id": 11523, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "title", - "token_id": 11526, + "token_id": 11524, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11527, + "token_id": 11525, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 11528, + "token_id": 11526, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "3", - "token_id": 11529, + "token_id": 11527, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 11530, + "token_id": 11528, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "review", - "token_id": 11531, + "token_id": 11529, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11532, + "token_id": 11530, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "url", - "token_id": 11533, + "token_id": 11531, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11534, + "token_id": 11532, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "https", - "token_id": 11535, + "token_id": 11533, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ":", - "token_id": 11536, + "token_id": 11534, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11537, + "token_id": 11535, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11538, + "token_id": 11536, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "www", - "token_id": 11539, + "token_id": 11537, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ".", - "token_id": 11540, + "token_id": 11538, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ign", - "token_id": 11541, + "token_id": 11539, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ".", - "token_id": 11542, + "token_id": 11540, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "com", - "token_id": 11543, + "token_id": 11541, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11544, + "token_id": 11542, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "articles", - "token_id": 11545, + "token_id": 11543, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11546, + "token_id": 11544, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 11547, + "token_id": 11545, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11548, + "token_id": 11546, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "3", - "token_id": 11549, + "token_id": 11547, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11550, + "token_id": 11548, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 11551, + "token_id": 11549, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11552, + "token_id": 11550, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "review", - "token_id": 11553, + "token_id": 11551, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11554, + "token_id": 11552, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "access", - "token_id": 11555, + "token_id": 11553, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106405,14 +106381,14 @@ }, { "str": "-", - "token_id": 11556, + "token_id": 11554, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "date", - "token_id": 11557, + "token_id": 11555, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106421,14 +106397,14 @@ }, { "str": "=", - "token_id": 11558, + "token_id": 11556, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "2022", - "token_id": 11559, + "token_id": 11557, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106437,28 +106413,28 @@ }, { "str": "-", - "token_id": 11560, + "token_id": 11558, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "10", - "token_id": 11561, + "token_id": 11559, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11562, + "token_id": 11560, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "09", - "token_id": 11563, + "token_id": 11561, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106467,14 +106443,14 @@ }, { "str": "|", - "token_id": 11564, + "token_id": 11562, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "website", - "token_id": 11565, + "token_id": 11563, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106483,7 +106459,7 @@ }, { "str": "=", - "token_id": 11566, + "token_id": 11564, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106492,7 +106468,7 @@ }, { "str": "ign", - "token_id": 11567, + "token_id": 11565, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106501,7 +106477,7 @@ }, { "str": "|", - "token_id": 11568, + "token_id": 11566, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106510,14 +106486,14 @@ }, { "str": "language", - "token_id": 11569, + "token_id": 11567, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11570, + "token_id": 11568, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106526,14 +106502,14 @@ }, { "str": "en", - "token_id": 11571, + "token_id": 11569, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "}}", - "token_id": 11572, + "token_id": 11570, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106542,7 +106518,7 @@ }, { "str": "<", - "token_id": 11573, + "token_id": 11571, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106551,14 +106527,14 @@ }, { "str": "/", - "token_id": 11574, + "token_id": 11572, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ref", - "token_id": 11575, + "token_id": 11573, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106567,7 +106543,7 @@ }, { "str": ">", - "token_id": 11576, + "token_id": 11574, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106576,7 +106552,7 @@ }, { "str": ",", - "token_id": 11577, + "token_id": 11575, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106585,294 +106561,294 @@ }, { "str": "8", - "token_id": 11578, + "token_id": 11576, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11579, + "token_id": 11577, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "10", - "token_id": 11580, + "token_id": 11578, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "{{", - "token_id": 11581, + "token_id": 11579, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "small", - "token_id": 11582, + "token_id": 11580, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11583, + "token_id": 11581, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "(", - "token_id": 11584, + "token_id": 11582, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "{{", - "token_id": 11585, + "token_id": 11583, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "abbr", - "token_id": 11586, + "token_id": 11584, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11587, + "token_id": 11585, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "sp", - "token_id": 11588, + "token_id": 11586, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11589, + "token_id": 11587, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "single", - "token_id": 11590, + "token_id": 11588, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11591, + "token_id": 11589, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "player", - "token_id": 11592, + "token_id": 11590, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "}}", - "token_id": 11593, + "token_id": 11591, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ")", - "token_id": 11594, + "token_id": 11592, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "}}", - "token_id": 11595, + "token_id": 11593, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "<", - "token_id": 11596, + "token_id": 11594, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ref", - "token_id": 11597, + "token_id": 11595, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "name", - "token_id": 11598, + "token_id": 11596, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11599, + "token_id": 11597, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "\"", - "token_id": 11600, + "token_id": 11598, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ignsp", - "token_id": 11601, + "token_id": 11599, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "\"", - "token_id": 11602, + "token_id": 11600, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ">", - "token_id": 11603, + "token_id": 11601, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "{{", - "token_id": 11604, + "token_id": 11602, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "cite", - "token_id": 11605, + "token_id": 11603, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "web", - "token_id": 11606, + "token_id": 11604, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11607, + "token_id": 11605, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "last", - "token_id": 11608, + "token_id": 11606, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11609, + "token_id": 11607, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "graeber", - "token_id": 11610, + "token_id": 11608, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11611, + "token_id": 11609, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "first", - "token_id": 11612, + "token_id": 11610, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11613, + "token_id": 11611, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "brendan", - "token_id": 11614, + "token_id": 11612, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11615, + "token_id": 11613, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "date", - "token_id": 11616, + "token_id": 11614, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11617, + "token_id": 11615, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "2022", - "token_id": 11618, + "token_id": 11616, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11619, + "token_id": 11617, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106881,7 +106857,7 @@ }, { "str": "09", - "token_id": 11620, + "token_id": 11618, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106890,16 +106866,19 @@ }, { "str": "-", - "token_id": 11621, + "token_id": 11619, "o_rev_id": 1115070505, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552, + 1334176815 ] }, { "str": "07", - "token_id": 11622, + "token_id": 11620, "o_rev_id": 1115070505, "in": [], "out": [ @@ -106908,7 +106887,7 @@ }, { "str": "|", - "token_id": 11623, + "token_id": 11621, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106919,14 +106898,18 @@ }, { "str": "title", - "token_id": 11624, + "token_id": 11622, "o_rev_id": 1115070505, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 11625, + "token_id": 11623, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106937,21 +106920,21 @@ }, { "str": "splatoon", - "token_id": 11626, + "token_id": 11624, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "3", - "token_id": 11627, + "token_id": 11625, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "review", - "token_id": 11628, + "token_id": 11626, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106962,7 +106945,7 @@ }, { "str": ":", - "token_id": 11629, + "token_id": 11627, "o_rev_id": 1115070505, "in": [ 1202097960 @@ -106973,196 +106956,196 @@ }, { "str": "single", - "token_id": 11630, + "token_id": 11628, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11631, + "token_id": 11629, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "player", - "token_id": 11632, + "token_id": 11630, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11633, + "token_id": 11631, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "url", - "token_id": 11634, + "token_id": 11632, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11635, + "token_id": 11633, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "https", - "token_id": 11636, + "token_id": 11634, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ":", - "token_id": 11637, + "token_id": 11635, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11638, + "token_id": 11636, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11639, + "token_id": 11637, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "www", - "token_id": 11640, + "token_id": 11638, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ".", - "token_id": 11641, + "token_id": 11639, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ign", - "token_id": 11642, + "token_id": 11640, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": ".", - "token_id": 11643, + "token_id": 11641, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "com", - "token_id": 11644, + "token_id": 11642, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11645, + "token_id": 11643, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "articles", - "token_id": 11646, + "token_id": 11644, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "/", - "token_id": 11647, + "token_id": 11645, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 11648, + "token_id": 11646, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11649, + "token_id": 11647, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "3", - "token_id": 11650, + "token_id": 11648, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11651, + "token_id": 11649, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "review", - "token_id": 11652, + "token_id": 11650, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11653, + "token_id": 11651, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "single", - "token_id": 11654, + "token_id": 11652, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11655, + "token_id": 11653, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "player", - "token_id": 11656, + "token_id": 11654, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11657, + "token_id": 11655, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107171,7 +107154,7 @@ }, { "str": "access", - "token_id": 11658, + "token_id": 11656, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107180,14 +107163,14 @@ }, { "str": "-", - "token_id": 11659, + "token_id": 11657, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "date", - "token_id": 11660, + "token_id": 11658, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107196,7 +107179,7 @@ }, { "str": "=", - "token_id": 11661, + "token_id": 11659, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107205,42 +107188,42 @@ }, { "str": "2022", - "token_id": 11662, + "token_id": 11660, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11663, + "token_id": 11661, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "10", - "token_id": 11664, + "token_id": 11662, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "-", - "token_id": 11665, + "token_id": 11663, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "09", - "token_id": 11666, + "token_id": 11664, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "|", - "token_id": 11667, + "token_id": 11665, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107249,7 +107232,7 @@ }, { "str": "website", - "token_id": 11668, + "token_id": 11666, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107258,7 +107241,7 @@ }, { "str": "=", - "token_id": 11669, + "token_id": 11667, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107267,7 +107250,7 @@ }, { "str": "ign", - "token_id": 11670, + "token_id": 11668, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107276,7 +107259,7 @@ }, { "str": "|", - "token_id": 11671, + "token_id": 11669, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107285,14 +107268,14 @@ }, { "str": "language", - "token_id": 11672, + "token_id": 11670, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "=", - "token_id": 11673, + "token_id": 11671, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107301,14 +107284,14 @@ }, { "str": "en", - "token_id": 11674, + "token_id": 11672, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "}}", - "token_id": 11675, + "token_id": 11673, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107317,7 +107300,7 @@ }, { "str": "<", - "token_id": 11676, + "token_id": 11674, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107326,14 +107309,14 @@ }, { "str": "/", - "token_id": 11677, + "token_id": 11675, "o_rev_id": 1115070505, "in": [], "out": [] }, { "str": "ref", - "token_id": 11678, + "token_id": 11676, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107342,7 +107325,7 @@ }, { "str": ">", - "token_id": 11679, + "token_id": 11677, "o_rev_id": 1115070505, "in": [], "out": [ @@ -107351,7 +107334,7 @@ }, { "str": "=", - "token_id": 11680, + "token_id": 11678, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -107363,7 +107346,7 @@ }, { "str": "=", - "token_id": 11681, + "token_id": 11679, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -107375,7 +107358,7 @@ }, { "str": "=", - "token_id": 11682, + "token_id": 11680, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -107387,7 +107370,7 @@ }, { "str": "critical", - "token_id": 11683, + "token_id": 11681, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -107399,6 +107382,30 @@ }, { "str": "reception", + "token_id": 11682, + "o_rev_id": 1115078740, + "in": [ + 1229566085 + ], + "out": [ + 1227326452, + 1334328058 + ] + }, + { + "str": "=", + "token_id": 11683, + "o_rev_id": 1115078740, + "in": [ + 1229566085 + ], + "out": [ + 1227326452, + 1334328058 + ] + }, + { + "str": "=", "token_id": 11684, "o_rev_id": 1115078740, "in": [ @@ -107421,40 +107428,16 @@ 1334328058 ] }, - { - "str": "=", - "token_id": 11686, - "o_rev_id": 1115078740, - "in": [ - 1229566085 - ], - "out": [ - 1227326452, - 1334328058 - ] - }, - { - "str": "=", - "token_id": 11687, - "o_rev_id": 1115078740, - "in": [ - 1229566085 - ], - "out": [ - 1227326452, - 1334328058 - ] - }, { "str": "name", - "token_id": 11688, + "token_id": 11686, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "=", - "token_id": 11689, + "token_id": 11687, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107465,7 +107448,7 @@ }, { "str": "\"", - "token_id": 11690, + "token_id": 11688, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107476,14 +107459,14 @@ }, { "str": "destruct", - "token_id": 11691, + "token_id": 11689, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11692, + "token_id": 11690, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107494,91 +107477,91 @@ }, { "str": "name", - "token_id": 11693, + "token_id": 11691, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "=", - "token_id": 11694, + "token_id": 11692, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11695, + "token_id": 11693, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "gi", - "token_id": 11696, + "token_id": 11694, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11697, + "token_id": 11695, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "name", - "token_id": 11698, + "token_id": 11696, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "=", - "token_id": 11699, + "token_id": 11697, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11700, + "token_id": 11698, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "gradar", - "token_id": 11701, + "token_id": 11699, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11702, + "token_id": 11700, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "name", - "token_id": 11703, + "token_id": 11701, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "=", - "token_id": 11704, + "token_id": 11702, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11705, + "token_id": 11703, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107589,14 +107572,14 @@ }, { "str": "nlife", - "token_id": 11706, + "token_id": 11704, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11707, + "token_id": 11705, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107607,77 +107590,81 @@ }, { "str": "name", - "token_id": 11708, + "token_id": 11706, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "=", - "token_id": 11709, + "token_id": 11707, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11710, + "token_id": 11708, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "sn", - "token_id": 11711, + "token_id": 11709, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11712, + "token_id": 11710, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "name", - "token_id": 11713, + "token_id": 11711, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "=", - "token_id": 11714, + "token_id": 11712, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11715, + "token_id": 11713, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "vg247", - "token_id": 11716, + "token_id": 11714, "o_rev_id": 1115078740, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "\"", - "token_id": 11717, + "token_id": 11715, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "name", - "token_id": 11718, + "token_id": 11716, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107688,7 +107675,7 @@ }, { "str": "=", - "token_id": 11719, + "token_id": 11717, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107699,7 +107686,7 @@ }, { "str": "\"", - "token_id": 11720, + "token_id": 11718, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107710,14 +107697,14 @@ }, { "str": "eurog", - "token_id": 11721, + "token_id": 11719, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11722, + "token_id": 11720, "o_rev_id": 1115078740, "in": [ 1202097960 @@ -107728,77 +107715,77 @@ }, { "str": "name", - "token_id": 11723, + "token_id": 11721, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "=", - "token_id": 11724, + "token_id": 11722, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11725, + "token_id": 11723, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "gspot", - "token_id": 11726, + "token_id": 11724, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11727, + "token_id": 11725, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "name", - "token_id": 11728, + "token_id": 11726, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "=", - "token_id": 11729, + "token_id": 11727, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11730, + "token_id": 11728, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "vgc", - "token_id": 11731, + "token_id": 11729, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11732, + "token_id": 11730, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11733, + "token_id": 11731, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107807,7 +107794,7 @@ }, { "str": "/", - "token_id": 11734, + "token_id": 11732, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107816,7 +107803,7 @@ }, { "str": ">", - "token_id": 11735, + "token_id": 11733, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107825,7 +107812,7 @@ }, { "str": "'", - "token_id": 11736, + "token_id": 11734, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107834,7 +107821,7 @@ }, { "str": "'", - "token_id": 11737, + "token_id": 11735, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107843,7 +107830,7 @@ }, { "str": "[[", - "token_id": 11738, + "token_id": 11736, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107852,7 +107839,7 @@ }, { "str": "ign", - "token_id": 11739, + "token_id": 11737, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107861,7 +107848,7 @@ }, { "str": "]]", - "token_id": 11740, + "token_id": 11738, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107870,7 +107857,7 @@ }, { "str": "'", - "token_id": 11741, + "token_id": 11739, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107879,7 +107866,7 @@ }, { "str": "'", - "token_id": 11742, + "token_id": 11740, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107888,7 +107875,7 @@ }, { "str": "reviewer", - "token_id": 11743, + "token_id": 11741, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107897,7 +107884,7 @@ }, { "str": "brendan", - "token_id": 11744, + "token_id": 11742, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107906,7 +107893,7 @@ }, { "str": "graeber", - "token_id": 11745, + "token_id": 11743, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107915,7 +107902,7 @@ }, { "str": "called", - "token_id": 11746, + "token_id": 11744, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107924,7 +107911,7 @@ }, { "str": "'", - "token_id": 11747, + "token_id": 11745, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107933,7 +107920,7 @@ }, { "str": "'", - "token_id": 11748, + "token_id": 11746, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107942,7 +107929,7 @@ }, { "str": "3", - "token_id": 11749, + "token_id": 11747, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107951,7 +107938,7 @@ }, { "str": "'", - "token_id": 11750, + "token_id": 11748, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107960,7 +107947,7 @@ }, { "str": "'", - "token_id": 11751, + "token_id": 11749, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107969,7 +107956,7 @@ }, { "str": "<", - "token_id": 11752, + "token_id": 11750, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107978,7 +107965,7 @@ }, { "str": "nowiki", - "token_id": 11753, + "token_id": 11751, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107987,7 +107974,7 @@ }, { "str": "/", - "token_id": 11754, + "token_id": 11752, "o_rev_id": 1115078740, "in": [], "out": [ @@ -107996,7 +107983,7 @@ }, { "str": ">", - "token_id": 11755, + "token_id": 11753, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108005,7 +107992,7 @@ }, { "str": "'", - "token_id": 11756, + "token_id": 11754, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108014,7 +108001,7 @@ }, { "str": "s", - "token_id": 11757, + "token_id": 11755, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108023,7 +108010,7 @@ }, { "str": "multiplayer", - "token_id": 11758, + "token_id": 11756, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108032,7 +108019,7 @@ }, { "str": "\"", - "token_id": 11759, + "token_id": 11757, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108041,7 +108028,7 @@ }, { "str": "more", - "token_id": 11760, + "token_id": 11758, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108050,7 +108037,7 @@ }, { "str": "than", - "token_id": 11761, + "token_id": 11759, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108059,7 +108046,7 @@ }, { "str": "just", - "token_id": 11762, + "token_id": 11760, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108068,7 +108055,7 @@ }, { "str": "a", - "token_id": 11763, + "token_id": 11761, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108077,7 +108064,7 @@ }, { "str": "simple", - "token_id": 11764, + "token_id": 11762, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108086,7 +108073,7 @@ }, { "str": "upgrade", - "token_id": 11765, + "token_id": 11763, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108095,7 +108082,7 @@ }, { "str": "\"", - "token_id": 11766, + "token_id": 11764, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108104,7 +108091,7 @@ }, { "str": ",", - "token_id": 11767, + "token_id": 11765, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108113,7 +108100,7 @@ }, { "str": "citing", - "token_id": 11768, + "token_id": 11766, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108122,7 +108109,7 @@ }, { "str": "its", - "token_id": 11769, + "token_id": 11767, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108131,7 +108118,7 @@ }, { "str": "additional", - "token_id": 11770, + "token_id": 11768, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108140,7 +108127,7 @@ }, { "str": "maps", - "token_id": 11771, + "token_id": 11769, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108149,7 +108136,7 @@ }, { "str": ",", - "token_id": 11772, + "token_id": 11770, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108158,7 +108145,7 @@ }, { "str": "weapons", - "token_id": 11773, + "token_id": 11771, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108167,7 +108154,7 @@ }, { "str": ",", - "token_id": 11774, + "token_id": 11772, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108176,7 +108163,7 @@ }, { "str": "bosses", - "token_id": 11775, + "token_id": 11773, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108185,7 +108172,7 @@ }, { "str": ",", - "token_id": 11776, + "token_id": 11774, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108194,7 +108181,7 @@ }, { "str": "and", - "token_id": 11777, + "token_id": 11775, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108206,7 +108193,7 @@ }, { "str": "customization", - "token_id": 11778, + "token_id": 11776, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108215,7 +108202,7 @@ }, { "str": ",", - "token_id": 11779, + "token_id": 11777, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108224,7 +108211,7 @@ }, { "str": "as", - "token_id": 11780, + "token_id": 11778, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108236,7 +108223,7 @@ }, { "str": "well", - "token_id": 11781, + "token_id": 11779, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108248,7 +108235,7 @@ }, { "str": "as", - "token_id": 11782, + "token_id": 11780, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108260,7 +108247,7 @@ }, { "str": "its", - "token_id": 11783, + "token_id": 11781, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108272,7 +108259,7 @@ }, { "str": "revamped", - "token_id": 11784, + "token_id": 11782, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108281,7 +108268,7 @@ }, { "str": "lobby", - "token_id": 11785, + "token_id": 11783, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108290,7 +108277,7 @@ }, { "str": "system", - "token_id": 11786, + "token_id": 11784, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108299,7 +108286,7 @@ }, { "str": ".", - "token_id": 11787, + "token_id": 11785, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108311,7 +108298,7 @@ }, { "str": "however", - "token_id": 11788, + "token_id": 11786, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108323,7 +108310,7 @@ }, { "str": ",", - "token_id": 11789, + "token_id": 11787, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108335,7 +108322,7 @@ }, { "str": "he", - "token_id": 11790, + "token_id": 11788, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108347,7 +108334,7 @@ }, { "str": "criticized", - "token_id": 11791, + "token_id": 11789, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108356,63 +108343,63 @@ }, { "str": "the", - "token_id": 11792, + "token_id": 11790, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "game", - "token_id": 11793, + "token_id": 11791, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "'", - "token_id": 11794, + "token_id": 11792, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "s", - "token_id": 11795, + "token_id": 11793, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "lack", - "token_id": 11796, + "token_id": 11794, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "of", - "token_id": 11797, + "token_id": 11795, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "a", - "token_id": 11798, + "token_id": 11796, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "\"", - "token_id": 11799, + "token_id": 11797, "o_rev_id": 1115078740, "in": [], "out": [] }, { "str": "huge", - "token_id": 11800, + "token_id": 11798, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108421,7 +108408,7 @@ }, { "str": "addition", - "token_id": 11801, + "token_id": 11799, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108430,7 +108417,7 @@ }, { "str": "\"", - "token_id": 11802, + "token_id": 11800, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108439,7 +108426,7 @@ }, { "str": "similar", - "token_id": 11803, + "token_id": 11801, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108448,7 +108435,7 @@ }, { "str": "to", - "token_id": 11804, + "token_id": 11802, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108457,7 +108444,7 @@ }, { "str": "'", - "token_id": 11805, + "token_id": 11803, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108466,7 +108453,7 @@ }, { "str": "'", - "token_id": 11806, + "token_id": 11804, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108475,7 +108462,7 @@ }, { "str": "splatoon", - "token_id": 11807, + "token_id": 11805, "o_rev_id": 1115078740, "in": [ 1216768014 @@ -108487,7 +108474,7 @@ }, { "str": "2", - "token_id": 11808, + "token_id": 11806, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108496,7 +108483,7 @@ }, { "str": "'", - "token_id": 11809, + "token_id": 11807, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108505,7 +108492,7 @@ }, { "str": "'", - "token_id": 11810, + "token_id": 11808, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108514,7 +108501,7 @@ }, { "str": "<", - "token_id": 11811, + "token_id": 11809, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108523,7 +108510,7 @@ }, { "str": "nowiki", - "token_id": 11812, + "token_id": 11810, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108532,7 +108519,7 @@ }, { "str": "/", - "token_id": 11813, + "token_id": 11811, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108541,7 +108528,7 @@ }, { "str": ">", - "token_id": 11814, + "token_id": 11812, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108550,7 +108537,7 @@ }, { "str": "'", - "token_id": 11815, + "token_id": 11813, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108559,7 +108546,7 @@ }, { "str": "s", - "token_id": 11816, + "token_id": 11814, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108568,7 +108555,7 @@ }, { "str": "salmon", - "token_id": 11817, + "token_id": 11815, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108577,7 +108564,7 @@ }, { "str": "run", - "token_id": 11818, + "token_id": 11816, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108586,7 +108573,7 @@ }, { "str": ".", - "token_id": 11819, + "token_id": 11817, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -108598,7 +108585,7 @@ }, { "str": "<", - "token_id": 11820, + "token_id": 11818, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108607,7 +108594,7 @@ }, { "str": "ref", - "token_id": 11821, + "token_id": 11819, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108616,7 +108603,7 @@ }, { "str": "name", - "token_id": 11822, + "token_id": 11820, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108625,7 +108612,7 @@ }, { "str": "=", - "token_id": 11823, + "token_id": 11821, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108634,7 +108621,7 @@ }, { "str": "\"", - "token_id": 11824, + "token_id": 11822, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108643,7 +108630,7 @@ }, { "str": "ignmp", - "token_id": 11825, + "token_id": 11823, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108652,7 +108639,7 @@ }, { "str": "\"", - "token_id": 11826, + "token_id": 11824, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108661,7 +108648,7 @@ }, { "str": "/", - "token_id": 11827, + "token_id": 11825, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108670,7 +108657,7 @@ }, { "str": ">", - "token_id": 11828, + "token_id": 11826, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108679,7 +108666,7 @@ }, { "str": "reviewing", - "token_id": 11829, + "token_id": 11827, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108688,7 +108675,7 @@ }, { "str": "the", - "token_id": 11830, + "token_id": 11828, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108697,7 +108684,7 @@ }, { "str": "game", - "token_id": 11831, + "token_id": 11829, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108706,7 +108693,7 @@ }, { "str": "'", - "token_id": 11832, + "token_id": 11830, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108715,7 +108702,7 @@ }, { "str": "s", - "token_id": 11833, + "token_id": 11831, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108724,7 +108711,7 @@ }, { "str": "single", - "token_id": 11834, + "token_id": 11832, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108733,7 +108720,7 @@ }, { "str": "-", - "token_id": 11835, + "token_id": 11833, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108742,7 +108729,7 @@ }, { "str": "player", - "token_id": 11836, + "token_id": 11834, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108751,7 +108738,7 @@ }, { "str": "mode", - "token_id": 11837, + "token_id": 11835, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108760,7 +108747,7 @@ }, { "str": ",", - "token_id": 11838, + "token_id": 11836, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108769,7 +108756,7 @@ }, { "str": "he", - "token_id": 11839, + "token_id": 11837, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108778,7 +108765,7 @@ }, { "str": "appreciated", - "token_id": 11840, + "token_id": 11838, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108787,7 +108774,7 @@ }, { "str": "the", - "token_id": 11841, + "token_id": 11839, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108796,7 +108783,7 @@ }, { "str": "new", - "token_id": 11842, + "token_id": 11840, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108805,7 +108792,7 @@ }, { "str": "take", - "token_id": 11843, + "token_id": 11841, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108814,7 +108801,7 @@ }, { "str": "on", - "token_id": 11844, + "token_id": 11842, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108823,7 +108810,7 @@ }, { "str": "the", - "token_id": 11845, + "token_id": 11843, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108832,7 +108819,7 @@ }, { "str": "series", - "token_id": 11846, + "token_id": 11844, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108841,7 +108828,7 @@ }, { "str": "'", - "token_id": 11847, + "token_id": 11845, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108850,7 +108837,7 @@ }, { "str": "[[", - "token_id": 11848, + "token_id": 11846, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108859,7 +108846,7 @@ }, { "str": "overworld", - "token_id": 11849, + "token_id": 11847, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108868,7 +108855,7 @@ }, { "str": "|", - "token_id": 11850, + "token_id": 11848, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108877,7 +108864,7 @@ }, { "str": "hub", - "token_id": 11851, + "token_id": 11849, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108886,7 +108873,7 @@ }, { "str": "world", - "token_id": 11852, + "token_id": 11850, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108895,7 +108882,7 @@ }, { "str": "]]", - "token_id": 11853, + "token_id": 11851, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108904,7 +108891,7 @@ }, { "str": ",", - "token_id": 11854, + "token_id": 11852, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108913,7 +108900,7 @@ }, { "str": "as", - "token_id": 11855, + "token_id": 11853, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108922,7 +108909,7 @@ }, { "str": "well", - "token_id": 11856, + "token_id": 11854, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108931,7 +108918,7 @@ }, { "str": "as", - "token_id": 11857, + "token_id": 11855, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108940,7 +108927,7 @@ }, { "str": "the", - "token_id": 11858, + "token_id": 11856, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108949,7 +108936,7 @@ }, { "str": "returning", - "token_id": 11859, + "token_id": 11857, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108958,7 +108945,7 @@ }, { "str": "ideas", - "token_id": 11860, + "token_id": 11858, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108967,7 +108954,7 @@ }, { "str": "from", - "token_id": 11861, + "token_id": 11859, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108976,7 +108963,7 @@ }, { "str": "[[", - "token_id": 11862, + "token_id": 11860, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108985,7 +108972,7 @@ }, { "str": "splatoon", - "token_id": 11863, + "token_id": 11861, "o_rev_id": 1115078740, "in": [], "out": [ @@ -108994,7 +108981,7 @@ }, { "str": "2", - "token_id": 11864, + "token_id": 11862, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109003,7 +108990,7 @@ }, { "str": ":", - "token_id": 11865, + "token_id": 11863, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109012,7 +108999,7 @@ }, { "str": "octo", - "token_id": 11866, + "token_id": 11864, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109021,7 +109008,7 @@ }, { "str": "expansion", - "token_id": 11867, + "token_id": 11865, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109030,7 +109017,7 @@ }, { "str": "|", - "token_id": 11868, + "token_id": 11866, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109039,7 +109026,7 @@ }, { "str": "'", - "token_id": 11869, + "token_id": 11867, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109048,7 +109035,7 @@ }, { "str": "'", - "token_id": 11870, + "token_id": 11868, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109057,7 +109044,7 @@ }, { "str": "splatoon", - "token_id": 11871, + "token_id": 11869, "o_rev_id": 1115078740, "in": [ 1216768014 @@ -109069,7 +109056,7 @@ }, { "str": "2", - "token_id": 11872, + "token_id": 11870, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109078,7 +109065,7 @@ }, { "str": "'", - "token_id": 11873, + "token_id": 11871, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109087,7 +109074,7 @@ }, { "str": "'", - "token_id": 11874, + "token_id": 11872, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109096,7 +109083,7 @@ }, { "str": "<", - "token_id": 11875, + "token_id": 11873, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109105,7 +109092,7 @@ }, { "str": "nowiki", - "token_id": 11876, + "token_id": 11874, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109114,7 +109101,7 @@ }, { "str": "/", - "token_id": 11877, + "token_id": 11875, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109123,7 +109110,7 @@ }, { "str": ">", - "token_id": 11878, + "token_id": 11876, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109132,7 +109119,7 @@ }, { "str": "'", - "token_id": 11879, + "token_id": 11877, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109141,7 +109128,7 @@ }, { "str": "s", - "token_id": 11880, + "token_id": 11878, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109150,7 +109137,7 @@ }, { "str": "'", - "token_id": 11881, + "token_id": 11879, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109159,7 +109146,7 @@ }, { "str": "'", - "token_id": 11882, + "token_id": 11880, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109168,7 +109155,7 @@ }, { "str": "octo", - "token_id": 11883, + "token_id": 11881, "o_rev_id": 1115078740, "in": [ 1216172166 @@ -109180,7 +109167,7 @@ }, { "str": "expansion", - "token_id": 11884, + "token_id": 11882, "o_rev_id": 1115078740, "in": [ 1216172166 @@ -109192,7 +109179,7 @@ }, { "str": "'", - "token_id": 11885, + "token_id": 11883, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109201,7 +109188,7 @@ }, { "str": "'", - "token_id": 11886, + "token_id": 11884, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109210,7 +109197,7 @@ }, { "str": "]]", - "token_id": 11887, + "token_id": 11885, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109219,7 +109206,7 @@ }, { "str": ".", - "token_id": 11888, + "token_id": 11886, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109228,7 +109215,7 @@ }, { "str": "he", - "token_id": 11889, + "token_id": 11887, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109240,7 +109227,7 @@ }, { "str": "praised", - "token_id": 11890, + "token_id": 11888, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109252,7 +109239,7 @@ }, { "str": "the", - "token_id": 11891, + "token_id": 11889, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109264,7 +109251,7 @@ }, { "str": "story", - "token_id": 11892, + "token_id": 11890, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109276,7 +109263,7 @@ }, { "str": "mode", - "token_id": 11893, + "token_id": 11891, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109288,7 +109275,7 @@ }, { "str": "'", - "token_id": 11894, + "token_id": 11892, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109300,7 +109287,7 @@ }, { "str": "s", - "token_id": 11895, + "token_id": 11893, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109312,7 +109299,7 @@ }, { "str": "lore", - "token_id": 11896, + "token_id": 11894, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109324,6 +109311,30 @@ }, { "str": ",", + "token_id": 11895, + "o_rev_id": 1115078740, + "in": [ + 1229566085 + ], + "out": [ + 1227326452, + 1334176815 + ] + }, + { + "str": "as", + "token_id": 11896, + "o_rev_id": 1115078740, + "in": [ + 1229566085 + ], + "out": [ + 1227326452, + 1334176815 + ] + }, + { + "str": "well", "token_id": 11897, "o_rev_id": 1115078740, "in": [ @@ -109346,33 +109357,9 @@ 1334176815 ] }, - { - "str": "well", - "token_id": 11899, - "o_rev_id": 1115078740, - "in": [ - 1229566085 - ], - "out": [ - 1227326452, - 1334176815 - ] - }, - { - "str": "as", - "token_id": 11900, - "o_rev_id": 1115078740, - "in": [ - 1229566085 - ], - "out": [ - 1227326452, - 1334176815 - ] - }, { "str": "its", - "token_id": 11901, + "token_id": 11899, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109384,7 +109371,7 @@ }, { "str": "characters", - "token_id": 11902, + "token_id": 11900, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109396,7 +109383,7 @@ }, { "str": ",", - "token_id": 11903, + "token_id": 11901, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109408,7 +109395,7 @@ }, { "str": "while", - "token_id": 11904, + "token_id": 11902, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109420,7 +109407,7 @@ }, { "str": "lamenting", - "token_id": 11905, + "token_id": 11903, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109432,7 +109419,7 @@ }, { "str": "the", - "token_id": 11906, + "token_id": 11904, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109444,7 +109431,7 @@ }, { "str": "reuse", - "token_id": 11907, + "token_id": 11905, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109456,7 +109443,7 @@ }, { "str": "of", - "token_id": 11908, + "token_id": 11906, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109468,7 +109455,7 @@ }, { "str": "enemies", - "token_id": 11909, + "token_id": 11907, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109480,7 +109467,7 @@ }, { "str": "from", - "token_id": 11910, + "token_id": 11908, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109492,7 +109479,7 @@ }, { "str": "previous", - "token_id": 11911, + "token_id": 11909, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109504,7 +109491,7 @@ }, { "str": "games", - "token_id": 11912, + "token_id": 11910, "o_rev_id": 1115078740, "in": [ 1229566085 @@ -109516,7 +109503,7 @@ }, { "str": ".", - "token_id": 11913, + "token_id": 11911, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109525,7 +109512,7 @@ }, { "str": "he", - "token_id": 11914, + "token_id": 11912, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109534,7 +109521,7 @@ }, { "str": "also", - "token_id": 11915, + "token_id": 11913, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109543,7 +109530,7 @@ }, { "str": "reviewed", - "token_id": 11916, + "token_id": 11914, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109552,7 +109539,7 @@ }, { "str": "tableturf", - "token_id": 11917, + "token_id": 11915, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109561,7 +109548,7 @@ }, { "str": "battle", - "token_id": 11918, + "token_id": 11916, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109570,7 +109557,7 @@ }, { "str": ",", - "token_id": 11919, + "token_id": 11917, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109579,7 +109566,7 @@ }, { "str": "calling", - "token_id": 11920, + "token_id": 11918, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109588,7 +109575,7 @@ }, { "str": "it", - "token_id": 11921, + "token_id": 11919, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109597,7 +109584,7 @@ }, { "str": "a", - "token_id": 11922, + "token_id": 11920, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109606,7 +109593,7 @@ }, { "str": "\"", - "token_id": 11923, + "token_id": 11921, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109615,7 +109602,7 @@ }, { "str": "lackluster", - "token_id": 11924, + "token_id": 11922, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109624,7 +109611,7 @@ }, { "str": "card", - "token_id": 11925, + "token_id": 11923, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109633,7 +109620,7 @@ }, { "str": "game", - "token_id": 11926, + "token_id": 11924, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109642,7 +109629,7 @@ }, { "str": "\"", - "token_id": 11927, + "token_id": 11925, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109651,7 +109638,7 @@ }, { "str": "that", - "token_id": 11928, + "token_id": 11926, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109660,7 +109647,7 @@ }, { "str": "\"", - "token_id": 11929, + "token_id": 11927, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109669,7 +109656,7 @@ }, { "str": "consistently", - "token_id": 11930, + "token_id": 11928, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109678,7 +109665,7 @@ }, { "str": "ends", - "token_id": 11931, + "token_id": 11929, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109687,7 +109674,7 @@ }, { "str": "with", - "token_id": 11932, + "token_id": 11930, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109696,7 +109683,7 @@ }, { "str": "a", - "token_id": 11933, + "token_id": 11931, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109705,7 +109692,7 @@ }, { "str": "whimper", - "token_id": 11934, + "token_id": 11932, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109714,7 +109701,7 @@ }, { "str": "instead", - "token_id": 11935, + "token_id": 11933, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109723,7 +109710,7 @@ }, { "str": "of", - "token_id": 11936, + "token_id": 11934, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109732,7 +109719,7 @@ }, { "str": "a", - "token_id": 11937, + "token_id": 11935, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109741,7 +109728,7 @@ }, { "str": "bang", - "token_id": 11938, + "token_id": 11936, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109750,7 +109737,7 @@ }, { "str": "\"", - "token_id": 11939, + "token_id": 11937, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109759,7 +109746,7 @@ }, { "str": ".", - "token_id": 11940, + "token_id": 11938, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109768,7 +109755,7 @@ }, { "str": "<", - "token_id": 11941, + "token_id": 11939, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109777,7 +109764,7 @@ }, { "str": "ref", - "token_id": 11942, + "token_id": 11940, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109786,7 +109773,7 @@ }, { "str": "name", - "token_id": 11943, + "token_id": 11941, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109795,7 +109782,7 @@ }, { "str": "=", - "token_id": 11944, + "token_id": 11942, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109804,7 +109791,7 @@ }, { "str": "\"", - "token_id": 11945, + "token_id": 11943, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109813,7 +109800,7 @@ }, { "str": "ignsp", - "token_id": 11946, + "token_id": 11944, "o_rev_id": 1115078740, "in": [], "out": [ @@ -109822,21 +109809,21 @@ }, { "str": "=", - "token_id": 11947, + "token_id": 11945, "o_rev_id": 1115079016, "in": [], "out": [] }, { "str": "=", - "token_id": 11948, + "token_id": 11946, "o_rev_id": 1115079016, "in": [], "out": [] }, { "str": "setting", - "token_id": 11949, + "token_id": 11947, "o_rev_id": 1115079016, "in": [ 1117591128 @@ -109847,21 +109834,21 @@ }, { "str": "=", - "token_id": 11950, + "token_id": 11948, "o_rev_id": 1115079016, "in": [], "out": [] }, { "str": "=", - "token_id": 11951, + "token_id": 11949, "o_rev_id": 1115079016, "in": [], "out": [] }, { "str": "|", - "token_id": 11952, + "token_id": 11950, "o_rev_id": 1115079016, "in": [ 1117591128 @@ -109873,7 +109860,7 @@ }, { "str": "world", - "token_id": 11953, + "token_id": 11951, "o_rev_id": 1115079016, "in": [ 1117591128 @@ -109885,28 +109872,28 @@ }, { "str": "=", - "token_id": 11954, + "token_id": 11952, "o_rev_id": 1115079016, "in": [], "out": [] }, { "str": "=", - "token_id": 11955, + "token_id": 11953, "o_rev_id": 1115079016, "in": [], "out": [] }, { "str": "=", - "token_id": 11956, + "token_id": 11954, "o_rev_id": 1115079016, "in": [], "out": [] }, { "str": "=", - "token_id": 11957, + "token_id": 11955, "o_rev_id": 1115079016, "in": [], "out": [ @@ -109915,133 +109902,133 @@ }, { "str": "<", - "token_id": 11958, + "token_id": 11956, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "ref", - "token_id": 11959, + "token_id": 11957, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": ">", - "token_id": 11960, + "token_id": 11958, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "{{", - "token_id": 11961, + "token_id": 11959, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "cite", - "token_id": 11962, + "token_id": 11960, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "web", - "token_id": 11963, + "token_id": 11961, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "|", - "token_id": 11964, + "token_id": 11962, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "last", - "token_id": 11965, + "token_id": 11963, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "=", - "token_id": 11966, + "token_id": 11964, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "reynolds", - "token_id": 11967, + "token_id": 11965, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "|", - "token_id": 11968, + "token_id": 11966, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "first", - "token_id": 11969, + "token_id": 11967, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "=", - "token_id": 11970, + "token_id": 11968, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "ollie", - "token_id": 11971, + "token_id": 11969, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "|", - "token_id": 11972, + "token_id": 11970, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "date", - "token_id": 11973, + "token_id": 11971, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "=", - "token_id": 11974, + "token_id": 11972, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "2022", - "token_id": 11975, + "token_id": 11973, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "-", - "token_id": 11976, + "token_id": 11974, "o_rev_id": 1115080840, "in": [ 1202097960 @@ -110052,7 +110039,7 @@ }, { "str": "09", - "token_id": 11977, + "token_id": 11975, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110061,7 +110048,7 @@ }, { "str": "-", - "token_id": 11978, + "token_id": 11976, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110070,7 +110057,7 @@ }, { "str": "02", - "token_id": 11979, + "token_id": 11977, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110079,55 +110066,69 @@ }, { "str": "|", - "token_id": 11980, + "token_id": 11978, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "title", - "token_id": 11981, + "token_id": 11979, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "=", - "token_id": 11982, + "token_id": 11980, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 11983, + "token_id": 11981, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "reiterates", - "token_id": 11984, + "token_id": 11982, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "that", - "token_id": 11985, + "token_id": 11983, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 11986, + "token_id": 11984, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "3", + "token_id": 11985, + "o_rev_id": 1115080840, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 11986, + "o_rev_id": 1115080840, + "in": [], + "out": [] + }, + { + "str": "s", "token_id": 11987, "o_rev_id": 1115080840, "in": [], @@ -110141,140 +110142,140 @@ "out": [] }, { - "str": "s", + "str": "salmon", "token_id": 11989, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "'", + "str": "run", "token_id": 11990, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "salmon", + "str": "'", "token_id": 11991, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "run", + "str": "mode", "token_id": 11992, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "'", + "str": "will", "token_id": 11993, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "mode", + "str": "be", "token_id": 11994, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "will", + "str": "available", "token_id": 11995, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "be", + "str": "24", "token_id": 11996, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "available", + "str": "/", "token_id": 11997, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "24", + "str": "7", "token_id": 11998, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "/", + "str": "|", "token_id": 11999, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "7", + "str": "url", "token_id": 12000, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "|", + "str": "=", "token_id": 12001, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "url", + "str": "https", "token_id": 12002, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "=", + "str": ":", "token_id": 12003, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "https", + "str": "/", "token_id": 12004, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": ":", + "str": "/", "token_id": 12005, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "/", + "str": "www", "token_id": 12006, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "/", + "str": ".", "token_id": 12007, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "www", + "str": "nintendolife", "token_id": 12008, "o_rev_id": 1115080840, "in": [], @@ -110288,21 +110289,21 @@ "out": [] }, { - "str": "nintendolife", + "str": "com", "token_id": 12010, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": ".", + "str": "/", "token_id": 12011, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "com", + "str": "news", "token_id": 12012, "o_rev_id": 1115080840, "in": [], @@ -110316,7 +110317,7 @@ "out": [] }, { - "str": "news", + "str": "2022", "token_id": 12014, "o_rev_id": 1115080840, "in": [], @@ -110330,7 +110331,7 @@ "out": [] }, { - "str": "2022", + "str": "09", "token_id": 12016, "o_rev_id": 1115080840, "in": [], @@ -110344,21 +110345,21 @@ "out": [] }, { - "str": "09", + "str": "nintendo", "token_id": 12018, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "/", + "str": "-", "token_id": 12019, "o_rev_id": 1115080840, "in": [], "out": [] }, { - "str": "nintendo", + "str": "reiterates", "token_id": 12020, "o_rev_id": 1115080840, "in": [], @@ -110372,7 +110373,7 @@ "out": [] }, { - "str": "reiterates", + "str": "that", "token_id": 12022, "o_rev_id": 1115080840, "in": [], @@ -110386,7 +110387,7 @@ "out": [] }, { - "str": "that", + "str": "splatoon", "token_id": 12024, "o_rev_id": 1115080840, "in": [], @@ -110400,7 +110401,7 @@ "out": [] }, { - "str": "splatoon", + "str": "3s", "token_id": 12026, "o_rev_id": 1115080840, "in": [], @@ -110414,7 +110415,7 @@ "out": [] }, { - "str": "3s", + "str": "salmon", "token_id": 12028, "o_rev_id": 1115080840, "in": [], @@ -110428,7 +110429,7 @@ "out": [] }, { - "str": "salmon", + "str": "run", "token_id": 12030, "o_rev_id": 1115080840, "in": [], @@ -110442,7 +110443,7 @@ "out": [] }, { - "str": "run", + "str": "mode", "token_id": 12032, "o_rev_id": 1115080840, "in": [], @@ -110456,7 +110457,7 @@ "out": [] }, { - "str": "mode", + "str": "will", "token_id": 12034, "o_rev_id": 1115080840, "in": [], @@ -110470,7 +110471,7 @@ "out": [] }, { - "str": "will", + "str": "be", "token_id": 12036, "o_rev_id": 1115080840, "in": [], @@ -110484,7 +110485,7 @@ "out": [] }, { - "str": "be", + "str": "available", "token_id": 12038, "o_rev_id": 1115080840, "in": [], @@ -110497,37 +110498,23 @@ "in": [], "out": [] }, - { - "str": "available", - "token_id": 12040, - "o_rev_id": 1115080840, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 12041, - "o_rev_id": 1115080840, - "in": [], - "out": [] - }, { "str": "247", - "token_id": 12042, + "token_id": 12040, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "|", - "token_id": 12043, + "token_id": 12041, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "access", - "token_id": 12044, + "token_id": 12042, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110536,7 +110523,7 @@ }, { "str": "-", - "token_id": 12045, + "token_id": 12043, "o_rev_id": 1115080840, "in": [ 1178773007 @@ -110547,28 +110534,28 @@ }, { "str": "date", - "token_id": 12046, + "token_id": 12044, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "=", - "token_id": 12047, + "token_id": 12045, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "2022", - "token_id": 12048, + "token_id": 12046, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "-", - "token_id": 12049, + "token_id": 12047, "o_rev_id": 1115080840, "in": [ 1178773007 @@ -110579,7 +110566,7 @@ }, { "str": "10", - "token_id": 12050, + "token_id": 12048, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110588,7 +110575,7 @@ }, { "str": "-", - "token_id": 12051, + "token_id": 12049, "o_rev_id": 1115080840, "in": [ 1178773007 @@ -110599,21 +110586,21 @@ }, { "str": "09", - "token_id": 12052, + "token_id": 12050, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "|", - "token_id": 12053, + "token_id": 12051, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "website", - "token_id": 12054, + "token_id": 12052, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110622,14 +110609,14 @@ }, { "str": "=", - "token_id": 12055, + "token_id": 12053, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 12056, + "token_id": 12054, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110638,7 +110625,7 @@ }, { "str": "life", - "token_id": 12057, + "token_id": 12055, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110647,14 +110634,14 @@ }, { "str": "|", - "token_id": 12058, + "token_id": 12056, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "language", - "token_id": 12059, + "token_id": 12057, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110663,14 +110650,14 @@ }, { "str": "=", - "token_id": 12060, + "token_id": 12058, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "en", - "token_id": 12061, + "token_id": 12059, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110679,7 +110666,7 @@ }, { "str": "-", - "token_id": 12062, + "token_id": 12060, "o_rev_id": 1115080840, "in": [ 1178773007 @@ -110690,7 +110677,7 @@ }, { "str": "gb", - "token_id": 12063, + "token_id": 12061, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110699,7 +110686,7 @@ }, { "str": "}}", - "token_id": 12064, + "token_id": 12062, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110708,7 +110695,7 @@ }, { "str": "<", - "token_id": 12065, + "token_id": 12063, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110717,14 +110704,14 @@ }, { "str": "/", - "token_id": 12066, + "token_id": 12064, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "ref", - "token_id": 12067, + "token_id": 12065, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110733,7 +110720,7 @@ }, { "str": ">", - "token_id": 12068, + "token_id": 12066, "o_rev_id": 1115080840, "in": [], "out": [ @@ -110742,14 +110729,14 @@ }, { "str": "a", - "token_id": 12069, + "token_id": 12067, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "new", - "token_id": 12070, + "token_id": 12068, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -110761,7 +110748,7 @@ }, { "str": "mode", - "token_id": 12071, + "token_id": 12069, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -110773,7 +110760,7 @@ }, { "str": "present", - "token_id": 12072, + "token_id": 12070, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110787,7 +110774,7 @@ }, { "str": "in", - "token_id": 12073, + "token_id": 12071, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110801,7 +110788,7 @@ }, { "str": "'", - "token_id": 12074, + "token_id": 12072, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110815,7 +110802,7 @@ }, { "str": "'", - "token_id": 12075, + "token_id": 12073, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110829,7 +110816,7 @@ }, { "str": "splatoon", - "token_id": 12076, + "token_id": 12074, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110845,7 +110832,7 @@ }, { "str": "3", - "token_id": 12077, + "token_id": 12075, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110859,7 +110846,7 @@ }, { "str": "'", - "token_id": 12078, + "token_id": 12076, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110873,7 +110860,7 @@ }, { "str": "'", - "token_id": 12079, + "token_id": 12077, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110887,7 +110874,7 @@ }, { "str": "is", - "token_id": 12080, + "token_id": 12078, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -110901,7 +110888,7 @@ }, { "str": "tableturf", - "token_id": 12081, + "token_id": 12079, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -110913,7 +110900,7 @@ }, { "str": "battle", - "token_id": 12082, + "token_id": 12080, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -110925,7 +110912,7 @@ }, { "str": ",", - "token_id": 12083, + "token_id": 12081, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -110937,7 +110924,7 @@ }, { "str": "a", - "token_id": 12084, + "token_id": 12082, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -110949,133 +110936,133 @@ }, { "str": "[[", - "token_id": 12085, + "token_id": 12083, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "digital", - "token_id": 12086, + "token_id": 12084, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "collectible", - "token_id": 12087, + "token_id": 12085, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "card", - "token_id": 12088, + "token_id": 12086, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "game", - "token_id": 12089, + "token_id": 12087, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "]]", - "token_id": 12090, + "token_id": 12088, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "in", - "token_id": 12091, + "token_id": 12089, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "which", - "token_id": 12092, + "token_id": 12090, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "players", - "token_id": 12093, + "token_id": 12091, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "build", - "token_id": 12094, + "token_id": 12092, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "a", - "token_id": 12095, + "token_id": 12093, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "[[", - "token_id": 12096, + "token_id": 12094, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "deck", - "token_id": 12097, + "token_id": 12095, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "of", - "token_id": 12098, + "token_id": 12096, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "cards", - "token_id": 12099, + "token_id": 12097, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "|", - "token_id": 12100, + "token_id": 12098, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "deck", - "token_id": 12101, + "token_id": 12099, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "]]", - "token_id": 12102, + "token_id": 12100, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "comprised", - "token_id": 12103, + "token_id": 12101, "o_rev_id": 1115080840, "in": [], "out": [ @@ -111084,21 +111071,21 @@ }, { "str": "of", - "token_id": 12104, + "token_id": 12102, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "collected", - "token_id": 12105, + "token_id": 12103, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "trading", - "token_id": 12106, + "token_id": 12104, "o_rev_id": 1115080840, "in": [ 1121143605, @@ -111112,28 +111099,28 @@ }, { "str": "cards", - "token_id": 12107, + "token_id": 12105, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": ".", - "token_id": 12108, + "token_id": 12106, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "in", - "token_id": 12109, + "token_id": 12107, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "tableturf", - "token_id": 12110, + "token_id": 12108, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111144,7 +111131,7 @@ }, { "str": "battle", - "token_id": 12111, + "token_id": 12109, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111155,21 +111142,21 @@ }, { "str": ",", - "token_id": 12112, + "token_id": 12110, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "each", - "token_id": 12113, + "token_id": 12111, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "card", - "token_id": 12114, + "token_id": 12112, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111180,56 +111167,56 @@ }, { "str": "can", - "token_id": 12115, + "token_id": 12113, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "be", - "token_id": 12116, + "token_id": 12114, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "used", - "token_id": 12117, + "token_id": 12115, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "to", - "token_id": 12118, + "token_id": 12116, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "apply", - "token_id": 12119, + "token_id": 12117, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "a", - "token_id": 12120, + "token_id": 12118, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "pattern", - "token_id": 12121, + "token_id": 12119, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "to", - "token_id": 12122, + "token_id": 12120, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -111241,7 +111228,7 @@ }, { "str": "a", - "token_id": 12123, + "token_id": 12121, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111252,7 +111239,7 @@ }, { "str": "grid", - "token_id": 12124, + "token_id": 12122, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111263,14 +111250,14 @@ }, { "str": ",", - "token_id": 12125, + "token_id": 12123, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "and", - "token_id": 12126, + "token_id": 12124, "o_rev_id": 1115080840, "in": [ 1131736068 @@ -111281,7 +111268,7 @@ }, { "str": "after", - "token_id": 12127, + "token_id": 12125, "o_rev_id": 1115080840, "in": [ 1131736068 @@ -111292,14 +111279,14 @@ }, { "str": "a", - "token_id": 12128, + "token_id": 12126, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "\"", - "token_id": 12129, + "token_id": 12127, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111310,7 +111297,7 @@ }, { "str": "special", - "token_id": 12130, + "token_id": 12128, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111321,7 +111308,7 @@ }, { "str": "attack", - "token_id": 12131, + "token_id": 12129, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111332,7 +111319,7 @@ }, { "str": "\"", - "token_id": 12132, + "token_id": 12130, "o_rev_id": 1115080840, "in": [ 1117493323 @@ -111343,84 +111330,84 @@ }, { "str": "is", - "token_id": 12133, + "token_id": 12131, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "charged", - "token_id": 12134, + "token_id": 12132, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": ",", - "token_id": 12135, + "token_id": 12133, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "it", - "token_id": 12136, + "token_id": 12134, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "can", - "token_id": 12137, + "token_id": 12135, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "be", - "token_id": 12138, + "token_id": 12136, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "used", - "token_id": 12139, + "token_id": 12137, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "to", - "token_id": 12140, + "token_id": 12138, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "place", - "token_id": 12141, + "token_id": 12139, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "a", - "token_id": 12142, + "token_id": 12140, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "pattern", - "token_id": 12143, + "token_id": 12141, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "that", - "token_id": 12144, + "token_id": 12142, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -111432,7 +111419,7 @@ }, { "str": "overwrites", - "token_id": 12145, + "token_id": 12143, "o_rev_id": 1115080840, "in": [ 1229566085 @@ -111444,161 +111431,161 @@ }, { "str": "the", - "token_id": 12146, + "token_id": 12144, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "opponent", - "token_id": 12147, + "token_id": 12145, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "'", - "token_id": 12148, + "token_id": 12146, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "s", - "token_id": 12149, + "token_id": 12147, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "patterns", - "token_id": 12150, + "token_id": 12148, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": ".", - "token_id": 12151, + "token_id": 12149, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "<", - "token_id": 12152, + "token_id": 12150, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "ref", - "token_id": 12153, + "token_id": 12151, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "name", - "token_id": 12154, + "token_id": 12152, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "=", - "token_id": 12155, + "token_id": 12153, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "\"", - "token_id": 12156, + "token_id": 12154, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "ignsp", - "token_id": 12157, + "token_id": 12155, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "\"", - "token_id": 12158, + "token_id": 12156, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "/", - "token_id": 12159, + "token_id": 12157, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": ">", - "token_id": 12160, + "token_id": 12158, "o_rev_id": 1115080840, "in": [], "out": [] }, { "str": "[[", - "token_id": 12161, + "token_id": 12159, "o_rev_id": 1115081059, "in": [], "out": [] }, { "str": "share", - "token_id": 12162, + "token_id": 12160, "o_rev_id": 1115081059, "in": [], "out": [] }, { "str": "(", - "token_id": 12163, + "token_id": 12161, "o_rev_id": 1115081059, "in": [], "out": [] }, { "str": "finance", - "token_id": 12164, + "token_id": 12162, "o_rev_id": 1115081059, "in": [], "out": [] }, { "str": ")", - "token_id": 12165, + "token_id": 12163, "o_rev_id": 1115081059, "in": [], "out": [] }, { "str": "|", - "token_id": 12166, + "token_id": 12164, "o_rev_id": 1115081059, "in": [], "out": [] }, { "str": "]]", - "token_id": 12167, + "token_id": 12165, "o_rev_id": 1115081059, "in": [], "out": [] }, { "str": "craig", - "token_id": 12168, + "token_id": 12166, "o_rev_id": 1115170023, "in": [ 1115540829 @@ -111610,7 +111597,7 @@ }, { "str": "composed", - "token_id": 12169, + "token_id": 12167, "o_rev_id": 1115171361, "in": [ 1229566085 @@ -111622,147 +111609,147 @@ }, { "str": "{{", - "token_id": 12170, + "token_id": 12168, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "ubl", - "token_id": 12171, + "token_id": 12169, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12172, + "token_id": 12170, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12173, + "token_id": 12171, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "}}", - "token_id": 12174, + "token_id": 12172, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "{{", - "token_id": 12175, + "token_id": 12173, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "ubl", - "token_id": 12176, + "token_id": 12174, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12177, + "token_id": 12175, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12178, + "token_id": 12176, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12179, + "token_id": 12177, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "}}", - "token_id": 12180, + "token_id": 12178, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "{{", - "token_id": 12181, + "token_id": 12179, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "ubl", - "token_id": 12182, + "token_id": 12180, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12183, + "token_id": 12181, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12184, + "token_id": 12182, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12185, + "token_id": 12183, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "}}", - "token_id": 12186, + "token_id": 12184, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "{{", - "token_id": 12187, + "token_id": 12185, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "ubl", - "token_id": 12188, + "token_id": 12186, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12189, + "token_id": 12187, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12190, + "token_id": 12188, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111771,21 +111758,21 @@ }, { "str": "shiho", - "token_id": 12191, + "token_id": 12189, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "fujii", - "token_id": 12192, + "token_id": 12190, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12193, + "token_id": 12191, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111794,7 +111781,7 @@ }, { "str": "ryo", - "token_id": 12194, + "token_id": 12192, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111803,7 +111790,7 @@ }, { "str": "nagamatsu", - "token_id": 12195, + "token_id": 12193, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111812,7 +111799,7 @@ }, { "str": "|", - "token_id": 12196, + "token_id": 12194, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111821,7 +111808,7 @@ }, { "str": "toshiyuki", - "token_id": 12197, + "token_id": 12195, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111830,7 +111817,7 @@ }, { "str": "sudo", - "token_id": 12198, + "token_id": 12196, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111839,28 +111826,28 @@ }, { "str": "|", - "token_id": 12199, + "token_id": 12197, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "yumi", - "token_id": 12200, + "token_id": 12198, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "takahashi", - "token_id": 12201, + "token_id": 12199, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12202, + "token_id": 12200, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111869,7 +111856,7 @@ }, { "str": "sayako", - "token_id": 12203, + "token_id": 12201, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111878,7 +111865,7 @@ }, { "str": "doi", - "token_id": 12204, + "token_id": 12202, "o_rev_id": 1115272901, "in": [], "out": [ @@ -111887,14 +111874,14 @@ }, { "str": "}}", - "token_id": 12205, + "token_id": 12203, "o_rev_id": 1115272901, "in": [], "out": [] }, { "str": "|", - "token_id": 12206, + "token_id": 12204, "o_rev_id": 1115288880, "in": [], "out": [ @@ -111903,7 +111890,7 @@ }, { "str": "|", - "token_id": 12207, + "token_id": 12205, "o_rev_id": 1115288880, "in": [], "out": [ @@ -111912,7 +111899,7 @@ }, { "str": "left", - "token_id": 12208, + "token_id": 12206, "o_rev_id": 1115288880, "in": [], "out": [ @@ -111921,7 +111908,7 @@ }, { "str": "[[", - "token_id": 12209, + "token_id": 12207, "o_rev_id": 1115323002, "in": [ 1150046333, @@ -111934,7 +111921,7 @@ }, { "str": "turf", - "token_id": 12210, + "token_id": 12208, "o_rev_id": 1115323002, "in": [ 1150046333, @@ -111947,6 +111934,32 @@ }, { "str": "war", + "token_id": 12209, + "o_rev_id": 1115323002, + "in": [ + 1150046333, + 1229566085 + ], + "out": [ + 1149972464, + 1229561066 + ] + }, + { + "str": "|", + "token_id": 12210, + "o_rev_id": 1115323002, + "in": [ + 1150046333, + 1229566085 + ], + "out": [ + 1149972464, + 1229561066 + ] + }, + { + "str": "left", "token_id": 12211, "o_rev_id": 1115323002, "in": [ @@ -111971,35 +111984,9 @@ 1229561066 ] }, - { - "str": "left", - "token_id": 12213, - "o_rev_id": 1115323002, - "in": [ - 1150046333, - 1229566085 - ], - "out": [ - 1149972464, - 1229561066 - ] - }, - { - "str": "|", - "token_id": 12214, - "o_rev_id": 1115323002, - "in": [ - 1150046333, - 1229566085 - ], - "out": [ - 1149972464, - 1229561066 - ] - }, { "str": "|", - "token_id": 12215, + "token_id": 12213, "o_rev_id": 1115323002, "in": [ 1150046333, @@ -112012,7 +111999,7 @@ }, { "str": "engaging", - "token_id": 12216, + "token_id": 12214, "o_rev_id": 1115323002, "in": [ 1150046333, @@ -112025,7 +112012,7 @@ }, { "str": "the", - "token_id": 12217, + "token_id": 12215, "o_rev_id": 1115323002, "in": [ 1117591128, @@ -112040,7 +112027,7 @@ }, { "str": "online", - "token_id": 12218, + "token_id": 12216, "o_rev_id": 1115323002, "in": [ 1117591128, @@ -112055,7 +112042,7 @@ }, { "str": "mode", - "token_id": 12219, + "token_id": 12217, "o_rev_id": 1115323002, "in": [ 1117591128, @@ -112070,7 +112057,7 @@ }, { "str": "]]", - "token_id": 12220, + "token_id": 12218, "o_rev_id": 1115323002, "in": [ 1150046333, @@ -112083,7 +112070,7 @@ }, { "str": "[[", - "token_id": 12221, + "token_id": 12219, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112094,7 +112081,7 @@ }, { "str": "file", - "token_id": 12222, + "token_id": 12220, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112105,7 +112092,7 @@ }, { "str": ":", - "token_id": 12223, + "token_id": 12221, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112116,7 +112103,7 @@ }, { "str": "splatoon", - "token_id": 12224, + "token_id": 12222, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112127,7 +112114,7 @@ }, { "str": "3", - "token_id": 12225, + "token_id": 12223, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112138,7 +112125,7 @@ }, { "str": "salmon", - "token_id": 12226, + "token_id": 12224, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112149,7 +112136,7 @@ }, { "str": "run", - "token_id": 12227, + "token_id": 12225, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112160,7 +112147,7 @@ }, { "str": ".", - "token_id": 12228, + "token_id": 12226, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112171,7 +112158,7 @@ }, { "str": "jpg", - "token_id": 12229, + "token_id": 12227, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112182,7 +112169,7 @@ }, { "str": "|", - "token_id": 12230, + "token_id": 12228, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112193,7 +112180,7 @@ }, { "str": "thumb", - "token_id": 12231, + "token_id": 12229, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112204,7 +112191,7 @@ }, { "str": "|", - "token_id": 12232, + "token_id": 12230, "o_rev_id": 1115323002, "in": [ 1117493323, @@ -112218,7 +112205,7 @@ }, { "str": "players", - "token_id": 12233, + "token_id": 12231, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112229,7 +112216,7 @@ }, { "str": "team", - "token_id": 12234, + "token_id": 12232, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112240,7 +112227,7 @@ }, { "str": "up", - "token_id": 12235, + "token_id": 12233, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112251,7 +112238,7 @@ }, { "str": "to", - "token_id": 12236, + "token_id": 12234, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112262,7 +112249,7 @@ }, { "str": "defeat", - "token_id": 12237, + "token_id": 12235, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112273,7 +112260,7 @@ }, { "str": "the", - "token_id": 12238, + "token_id": 12236, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112284,7 +112271,7 @@ }, { "str": "cohozuna", - "token_id": 12239, + "token_id": 12237, "o_rev_id": 1115323002, "in": [ 1117493323, @@ -112299,7 +112286,7 @@ }, { "str": "boss", - "token_id": 12240, + "token_id": 12238, "o_rev_id": 1115323002, "in": [ 1136546128 @@ -112310,21 +112297,21 @@ }, { "str": "in", - "token_id": 12241, + "token_id": 12239, "o_rev_id": 1115323002, "in": [], "out": [] }, { "str": "the", - "token_id": 12242, + "token_id": 12240, "o_rev_id": 1115323002, "in": [], "out": [] }, { "str": "co", - "token_id": 12243, + "token_id": 12241, "o_rev_id": 1115323002, "in": [ 1117493323, @@ -112337,7 +112324,7 @@ }, { "str": "-", - "token_id": 12244, + "token_id": 12242, "o_rev_id": 1115323002, "in": [ 1117493323, @@ -112350,7 +112337,7 @@ }, { "str": "op", - "token_id": 12245, + "token_id": 12243, "o_rev_id": 1115323002, "in": [ 1117493323, @@ -112363,28 +112350,28 @@ }, { "str": "salmon", - "token_id": 12246, + "token_id": 12244, "o_rev_id": 1115323002, "in": [], "out": [] }, { "str": "run", - "token_id": 12247, + "token_id": 12245, "o_rev_id": 1115323002, "in": [], "out": [] }, { "str": "mode", - "token_id": 12248, + "token_id": 12246, "o_rev_id": 1115323002, "in": [], "out": [] }, { "str": "]]", - "token_id": 12249, + "token_id": 12247, "o_rev_id": 1115323002, "in": [ 1179974250 @@ -112395,49 +112382,49 @@ }, { "str": "|", - "token_id": 12250, + "token_id": 12248, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "fam", - "token_id": 12251, + "token_id": 12249, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "=", - "token_id": 12252, + "token_id": 12250, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "39", - "token_id": 12253, + "token_id": 12251, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "/", - "token_id": 12254, + "token_id": 12252, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "40", - "token_id": 12255, + "token_id": 12253, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "<", - "token_id": 12256, + "token_id": 12254, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112448,14 +112435,18 @@ }, { "str": "ref", - "token_id": 12257, + "token_id": 12255, "o_rev_id": 1115466812, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "name", - "token_id": 12258, + "token_id": 12256, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112466,7 +112457,7 @@ }, { "str": "=", - "token_id": 12259, + "token_id": 12257, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112477,7 +112468,7 @@ }, { "str": "\"", - "token_id": 12260, + "token_id": 12258, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112488,14 +112479,18 @@ }, { "str": "famitsu", - "token_id": 12261, + "token_id": 12259, "o_rev_id": 1115466812, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "\"", - "token_id": 12262, + "token_id": 12260, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112506,7 +112501,7 @@ }, { "str": ">", - "token_id": 12263, + "token_id": 12261, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112517,14 +112512,14 @@ }, { "str": "{{", - "token_id": 12264, + "token_id": 12262, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "cite", - "token_id": 12265, + "token_id": 12263, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112535,21 +112530,21 @@ }, { "str": "web", - "token_id": 12266, + "token_id": 12264, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "|", - "token_id": 12267, + "token_id": 12265, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "last", - "token_id": 12268, + "token_id": 12266, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112560,28 +112555,28 @@ }, { "str": "=", - "token_id": 12269, + "token_id": 12267, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "romano", - "token_id": 12270, + "token_id": 12268, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "|", - "token_id": 12271, + "token_id": 12269, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "first", - "token_id": 12272, + "token_id": 12270, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112592,39 +112587,28 @@ }, { "str": "=", - "token_id": 12273, + "token_id": 12271, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "sal", - "token_id": 12274, + "token_id": 12272, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "|", - "token_id": 12275, - "o_rev_id": 1115466812, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "date", - "token_id": 12276, + "token_id": 12273, "o_rev_id": 1115466812, "in": [], "out": [] }, { - "str": "=", - "token_id": 12277, + "str": "date", + "token_id": 12274, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -112633,16 +112617,23 @@ 1202071552 ] }, + { + "str": "=", + "token_id": 12275, + "o_rev_id": 1115466812, + "in": [], + "out": [] + }, { "str": "2022", - "token_id": 12278, + "token_id": 12276, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12279, + "token_id": 12277, "o_rev_id": 1115466812, "in": [], "out": [ @@ -112651,7 +112642,7 @@ }, { "str": "09", - "token_id": 12280, + "token_id": 12278, "o_rev_id": 1115466812, "in": [], "out": [ @@ -112660,7 +112651,7 @@ }, { "str": "-", - "token_id": 12281, + "token_id": 12279, "o_rev_id": 1115466812, "in": [], "out": [ @@ -112669,277 +112660,273 @@ }, { "str": "28", - "token_id": 12282, + "token_id": 12280, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "|", - "token_id": 12283, + "token_id": 12281, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "title", - "token_id": 12284, + "token_id": 12282, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "=", - "token_id": 12285, + "token_id": 12283, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "famitsu", - "token_id": 12286, + "token_id": 12284, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "review", - "token_id": 12287, + "token_id": 12285, "o_rev_id": 1115466812, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "scores", - "token_id": 12288, + "token_id": 12286, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": ":", - "token_id": 12289, + "token_id": 12287, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "issue", - "token_id": 12290, + "token_id": 12288, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "1765", - "token_id": 12291, + "token_id": 12289, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "|", - "token_id": 12292, + "token_id": 12290, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "url", - "token_id": 12293, + "token_id": 12291, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "=", - "token_id": 12294, + "token_id": 12292, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "https", - "token_id": 12295, + "token_id": 12293, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": ":", - "token_id": 12296, + "token_id": 12294, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "/", - "token_id": 12297, + "token_id": 12295, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "/", - "token_id": 12298, + "token_id": 12296, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "www", - "token_id": 12299, + "token_id": 12297, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": ".", - "token_id": 12300, + "token_id": 12298, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "gematsu", - "token_id": 12301, + "token_id": 12299, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": ".", - "token_id": 12302, + "token_id": 12300, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "com", - "token_id": 12303, + "token_id": 12301, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "/", - "token_id": 12304, + "token_id": 12302, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "2022", - "token_id": 12305, + "token_id": 12303, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "/", - "token_id": 12306, + "token_id": 12304, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "09", - "token_id": 12307, + "token_id": 12305, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "/", - "token_id": 12308, + "token_id": 12306, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "famitsu", - "token_id": 12309, + "token_id": 12307, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12310, + "token_id": 12308, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "review", - "token_id": 12311, + "token_id": 12309, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12312, + "token_id": 12310, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "scores", - "token_id": 12313, + "token_id": 12311, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12314, + "token_id": 12312, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "issue", - "token_id": 12315, + "token_id": 12313, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12316, + "token_id": 12314, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "1765", - "token_id": 12317, + "token_id": 12315, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "|", - "token_id": 12318, + "token_id": 12316, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "url", - "token_id": 12319, + "token_id": 12317, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12320, + "token_id": 12318, "o_rev_id": 1115466812, "in": [], "out": [ @@ -112948,28 +112935,32 @@ }, { "str": "status", - "token_id": 12321, + "token_id": 12319, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "=", - "token_id": 12322, + "token_id": 12320, "o_rev_id": 1115466812, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "live", - "token_id": 12323, + "token_id": 12321, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "|", - "token_id": 12324, + "token_id": 12322, "o_rev_id": 1115466812, "in": [], "out": [ @@ -112978,14 +112969,14 @@ }, { "str": "access", - "token_id": 12325, + "token_id": 12323, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12326, + "token_id": 12324, "o_rev_id": 1115466812, "in": [], "out": [ @@ -112994,14 +112985,14 @@ }, { "str": "date", - "token_id": 12327, + "token_id": 12325, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "=", - "token_id": 12328, + "token_id": 12326, "o_rev_id": 1115466812, "in": [], "out": [ @@ -113010,21 +113001,21 @@ }, { "str": "2022", - "token_id": 12329, + "token_id": 12327, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12330, + "token_id": 12328, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "10", - "token_id": 12331, + "token_id": 12329, "o_rev_id": 1115466812, "in": [], "out": [ @@ -113033,21 +113024,21 @@ }, { "str": "-", - "token_id": 12332, + "token_id": 12330, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "11", - "token_id": 12333, + "token_id": 12331, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "|", - "token_id": 12334, + "token_id": 12332, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -113058,14 +113049,18 @@ }, { "str": "website", - "token_id": 12335, + "token_id": 12333, "o_rev_id": 1115466812, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 12336, + "token_id": 12334, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -113076,7 +113071,7 @@ }, { "str": "gematsu", - "token_id": 12337, + "token_id": 12335, "o_rev_id": 1115466812, "in": [], "out": [ @@ -113085,7 +113080,7 @@ }, { "str": "|", - "token_id": 12338, + "token_id": 12336, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -113096,14 +113091,18 @@ }, { "str": "language", - "token_id": 12339, + "token_id": 12337, "o_rev_id": 1115466812, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 12340, + "token_id": 12338, "o_rev_id": 1115466812, "in": [ 1202097960 @@ -113114,14 +113113,14 @@ }, { "str": "en", - "token_id": 12341, + "token_id": 12339, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "-", - "token_id": 12342, + "token_id": 12340, "o_rev_id": 1115466812, "in": [], "out": [ @@ -113130,14 +113129,14 @@ }, { "str": "us", - "token_id": 12343, + "token_id": 12341, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "}}", - "token_id": 12344, + "token_id": 12342, "o_rev_id": 1115466812, "in": [], "out": [ @@ -113146,7 +113145,7 @@ }, { "str": "<", - "token_id": 12345, + "token_id": 12343, "o_rev_id": 1115466812, "in": [], "out": [ @@ -113155,14 +113154,14 @@ }, { "str": "/", - "token_id": 12346, + "token_id": 12344, "o_rev_id": 1115466812, "in": [], "out": [] }, { "str": "ref", - "token_id": 12347, + "token_id": 12345, "o_rev_id": 1115466812, "in": [], "out": [ @@ -113171,7 +113170,7 @@ }, { "str": ">", - "token_id": 12348, + "token_id": 12346, "o_rev_id": 1115466812, "in": [], "out": [ @@ -113180,7 +113179,7 @@ }, { "str": "dz", - "token_id": 12349, + "token_id": 12347, "o_rev_id": 1115466924, "in": [], "out": [ @@ -113189,7 +113188,7 @@ }, { "str": "nuts", - "token_id": 12350, + "token_id": 12348, "o_rev_id": 1115466924, "in": [], "out": [ @@ -113198,28 +113197,28 @@ }, { "str": "=", - "token_id": 12351, + "token_id": 12349, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12352, + "token_id": 12350, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12353, + "token_id": 12351, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "modes", - "token_id": 12354, + "token_id": 12352, "o_rev_id": 1115491060, "in": [ 1117591128 @@ -113230,25 +113229,47 @@ }, { "str": "=", - "token_id": 12355, + "token_id": 12353, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12356, + "token_id": 12354, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12357, + "token_id": 12355, "o_rev_id": 1115491060, "in": [], "out": [] }, + { + "str": "=", + "token_id": 12356, + "o_rev_id": 1115491060, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, + { + "str": "=", + "token_id": 12357, + "o_rev_id": 1115491060, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, { "str": "=", "token_id": 12358, @@ -113271,31 +113292,9 @@ 1117588531 ] }, - { - "str": "=", - "token_id": 12360, - "o_rev_id": 1115491060, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, - { - "str": "=", - "token_id": 12361, - "o_rev_id": 1115491060, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, { "str": "competitive", - "token_id": 12362, + "token_id": 12360, "o_rev_id": 1115491060, "in": [ 1117591128, @@ -113312,7 +113311,7 @@ }, { "str": "=", - "token_id": 12363, + "token_id": 12361, "o_rev_id": 1115491060, "in": [ 1117591128 @@ -113323,7 +113322,7 @@ }, { "str": "=", - "token_id": 12364, + "token_id": 12362, "o_rev_id": 1115491060, "in": [ 1117591128 @@ -113334,7 +113333,7 @@ }, { "str": "=", - "token_id": 12365, + "token_id": 12363, "o_rev_id": 1115491060, "in": [ 1117591128 @@ -113345,7 +113344,7 @@ }, { "str": "=", - "token_id": 12366, + "token_id": 12364, "o_rev_id": 1115491060, "in": [ 1117591128 @@ -113356,56 +113355,56 @@ }, { "str": "=", - "token_id": 12367, + "token_id": 12365, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12368, + "token_id": 12366, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12369, + "token_id": 12367, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12370, + "token_id": 12368, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "salmon", - "token_id": 12371, + "token_id": 12369, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "run", - "token_id": 12372, + "token_id": 12370, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12373, + "token_id": 12371, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12374, + "token_id": 12372, "o_rev_id": 1115491060, "in": [ 1179974250 @@ -113416,7 +113415,7 @@ }, { "str": "=", - "token_id": 12375, + "token_id": 12373, "o_rev_id": 1115491060, "in": [ 1179974250 @@ -113427,7 +113426,7 @@ }, { "str": "=", - "token_id": 12376, + "token_id": 12374, "o_rev_id": 1115491060, "in": [ 1179974250 @@ -113438,42 +113437,42 @@ }, { "str": "=", - "token_id": 12377, + "token_id": 12375, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12378, + "token_id": 12376, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12379, + "token_id": 12377, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12380, + "token_id": 12378, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "tableturf", - "token_id": 12381, + "token_id": 12379, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "battle", - "token_id": 12382, + "token_id": 12380, "o_rev_id": 1115491060, "in": [ 1179974250 @@ -113484,35 +113483,35 @@ }, { "str": "=", - "token_id": 12383, + "token_id": 12381, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12384, + "token_id": 12382, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12385, + "token_id": 12383, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "=", - "token_id": 12386, + "token_id": 12384, "o_rev_id": 1115491060, "in": [], "out": [] }, { "str": "[[", - "token_id": 12387, + "token_id": 12385, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113521,14 +113520,14 @@ }, { "str": "cooperative", - "token_id": 12388, + "token_id": 12386, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12389, + "token_id": 12387, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113537,7 +113536,7 @@ }, { "str": "]]", - "token_id": 12390, + "token_id": 12388, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113546,35 +113545,35 @@ }, { "str": "[[", - "token_id": 12391, + "token_id": 12389, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "player", - "token_id": 12392, + "token_id": 12390, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "versus", - "token_id": 12393, + "token_id": 12391, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "environment", - "token_id": 12394, + "token_id": 12392, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12395, + "token_id": 12393, "o_rev_id": 1115494631, "in": [ 1117591128 @@ -113586,7 +113585,7 @@ }, { "str": "pve", - "token_id": 12396, + "token_id": 12394, "o_rev_id": 1115494631, "in": [ 1117591128 @@ -113597,7 +113596,7 @@ }, { "str": "]]", - "token_id": 12397, + "token_id": 12395, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113606,21 +113605,21 @@ }, { "str": "salmon", - "token_id": 12398, + "token_id": 12396, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "run", - "token_id": 12399, + "token_id": 12397, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12400, + "token_id": 12398, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113629,7 +113628,7 @@ }, { "str": "'", - "token_id": 12401, + "token_id": 12399, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113638,7 +113637,7 @@ }, { "str": "'", - "token_id": 12402, + "token_id": 12400, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113647,7 +113646,7 @@ }, { "str": "'", - "token_id": 12403, + "token_id": 12401, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113656,7 +113655,7 @@ }, { "str": "'", - "token_id": 12404, + "token_id": 12402, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113665,7 +113664,7 @@ }, { "str": "'", - "token_id": 12405, + "token_id": 12403, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113674,21 +113673,21 @@ }, { "str": "salmon", - "token_id": 12406, + "token_id": 12404, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "run", - "token_id": 12407, + "token_id": 12405, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12408, + "token_id": 12406, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113697,7 +113696,7 @@ }, { "str": "'", - "token_id": 12409, + "token_id": 12407, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113706,7 +113705,7 @@ }, { "str": "follows", - "token_id": 12410, + "token_id": 12408, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113715,154 +113714,154 @@ }, { "str": "the", - "token_id": 12411, + "token_id": 12409, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "same", - "token_id": 12412, + "token_id": 12410, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "basic", - "token_id": 12413, + "token_id": 12411, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "gameplay", - "token_id": 12414, + "token_id": 12412, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "as", - "token_id": 12415, + "token_id": 12413, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "it", - "token_id": 12416, + "token_id": 12414, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "does", - "token_id": 12417, + "token_id": 12415, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "in", - "token_id": 12418, + "token_id": 12416, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12419, + "token_id": 12417, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12420, + "token_id": 12418, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "[[", - "token_id": 12421, + "token_id": 12419, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 12422, + "token_id": 12420, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "2", - "token_id": 12423, + "token_id": 12421, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "]]", - "token_id": 12424, + "token_id": 12422, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12425, + "token_id": 12423, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12426, + "token_id": 12424, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ",", - "token_id": 12427, + "token_id": 12425, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "where", - "token_id": 12428, + "token_id": 12426, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "the", - "token_id": 12429, + "token_id": 12427, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "player", - "token_id": 12430, + "token_id": 12428, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ",", - "token_id": 12431, + "token_id": 12429, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "[[", - "token_id": 12432, + "token_id": 12430, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113871,7 +113870,7 @@ }, { "str": "employment", - "token_id": 12433, + "token_id": 12431, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113880,7 +113879,7 @@ }, { "str": "|", - "token_id": 12434, + "token_id": 12432, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113889,14 +113888,14 @@ }, { "str": "employed", - "token_id": 12435, + "token_id": 12433, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "]]", - "token_id": 12436, + "token_id": 12434, "o_rev_id": 1115494631, "in": [], "out": [ @@ -113905,175 +113904,175 @@ }, { "str": "by", - "token_id": 12437, + "token_id": 12435, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "grizzco", - "token_id": 12438, + "token_id": 12436, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ",", - "token_id": 12439, + "token_id": 12437, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "teams", - "token_id": 12440, + "token_id": 12438, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "up", - "token_id": 12441, + "token_id": 12439, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "with", - "token_id": 12442, + "token_id": 12440, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "three", - "token_id": 12443, + "token_id": 12441, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "other", - "token_id": 12444, + "token_id": 12442, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "players", - "token_id": 12445, + "token_id": 12443, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "to", - "token_id": 12446, + "token_id": 12444, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "fight", - "token_id": 12447, + "token_id": 12445, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "waves", - "token_id": 12448, + "token_id": 12446, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "of", - "token_id": 12449, + "token_id": 12447, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "enemies", - "token_id": 12450, + "token_id": 12448, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "known", - "token_id": 12451, + "token_id": 12449, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "as", - "token_id": 12452, + "token_id": 12450, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "\"", - "token_id": 12453, + "token_id": 12451, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "salmonids", - "token_id": 12454, + "token_id": 12452, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "\"", - "token_id": 12455, + "token_id": 12453, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "to", - "token_id": 12456, + "token_id": 12454, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "collect", - "token_id": 12457, + "token_id": 12455, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "golden", - "token_id": 12458, + "token_id": 12456, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "eggs", - "token_id": 12459, + "token_id": 12457, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ".", - "token_id": 12460, + "token_id": 12458, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "<", - "token_id": 12461, + "token_id": 12459, "o_rev_id": 1115494631, "in": [ 1202097960 @@ -114084,7 +114083,7 @@ }, { "str": "ref", - "token_id": 12462, + "token_id": 12460, "o_rev_id": 1115494631, "in": [ 1202097960 @@ -114095,7 +114094,7 @@ }, { "str": ">", - "token_id": 12463, + "token_id": 12461, "o_rev_id": 1115494631, "in": [ 1202097960 @@ -114106,119 +114105,119 @@ }, { "str": "{{", - "token_id": 12464, + "token_id": 12462, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "cite", - "token_id": 12465, + "token_id": 12463, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "web", - "token_id": 12466, + "token_id": 12464, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12467, + "token_id": 12465, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "last", - "token_id": 12468, + "token_id": 12466, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12469, + "token_id": 12467, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "thomas", - "token_id": 12470, + "token_id": 12468, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12471, + "token_id": 12469, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "first", - "token_id": 12472, + "token_id": 12470, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12473, + "token_id": 12471, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "harrison", - "token_id": 12474, + "token_id": 12472, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12475, + "token_id": 12473, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "date", - "token_id": 12476, + "token_id": 12474, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12477, + "token_id": 12475, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "2022", - "token_id": 12478, + "token_id": 12476, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12479, + "token_id": 12477, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "09", - "token_id": 12480, + "token_id": 12478, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114227,312 +114226,308 @@ }, { "str": "-", - "token_id": 12481, + "token_id": 12479, "o_rev_id": 1115494631, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "19", - "token_id": 12482, + "token_id": 12480, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12483, + "token_id": 12481, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "title", - "token_id": 12484, + "token_id": 12482, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12485, + "token_id": 12483, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "how", - "token_id": 12486, + "token_id": 12484, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "to", - "token_id": 12487, + "token_id": 12485, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "play", - "token_id": 12488, + "token_id": 12486, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "salmon", - "token_id": 12489, + "token_id": 12487, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "run", - "token_id": 12490, + "token_id": 12488, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "in", - "token_id": 12491, + "token_id": 12489, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 12492, + "token_id": 12490, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "3", - "token_id": 12493, + "token_id": 12491, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12494, + "token_id": 12492, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "url", - "token_id": 12495, + "token_id": 12493, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12496, + "token_id": 12494, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "https", - "token_id": 12497, + "token_id": 12495, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ":", - "token_id": 12498, + "token_id": 12496, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12499, + "token_id": 12497, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12500, + "token_id": 12498, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "dotesports", - "token_id": 12501, + "token_id": 12499, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ".", - "token_id": 12502, + "token_id": 12500, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "com", - "token_id": 12503, + "token_id": 12501, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12504, + "token_id": 12502, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 12505, + "token_id": 12503, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12506, + "token_id": 12504, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "news", - "token_id": 12507, + "token_id": 12505, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12508, + "token_id": 12506, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "how", - "token_id": 12509, + "token_id": 12507, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12510, + "token_id": 12508, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "to", - "token_id": 12511, + "token_id": 12509, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12512, + "token_id": 12510, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "play", - "token_id": 12513, + "token_id": 12511, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12514, + "token_id": 12512, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "salmon", - "token_id": 12515, + "token_id": 12513, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12516, + "token_id": 12514, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "run", - "token_id": 12517, + "token_id": 12515, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12518, + "token_id": 12516, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "in", - "token_id": 12519, + "token_id": 12517, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12520, + "token_id": 12518, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 12521, + "token_id": 12519, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12522, + "token_id": 12520, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "3", - "token_id": 12523, + "token_id": 12521, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12524, + "token_id": 12522, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114543,7 +114538,7 @@ }, { "str": "access", - "token_id": 12525, + "token_id": 12523, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114552,14 +114547,14 @@ }, { "str": "-", - "token_id": 12526, + "token_id": 12524, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "date", - "token_id": 12527, + "token_id": 12525, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114570,7 +114565,7 @@ }, { "str": "=", - "token_id": 12528, + "token_id": 12526, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114581,7 +114576,7 @@ }, { "str": "2022", - "token_id": 12529, + "token_id": 12527, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114592,7 +114587,7 @@ }, { "str": "-", - "token_id": 12530, + "token_id": 12528, "o_rev_id": 1115494631, "in": [ 1180622889 @@ -114603,7 +114598,7 @@ }, { "str": "10", - "token_id": 12531, + "token_id": 12529, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114612,7 +114607,7 @@ }, { "str": "-", - "token_id": 12532, + "token_id": 12530, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114623,7 +114618,7 @@ }, { "str": "11", - "token_id": 12533, + "token_id": 12531, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114632,7 +114627,7 @@ }, { "str": "|", - "token_id": 12534, + "token_id": 12532, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114643,7 +114638,7 @@ }, { "str": "website", - "token_id": 12535, + "token_id": 12533, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114652,7 +114647,7 @@ }, { "str": "=", - "token_id": 12536, + "token_id": 12534, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114663,21 +114658,21 @@ }, { "str": "dot", - "token_id": 12537, + "token_id": 12535, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "esports", - "token_id": 12538, + "token_id": 12536, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12539, + "token_id": 12537, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114688,7 +114683,7 @@ }, { "str": "language", - "token_id": 12540, + "token_id": 12538, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114697,7 +114692,7 @@ }, { "str": "=", - "token_id": 12541, + "token_id": 12539, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -114708,7 +114703,7 @@ }, { "str": "en", - "token_id": 12542, + "token_id": 12540, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114717,7 +114712,7 @@ }, { "str": "-", - "token_id": 12543, + "token_id": 12541, "o_rev_id": 1115494631, "in": [ 1178773007, @@ -114730,7 +114725,7 @@ }, { "str": "us", - "token_id": 12544, + "token_id": 12542, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114739,7 +114734,7 @@ }, { "str": "}}", - "token_id": 12545, + "token_id": 12543, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114748,7 +114743,7 @@ }, { "str": "<", - "token_id": 12546, + "token_id": 12544, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114757,14 +114752,14 @@ }, { "str": "/", - "token_id": 12547, + "token_id": 12545, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "ref", - "token_id": 12548, + "token_id": 12546, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114773,7 +114768,7 @@ }, { "str": ">", - "token_id": 12549, + "token_id": 12547, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114782,7 +114777,7 @@ }, { "str": "each", - "token_id": 12550, + "token_id": 12548, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114791,77 +114786,77 @@ }, { "str": "\"", - "token_id": 12551, + "token_id": 12549, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "shift", - "token_id": 12552, + "token_id": 12550, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "\"", - "token_id": 12553, + "token_id": 12551, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "typically", - "token_id": 12554, + "token_id": 12552, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "lasts", - "token_id": 12555, + "token_id": 12553, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "three", - "token_id": 12556, + "token_id": 12554, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "waves", - "token_id": 12557, + "token_id": 12555, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ",", - "token_id": 12558, + "token_id": 12556, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "though", - "token_id": 12559, + "token_id": 12557, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ",", - "token_id": 12560, + "token_id": 12558, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "in", - "token_id": 12561, + "token_id": 12559, "o_rev_id": 1115494631, "in": [ 1136546128 @@ -114872,7 +114867,7 @@ }, { "str": "'", - "token_id": 12562, + "token_id": 12560, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114881,7 +114876,7 @@ }, { "str": "'", - "token_id": 12563, + "token_id": 12561, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114890,21 +114885,21 @@ }, { "str": "next", - "token_id": 12564, + "token_id": 12562, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "wave", - "token_id": 12565, + "token_id": 12563, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12566, + "token_id": 12564, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114913,7 +114908,7 @@ }, { "str": "'", - "token_id": 12567, + "token_id": 12565, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114922,35 +114917,35 @@ }, { "str": ",", - "token_id": 12568, + "token_id": 12566, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "a", - "token_id": 12569, + "token_id": 12567, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "fourth", - "token_id": 12570, + "token_id": 12568, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "\"", - "token_id": 12571, + "token_id": 12569, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "xtra", - "token_id": 12572, + "token_id": 12570, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114959,7 +114954,7 @@ }, { "str": "wave", - "token_id": 12573, + "token_id": 12571, "o_rev_id": 1115494631, "in": [], "out": [ @@ -114968,14 +114963,14 @@ }, { "str": "\"", - "token_id": 12574, + "token_id": 12572, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "sometimes", - "token_id": 12575, + "token_id": 12573, "o_rev_id": 1115494631, "in": [ 1136546128 @@ -114986,56 +114981,56 @@ }, { "str": "occurs", - "token_id": 12576, + "token_id": 12574, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ",", - "token_id": 12577, + "token_id": 12575, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "where", - "token_id": 12578, + "token_id": 12576, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "players", - "token_id": 12579, + "token_id": 12577, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "team", - "token_id": 12580, + "token_id": 12578, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "up", - "token_id": 12581, + "token_id": 12579, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "to", - "token_id": 12582, + "token_id": 12580, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "fight", - "token_id": 12583, + "token_id": 12581, "o_rev_id": 1115494631, "in": [], "out": [ @@ -115044,7 +115039,7 @@ }, { "str": "the", - "token_id": 12584, + "token_id": 12582, "o_rev_id": 1115494631, "in": [], "out": [ @@ -115053,7 +115048,7 @@ }, { "str": "king", - "token_id": 12585, + "token_id": 12583, "o_rev_id": 1115494631, "in": [ 1179974250 @@ -115064,7 +115059,7 @@ }, { "str": "salmonid", - "token_id": 12586, + "token_id": 12584, "o_rev_id": 1115494631, "in": [ 1179974250 @@ -115073,15 +115068,35 @@ 1179954307 ] }, + { + "str": ",", + "token_id": 12585, + "o_rev_id": 1115494631, + "in": [], + "out": [ + 1116374072 + ] + }, { "str": "cohozuna", - "token_id": 12587, + "token_id": 12586, "o_rev_id": 1115494631, "in": [], "out": [ 1116374072 ] }, + { + "str": ".", + "token_id": 12587, + "o_rev_id": 1115494631, + "in": [ + 1179974250 + ], + "out": [ + 1179954307 + ] + }, { "str": "<", "token_id": 12588, @@ -115384,12 +115399,8 @@ "str": "-", "token_id": 12614, "o_rev_id": 1115494631, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "09", @@ -115416,12 +115427,10 @@ "token_id": 12617, "o_rev_id": 1115494631, "in": [ - 1179974250, - 1202097960 + 1179974250 ], "out": [ - 1179954307, - 1202071552 + 1179954307 ] }, { @@ -116239,12 +116248,8 @@ "str": "splatoon", "token_id": 12721, "o_rev_id": 1115494631, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "3", @@ -117052,8 +117057,12 @@ "str": "date", "token_id": 12828, "o_rev_id": 1115494631, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", @@ -117128,23 +117137,15 @@ "str": "salmon", "token_id": 12838, "o_rev_id": 1115494631, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "run", "token_id": 12839, "o_rev_id": 1115494631, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "ranks", @@ -117192,12 +117193,8 @@ "str": "3", "token_id": 12846, "o_rev_id": 1115494631, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "|", @@ -117707,51 +117704,44 @@ "in": [], "out": [] }, - { - "str": ".", - "token_id": 12903, - "o_rev_id": 1115494631, - "in": [], - "out": [] - }, { "str": "<", - "token_id": 12904, + "token_id": 12903, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "ref", - "token_id": 12905, + "token_id": 12904, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "name", - "token_id": 12906, + "token_id": 12905, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12907, + "token_id": 12906, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "\"", - "token_id": 12908, + "token_id": 12907, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ":", - "token_id": 12909, + "token_id": 12908, "o_rev_id": 1115494631, "in": [], "out": [ @@ -117760,7 +117750,7 @@ }, { "str": "0", - "token_id": 12910, + "token_id": 12909, "o_rev_id": 1115494631, "in": [], "out": [ @@ -117769,21 +117759,21 @@ }, { "str": "\"", - "token_id": 12911, + "token_id": 12910, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12912, + "token_id": 12911, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ">", - "token_id": 12913, + "token_id": 12912, "o_rev_id": 1115494631, "in": [ 1179974250 @@ -117794,49 +117784,49 @@ }, { "str": "a", - "token_id": 12914, + "token_id": 12913, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "new", - "token_id": 12915, + "token_id": 12914, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "addition", - "token_id": 12916, + "token_id": 12915, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "to", - "token_id": 12917, + "token_id": 12916, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12918, + "token_id": 12917, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12919, + "token_id": 12918, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 12920, + "token_id": 12919, "o_rev_id": 1115494631, "in": [ 1216768014 @@ -117847,70 +117837,70 @@ }, { "str": "3", - "token_id": 12921, + "token_id": 12920, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12922, + "token_id": 12921, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 12923, + "token_id": 12922, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "is", - "token_id": 12924, + "token_id": 12923, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "\"", - "token_id": 12925, + "token_id": 12924, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "big", - "token_id": 12926, + "token_id": 12925, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "run", - "token_id": 12927, + "token_id": 12926, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "\"", - "token_id": 12928, + "token_id": 12927, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ",", - "token_id": 12929, + "token_id": 12928, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "a", - "token_id": 12930, + "token_id": 12929, "o_rev_id": 1115494631, "in": [], "out": [ @@ -117919,14 +117909,14 @@ }, { "str": "event", - "token_id": 12931, + "token_id": 12930, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "mode", - "token_id": 12932, + "token_id": 12931, "o_rev_id": 1115494631, "in": [], "out": [ @@ -117935,35 +117925,35 @@ }, { "str": "where", - "token_id": 12933, + "token_id": 12932, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "salmonids", - "token_id": 12934, + "token_id": 12933, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "invade", - "token_id": 12935, + "token_id": 12934, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "the", - "token_id": 12936, + "token_id": 12935, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "city", - "token_id": 12937, + "token_id": 12936, "o_rev_id": 1115494631, "in": [], "out": [ @@ -117972,7 +117962,7 @@ }, { "str": "of", - "token_id": 12938, + "token_id": 12937, "o_rev_id": 1115494631, "in": [], "out": [ @@ -117981,7 +117971,7 @@ }, { "str": "splatsville", - "token_id": 12939, + "token_id": 12938, "o_rev_id": 1115494631, "in": [], "out": [ @@ -117990,7 +117980,7 @@ }, { "str": "itself", - "token_id": 12940, + "token_id": 12939, "o_rev_id": 1115494631, "in": [], "out": [ @@ -117999,14 +117989,14 @@ }, { "str": ",", - "token_id": 12941, + "token_id": 12940, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "set", - "token_id": 12942, + "token_id": 12941, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118015,7 +118005,7 @@ }, { "str": "to", - "token_id": 12943, + "token_id": 12942, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118024,7 +118014,7 @@ }, { "str": "occur", - "token_id": 12944, + "token_id": 12943, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118033,7 +118023,7 @@ }, { "str": "once", - "token_id": 12945, + "token_id": 12944, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118042,170 +118032,168 @@ }, { "str": "every", - "token_id": 12946, + "token_id": 12945, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "few", - "token_id": 12947, + "token_id": 12946, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "months", - "token_id": 12948, + "token_id": 12947, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ".", - "token_id": 12949, + "token_id": 12948, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "<", - "token_id": 12950, + "token_id": 12949, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "ref", - "token_id": 12951, + "token_id": 12950, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ">", - "token_id": 12952, + "token_id": 12951, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "{{", - "token_id": 12953, + "token_id": 12952, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "cite", - "token_id": 12954, + "token_id": 12953, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "web", - "token_id": 12955, + "token_id": 12954, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12956, + "token_id": 12955, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "last", - "token_id": 12957, + "token_id": 12956, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12958, + "token_id": 12957, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "valentine", - "token_id": 12959, + "token_id": 12958, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12960, + "token_id": 12959, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "first", - "token_id": 12961, + "token_id": 12960, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12962, + "token_id": 12961, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "rebekah", - "token_id": 12963, + "token_id": 12962, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12964, + "token_id": 12963, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "date", - "token_id": 12965, + "token_id": 12964, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12966, + "token_id": 12965, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "2022", - "token_id": 12967, + "token_id": 12966, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 12968, + "token_id": 12967, "o_rev_id": 1115494631, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "08", - "token_id": 12969, + "token_id": 12968, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118214,7 +118202,7 @@ }, { "str": "-", - "token_id": 12970, + "token_id": 12969, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118223,7 +118211,7 @@ }, { "str": "10", - "token_id": 12971, + "token_id": 12970, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118232,340 +118220,336 @@ }, { "str": "|", - "token_id": 12972, + "token_id": 12971, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "title", - "token_id": 12973, + "token_id": 12972, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 12974, + "token_id": 12973, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "everything", - "token_id": 12975, + "token_id": 12974, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "we", - "token_id": 12976, + "token_id": 12975, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "learned", - "token_id": 12977, + "token_id": 12976, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "about", - "token_id": 12978, + "token_id": 12977, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 12979, + "token_id": 12978, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "3", - "token_id": 12980, + "token_id": 12979, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "from", - "token_id": 12981, + "token_id": 12980, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "the", - "token_id": 12982, + "token_id": 12981, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 12983, + "token_id": 12982, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "direct", - "token_id": 12984, + "token_id": 12983, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 12985, + "token_id": 12984, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "url", - "token_id": 12986, + "token_id": 12985, "o_rev_id": 1115494631, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "=", - "token_id": 12987, + "token_id": 12986, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "https", - "token_id": 12988, + "token_id": 12987, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ":", - "token_id": 12989, + "token_id": 12988, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12990, + "token_id": 12989, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12991, + "token_id": 12990, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "www", - "token_id": 12992, + "token_id": 12991, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ".", - "token_id": 12993, + "token_id": 12992, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "ign", - "token_id": 12994, + "token_id": 12993, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ".", - "token_id": 12995, + "token_id": 12994, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "com", - "token_id": 12996, + "token_id": 12995, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12997, + "token_id": 12996, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "articles", - "token_id": 12998, + "token_id": 12997, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 12999, + "token_id": 12998, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "everything", - "token_id": 13000, + "token_id": 12999, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13001, + "token_id": 13000, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "we", - "token_id": 13002, + "token_id": 13001, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13003, + "token_id": 13002, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "learned", - "token_id": 13004, + "token_id": 13003, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13005, + "token_id": 13004, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "about", - "token_id": 13006, + "token_id": 13005, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13007, + "token_id": 13006, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 13008, + "token_id": 13007, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13009, + "token_id": 13008, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "3", - "token_id": 13010, + "token_id": 13009, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13011, + "token_id": 13010, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "from", - "token_id": 13012, + "token_id": 13011, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13013, + "token_id": 13012, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "the", - "token_id": 13014, + "token_id": 13013, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13015, + "token_id": 13014, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 13016, + "token_id": 13015, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13017, + "token_id": 13016, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "direct", - "token_id": 13018, + "token_id": 13017, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13019, + "token_id": 13018, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118574,7 +118558,7 @@ }, { "str": "access", - "token_id": 13020, + "token_id": 13019, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118583,7 +118567,7 @@ }, { "str": "-", - "token_id": 13021, + "token_id": 13020, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -118594,7 +118578,7 @@ }, { "str": "date", - "token_id": 13022, + "token_id": 13021, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118603,7 +118587,7 @@ }, { "str": "=", - "token_id": 13023, + "token_id": 13022, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118612,7 +118596,7 @@ }, { "str": "2022", - "token_id": 13024, + "token_id": 13023, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118621,7 +118605,7 @@ }, { "str": "-", - "token_id": 13025, + "token_id": 13024, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -118632,7 +118616,7 @@ }, { "str": "10", - "token_id": 13026, + "token_id": 13025, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118641,7 +118625,7 @@ }, { "str": "-", - "token_id": 13027, + "token_id": 13026, "o_rev_id": 1115494631, "in": [ 1178773007 @@ -118652,14 +118636,14 @@ }, { "str": "11", - "token_id": 13028, + "token_id": 13027, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13029, + "token_id": 13028, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118668,7 +118652,7 @@ }, { "str": "website", - "token_id": 13030, + "token_id": 13029, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118677,7 +118661,7 @@ }, { "str": "=", - "token_id": 13031, + "token_id": 13030, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118686,7 +118670,7 @@ }, { "str": "ign", - "token_id": 13032, + "token_id": 13031, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118695,7 +118679,7 @@ }, { "str": "|", - "token_id": 13033, + "token_id": 13032, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118704,7 +118688,7 @@ }, { "str": "language", - "token_id": 13034, + "token_id": 13033, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118713,7 +118697,7 @@ }, { "str": "=", - "token_id": 13035, + "token_id": 13034, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118722,7 +118706,7 @@ }, { "str": "en", - "token_id": 13036, + "token_id": 13035, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118731,7 +118715,7 @@ }, { "str": "}}", - "token_id": 13037, + "token_id": 13036, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118740,7 +118724,7 @@ }, { "str": "<", - "token_id": 13038, + "token_id": 13037, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118749,14 +118733,14 @@ }, { "str": "/", - "token_id": 13039, + "token_id": 13038, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "ref", - "token_id": 13040, + "token_id": 13039, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118765,7 +118749,7 @@ }, { "str": ">", - "token_id": 13041, + "token_id": 13040, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118774,112 +118758,112 @@ }, { "str": "<", - "token_id": 13042, + "token_id": 13041, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "ref", - "token_id": 13043, + "token_id": 13042, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ">", - "token_id": 13044, + "token_id": 13043, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "{{", - "token_id": 13045, + "token_id": 13044, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "cite", - "token_id": 13046, + "token_id": 13045, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "web", - "token_id": 13047, + "token_id": 13046, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13048, + "token_id": 13047, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "last", - "token_id": 13049, + "token_id": 13048, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 13050, + "token_id": 13049, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "galloway", - "token_id": 13051, + "token_id": 13050, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13052, + "token_id": 13051, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "first", - "token_id": 13053, + "token_id": 13052, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 13054, + "token_id": 13053, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "ryan", - "token_id": 13055, + "token_id": 13054, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13056, + "token_id": 13055, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "date", - "token_id": 13057, + "token_id": 13056, "o_rev_id": 1115494631, "in": [ 1202097960 @@ -118890,30 +118874,28 @@ }, { "str": "=", - "token_id": 13058, + "token_id": 13057, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "2022", - "token_id": 13059, + "token_id": 13058, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13060, + "token_id": 13059, "o_rev_id": 1115494631, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "09", - "token_id": 13061, + "token_id": 13060, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118922,14 +118904,14 @@ }, { "str": "-", - "token_id": 13062, + "token_id": 13061, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "09", - "token_id": 13063, + "token_id": 13062, "o_rev_id": 1115494631, "in": [], "out": [ @@ -118938,392 +118920,392 @@ }, { "str": "|", - "token_id": 13064, + "token_id": 13063, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "title", - "token_id": 13065, + "token_id": 13064, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 13066, + "token_id": 13065, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "is", - "token_id": 13067, + "token_id": 13066, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "salmon", - "token_id": 13068, + "token_id": 13067, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "run", - "token_id": 13069, + "token_id": 13068, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ":", - "token_id": 13070, + "token_id": 13069, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "next", - "token_id": 13071, + "token_id": 13070, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "wave", - "token_id": 13072, + "token_id": 13071, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "time", - "token_id": 13073, + "token_id": 13072, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13074, + "token_id": 13073, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "restricted", - "token_id": 13075, + "token_id": 13074, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "in", - "token_id": 13076, + "token_id": 13075, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 13077, + "token_id": 13076, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "3", - "token_id": 13078, + "token_id": 13077, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "?", - "token_id": 13079, + "token_id": 13078, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13080, + "token_id": 13079, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "url", - "token_id": 13081, + "token_id": 13080, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "=", - "token_id": 13082, + "token_id": 13081, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "https", - "token_id": 13083, + "token_id": 13082, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ":", - "token_id": 13084, + "token_id": 13083, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 13085, + "token_id": 13084, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 13086, + "token_id": 13085, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "dotesports", - "token_id": 13087, + "token_id": 13086, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ".", - "token_id": 13088, + "token_id": 13087, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "com", - "token_id": 13089, + "token_id": 13088, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 13090, + "token_id": 13089, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 13091, + "token_id": 13090, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 13092, + "token_id": 13091, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "news", - "token_id": 13093, + "token_id": 13092, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 13094, + "token_id": 13093, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "is", - "token_id": 13095, + "token_id": 13094, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13096, + "token_id": 13095, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "salmon", - "token_id": 13097, + "token_id": 13096, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13098, + "token_id": 13097, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "run", - "token_id": 13099, + "token_id": 13098, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13100, + "token_id": 13099, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "next", - "token_id": 13101, + "token_id": 13100, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13102, + "token_id": 13101, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "wave", - "token_id": 13103, + "token_id": 13102, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13104, + "token_id": 13103, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "time", - "token_id": 13105, + "token_id": 13104, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13106, + "token_id": 13105, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "restricted", - "token_id": 13107, + "token_id": 13106, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13108, + "token_id": 13107, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "or", - "token_id": 13109, + "token_id": 13108, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13110, + "token_id": 13109, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "permanent", - "token_id": 13111, + "token_id": 13110, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13112, + "token_id": 13111, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "in", - "token_id": 13113, + "token_id": 13112, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13114, + "token_id": 13113, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 13115, + "token_id": 13114, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "-", - "token_id": 13116, + "token_id": 13115, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "3", - "token_id": 13117, + "token_id": 13116, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13118, + "token_id": 13117, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "access", - "token_id": 13119, + "token_id": 13118, "o_rev_id": 1115494631, "in": [], "out": [ @@ -119332,14 +119314,14 @@ }, { "str": "-", - "token_id": 13120, + "token_id": 13119, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "date", - "token_id": 13121, + "token_id": 13120, "o_rev_id": 1115494631, "in": [], "out": [ @@ -119348,7 +119330,7 @@ }, { "str": "=", - "token_id": 13122, + "token_id": 13121, "o_rev_id": 1115494631, "in": [], "out": [ @@ -119357,14 +119339,18 @@ }, { "str": "2022", - "token_id": 13123, + "token_id": 13122, "o_rev_id": 1115494631, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 13124, + "token_id": 13123, "o_rev_id": 1115494631, "in": [ 1202097960 @@ -119375,7 +119361,7 @@ }, { "str": "10", - "token_id": 13125, + "token_id": 13124, "o_rev_id": 1115494631, "in": [], "out": [ @@ -119384,21 +119370,21 @@ }, { "str": "-", - "token_id": 13126, + "token_id": 13125, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "11", - "token_id": 13127, + "token_id": 13126, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13128, + "token_id": 13127, "o_rev_id": 1115494631, "in": [], "out": [ @@ -119407,7 +119393,7 @@ }, { "str": "website", - "token_id": 13129, + "token_id": 13128, "o_rev_id": 1115494631, "in": [], "out": [ @@ -119416,35 +119402,35 @@ }, { "str": "=", - "token_id": 13130, + "token_id": 13129, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "dot", - "token_id": 13131, + "token_id": 13130, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "esports", - "token_id": 13132, + "token_id": 13131, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "|", - "token_id": 13133, + "token_id": 13132, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "language", - "token_id": 13134, + "token_id": 13133, "o_rev_id": 1115494631, "in": [], "out": [ @@ -119453,14 +119439,14 @@ }, { "str": "=", - "token_id": 13135, + "token_id": 13134, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "en", - "token_id": 13136, + "token_id": 13135, "o_rev_id": 1115494631, "in": [], "out": [ @@ -119469,77 +119455,83 @@ }, { "str": "-", - "token_id": 13137, + "token_id": 13136, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "us", - "token_id": 13138, + "token_id": 13137, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "}}", - "token_id": 13139, + "token_id": 13138, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "<", - "token_id": 13140, + "token_id": 13139, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "/", - "token_id": 13141, + "token_id": 13140, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "ref", - "token_id": 13142, + "token_id": 13141, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": ">", - "token_id": 13143, + "token_id": 13142, "o_rev_id": 1115494631, "in": [], "out": [] }, { "str": "'", - "token_id": 13144, + "token_id": 13143, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13145, + "token_id": 13144, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "[[", - "token_id": 13146, + "token_id": 13145, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "destructoid", - "token_id": 13147, + "token_id": 13146, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119548,35 +119540,43 @@ }, { "str": "]]", - "token_id": 13148, + "token_id": 13147, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13149, + "token_id": 13148, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13150, + "token_id": 13149, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13151, + "token_id": 13150, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "s", - "token_id": 13152, + "token_id": 13151, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119585,7 +119585,7 @@ }, { "str": "chris", - "token_id": 13153, + "token_id": 13152, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119594,7 +119594,7 @@ }, { "str": "carter", - "token_id": 13154, + "token_id": 13153, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119603,7 +119603,7 @@ }, { "str": "praised", - "token_id": 13155, + "token_id": 13154, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119612,7 +119612,7 @@ }, { "str": "how", - "token_id": 13156, + "token_id": 13155, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119621,7 +119621,7 @@ }, { "str": "'", - "token_id": 13157, + "token_id": 13156, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119630,7 +119630,7 @@ }, { "str": "'", - "token_id": 13158, + "token_id": 13157, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119639,7 +119639,7 @@ }, { "str": "return", - "token_id": 13159, + "token_id": 13158, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119648,7 +119648,7 @@ }, { "str": "of", - "token_id": 13160, + "token_id": 13159, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119657,7 +119657,7 @@ }, { "str": "the", - "token_id": 13161, + "token_id": 13160, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119666,7 +119666,7 @@ }, { "str": "mammalians", - "token_id": 13162, + "token_id": 13161, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119675,7 +119675,7 @@ }, { "str": "'", - "token_id": 13163, + "token_id": 13162, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119684,7 +119684,7 @@ }, { "str": "'", - "token_id": 13164, + "token_id": 13163, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119693,7 +119693,7 @@ }, { "str": "interacted", - "token_id": 13165, + "token_id": 13164, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119702,7 +119702,7 @@ }, { "str": "with", - "token_id": 13166, + "token_id": 13165, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119711,7 +119711,7 @@ }, { "str": "the", - "token_id": 13167, + "token_id": 13166, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119720,7 +119720,7 @@ }, { "str": "game", - "token_id": 13168, + "token_id": 13167, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119729,7 +119729,7 @@ }, { "str": "'", - "token_id": 13169, + "token_id": 13168, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119738,7 +119738,7 @@ }, { "str": "s", - "token_id": 13170, + "token_id": 13169, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119747,7 +119747,7 @@ }, { "str": "multiplayer", - "token_id": 13171, + "token_id": 13170, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119756,7 +119756,7 @@ }, { "str": "modes", - "token_id": 13172, + "token_id": 13171, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119765,7 +119765,7 @@ }, { "str": ",", - "token_id": 13173, + "token_id": 13172, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119774,7 +119774,7 @@ }, { "str": "by", - "token_id": 13174, + "token_id": 13173, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119783,7 +119783,7 @@ }, { "str": "both", - "token_id": 13175, + "token_id": 13174, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119792,7 +119792,7 @@ }, { "str": "teaching", - "token_id": 13176, + "token_id": 13175, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119801,7 +119801,7 @@ }, { "str": "the", - "token_id": 13177, + "token_id": 13176, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119810,7 +119810,7 @@ }, { "str": "player", - "token_id": 13178, + "token_id": 13177, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119819,7 +119819,7 @@ }, { "str": "important", - "token_id": 13179, + "token_id": 13178, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119828,7 +119828,7 @@ }, { "str": "mechanics", - "token_id": 13180, + "token_id": 13179, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119837,7 +119837,7 @@ }, { "str": "and", - "token_id": 13181, + "token_id": 13180, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119846,7 +119846,7 @@ }, { "str": "rewarding", - "token_id": 13182, + "token_id": 13181, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119855,7 +119855,7 @@ }, { "str": "them", - "token_id": 13183, + "token_id": 13182, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119864,7 +119864,7 @@ }, { "str": "with", - "token_id": 13184, + "token_id": 13183, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119873,7 +119873,7 @@ }, { "str": "useful", - "token_id": 13185, + "token_id": 13184, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119882,7 +119882,7 @@ }, { "str": "items", - "token_id": 13186, + "token_id": 13185, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119891,7 +119891,7 @@ }, { "str": ",", - "token_id": 13187, + "token_id": 13186, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119900,7 +119900,7 @@ }, { "str": "as", - "token_id": 13188, + "token_id": 13187, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119909,7 +119909,7 @@ }, { "str": "well", - "token_id": 13189, + "token_id": 13188, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119918,7 +119918,7 @@ }, { "str": "as", - "token_id": 13190, + "token_id": 13189, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119927,7 +119927,7 @@ }, { "str": "appreciating", - "token_id": 13191, + "token_id": 13190, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119936,7 +119936,7 @@ }, { "str": "how", - "token_id": 13192, + "token_id": 13191, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119945,7 +119945,7 @@ }, { "str": "the", - "token_id": 13193, + "token_id": 13192, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119954,7 +119954,7 @@ }, { "str": "story", - "token_id": 13194, + "token_id": 13193, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119963,7 +119963,7 @@ }, { "str": "mode", - "token_id": 13195, + "token_id": 13194, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119972,14 +119972,14 @@ }, { "str": "was", - "token_id": 13196, + "token_id": 13195, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "tailored", - "token_id": 13197, + "token_id": 13196, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119988,7 +119988,7 @@ }, { "str": "for", - "token_id": 13198, + "token_id": 13197, "o_rev_id": 1115497746, "in": [], "out": [ @@ -119997,7 +119997,7 @@ }, { "str": "[[", - "token_id": 13199, + "token_id": 13198, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120006,7 +120006,7 @@ }, { "str": "speedrunning", - "token_id": 13200, + "token_id": 13199, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120015,7 +120015,7 @@ }, { "str": "]]", - "token_id": 13201, + "token_id": 13200, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120024,7 +120024,7 @@ }, { "str": ".", - "token_id": 13202, + "token_id": 13201, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120033,7 +120033,7 @@ }, { "str": "he", - "token_id": 13203, + "token_id": 13202, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120042,7 +120042,7 @@ }, { "str": "also", - "token_id": 13204, + "token_id": 13203, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120051,7 +120051,7 @@ }, { "str": "liked", - "token_id": 13205, + "token_id": 13204, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120060,7 +120060,7 @@ }, { "str": "the", - "token_id": 13206, + "token_id": 13205, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -120071,7 +120071,7 @@ }, { "str": "returning", - "token_id": 13207, + "token_id": 13206, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120080,7 +120080,7 @@ }, { "str": "modes", - "token_id": 13208, + "token_id": 13207, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120089,7 +120089,7 @@ }, { "str": ",", - "token_id": 13209, + "token_id": 13208, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -120100,7 +120100,7 @@ }, { "str": "saying", - "token_id": 13210, + "token_id": 13209, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120109,7 +120109,7 @@ }, { "str": "that", - "token_id": 13211, + "token_id": 13210, "o_rev_id": 1115497746, "in": [ 1117591128, @@ -120122,7 +120122,7 @@ }, { "str": "playing", - "token_id": 13212, + "token_id": 13211, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120131,7 +120131,7 @@ }, { "str": "the", - "token_id": 13213, + "token_id": 13212, "o_rev_id": 1115497746, "in": [ 1117591128, @@ -120144,7 +120144,7 @@ }, { "str": "competitive", - "token_id": 13214, + "token_id": 13213, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120153,7 +120153,7 @@ }, { "str": "modes", - "token_id": 13215, + "token_id": 13214, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120162,7 +120162,7 @@ }, { "str": "\"", - "token_id": 13216, + "token_id": 13215, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120171,7 +120171,7 @@ }, { "str": "flows", - "token_id": 13217, + "token_id": 13216, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120180,7 +120180,7 @@ }, { "str": "together", - "token_id": 13218, + "token_id": 13217, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120189,7 +120189,7 @@ }, { "str": "effortlessly", - "token_id": 13219, + "token_id": 13218, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120198,7 +120198,7 @@ }, { "str": "\"", - "token_id": 13220, + "token_id": 13219, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120207,7 +120207,7 @@ }, { "str": ".", - "token_id": 13221, + "token_id": 13220, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -120218,70 +120218,70 @@ }, { "str": "<", - "token_id": 13222, + "token_id": 13221, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "ref", - "token_id": 13223, + "token_id": 13222, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "name", - "token_id": 13224, + "token_id": 13223, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "=", - "token_id": 13225, + "token_id": 13224, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "\"", - "token_id": 13226, + "token_id": 13225, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "destruct", - "token_id": 13227, + "token_id": 13226, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "\"", - "token_id": 13228, + "token_id": 13227, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "/", - "token_id": 13229, + "token_id": 13228, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": ">", - "token_id": 13230, + "token_id": 13229, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "martin", - "token_id": 13231, + "token_id": 13230, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120290,7 +120290,7 @@ }, { "str": "robinson", - "token_id": 13232, + "token_id": 13231, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120299,7 +120299,7 @@ }, { "str": "of", - "token_id": 13233, + "token_id": 13232, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120308,28 +120308,34 @@ }, { "str": "'", - "token_id": 13234, + "token_id": 13233, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13235, + "token_id": 13234, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "[[", - "token_id": 13236, + "token_id": 13235, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "eurogamer", - "token_id": 13237, + "token_id": 13236, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120338,28 +120344,34 @@ }, { "str": "]]", - "token_id": 13238, + "token_id": 13237, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13239, + "token_id": 13238, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13240, + "token_id": 13239, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "criticized", - "token_id": 13241, + "token_id": 13240, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120368,7 +120380,7 @@ }, { "str": "the", - "token_id": 13242, + "token_id": 13241, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120377,42 +120389,42 @@ }, { "str": "lack", - "token_id": 13243, + "token_id": 13242, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "of", - "token_id": 13244, + "token_id": 13243, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "significant", - "token_id": 13245, + "token_id": 13244, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "new", - "token_id": 13246, + "token_id": 13245, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "content", - "token_id": 13247, + "token_id": 13246, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": ",", - "token_id": 13248, + "token_id": 13247, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120421,7 +120433,7 @@ }, { "str": "saying", - "token_id": 13249, + "token_id": 13248, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120430,7 +120442,7 @@ }, { "str": "that", - "token_id": 13250, + "token_id": 13249, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120439,7 +120451,7 @@ }, { "str": "even", - "token_id": 13251, + "token_id": 13250, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120448,7 +120460,7 @@ }, { "str": "the", - "token_id": 13252, + "token_id": 13251, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120457,7 +120469,7 @@ }, { "str": "largest", - "token_id": 13253, + "token_id": 13252, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120466,7 +120478,7 @@ }, { "str": "new", - "token_id": 13254, + "token_id": 13253, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120475,7 +120487,7 @@ }, { "str": "additions", - "token_id": 13255, + "token_id": 13254, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120484,7 +120496,7 @@ }, { "str": "\"", - "token_id": 13256, + "token_id": 13255, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120493,7 +120505,7 @@ }, { "str": "don", - "token_id": 13257, + "token_id": 13256, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120502,7 +120514,7 @@ }, { "str": "'", - "token_id": 13258, + "token_id": 13257, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120511,7 +120523,7 @@ }, { "str": "t", - "token_id": 13259, + "token_id": 13258, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120520,7 +120532,7 @@ }, { "str": "feel", - "token_id": 13260, + "token_id": 13259, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120529,7 +120541,7 @@ }, { "str": "like", - "token_id": 13261, + "token_id": 13260, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120538,7 +120550,7 @@ }, { "str": "the", - "token_id": 13262, + "token_id": 13261, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120547,7 +120559,7 @@ }, { "str": "kind", - "token_id": 13263, + "token_id": 13262, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120556,7 +120568,7 @@ }, { "str": "of", - "token_id": 13264, + "token_id": 13263, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120565,7 +120577,7 @@ }, { "str": "thing", - "token_id": 13265, + "token_id": 13264, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120574,7 +120586,7 @@ }, { "str": "that", - "token_id": 13266, + "token_id": 13265, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120583,7 +120595,7 @@ }, { "str": "can", - "token_id": 13267, + "token_id": 13266, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120592,7 +120604,7 @@ }, { "str": "be", - "token_id": 13268, + "token_id": 13267, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120601,7 +120613,7 @@ }, { "str": "applauded", - "token_id": 13269, + "token_id": 13268, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120610,7 +120622,7 @@ }, { "str": "too", - "token_id": 13270, + "token_id": 13269, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120619,7 +120631,7 @@ }, { "str": "enthusiastically", - "token_id": 13271, + "token_id": 13270, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120628,7 +120640,7 @@ }, { "str": "\"", - "token_id": 13272, + "token_id": 13271, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120637,7 +120649,7 @@ }, { "str": ",", - "token_id": 13273, + "token_id": 13272, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120646,7 +120658,7 @@ }, { "str": "even", - "token_id": 13274, + "token_id": 13273, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120655,7 +120667,7 @@ }, { "str": "calling", - "token_id": 13275, + "token_id": 13274, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120664,7 +120676,7 @@ }, { "str": "some", - "token_id": 13276, + "token_id": 13275, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120673,7 +120685,7 @@ }, { "str": "features", - "token_id": 13277, + "token_id": 13276, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120682,118 +120694,112 @@ }, { "str": "\"", - "token_id": 13278, + "token_id": 13277, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "basic", - "token_id": 13279, + "token_id": 13278, "o_rev_id": 1115497746, "in": [], - "out": [ - 1334176815 - ] + "out": [] }, { "str": "[", - "token_id": 13280, + "token_id": 13279, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "ones", - "token_id": 13281, + "token_id": 13280, "o_rev_id": 1115497746, "in": [], - "out": [ - 1334176815 - ] + "out": [] }, { "str": "]", - "token_id": 13282, + "token_id": 13281, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "you", - "token_id": 13283, + "token_id": 13282, "o_rev_id": 1115497746, "in": [], - "out": [ - 1334176815 - ] + "out": [] }, { "str": "'", - "token_id": 13284, + "token_id": 13283, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "d", - "token_id": 13285, + "token_id": 13284, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "expect", - "token_id": 13286, + "token_id": 13285, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "of", - "token_id": 13287, + "token_id": 13286, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "a", - "token_id": 13288, + "token_id": 13287, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "contemporary", - "token_id": 13289, + "token_id": 13288, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "online", - "token_id": 13290, + "token_id": 13289, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 13291, + "token_id": 13290, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "game", - "token_id": 13292, + "token_id": 13291, "o_rev_id": 1115497746, "in": [], "out": [] }, { "str": "\"", - "token_id": 13293, + "token_id": 13292, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120802,7 +120808,7 @@ }, { "str": ".", - "token_id": 13294, + "token_id": 13293, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120811,7 +120817,7 @@ }, { "str": "however", - "token_id": 13295, + "token_id": 13294, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120820,7 +120826,7 @@ }, { "str": ",", - "token_id": 13296, + "token_id": 13295, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120829,7 +120835,7 @@ }, { "str": "he", - "token_id": 13297, + "token_id": 13296, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120838,7 +120844,7 @@ }, { "str": "said", - "token_id": 13298, + "token_id": 13297, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120847,7 +120853,7 @@ }, { "str": "that", - "token_id": 13299, + "token_id": 13298, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120856,7 +120862,7 @@ }, { "str": "everything", - "token_id": 13300, + "token_id": 13299, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120865,7 +120871,7 @@ }, { "str": "present", - "token_id": 13301, + "token_id": 13300, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120874,7 +120880,7 @@ }, { "str": "in", - "token_id": 13302, + "token_id": 13301, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120883,7 +120889,7 @@ }, { "str": "'", - "token_id": 13303, + "token_id": 13302, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120892,7 +120898,7 @@ }, { "str": "'", - "token_id": 13304, + "token_id": 13303, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120901,7 +120907,7 @@ }, { "str": "splatoon", - "token_id": 13305, + "token_id": 13304, "o_rev_id": 1115497746, "in": [ 1216768014 @@ -120913,7 +120919,7 @@ }, { "str": "3", - "token_id": 13306, + "token_id": 13305, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120922,7 +120928,7 @@ }, { "str": "'", - "token_id": 13307, + "token_id": 13306, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120931,7 +120937,7 @@ }, { "str": "'", - "token_id": 13308, + "token_id": 13307, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120940,7 +120946,7 @@ }, { "str": "contributed", - "token_id": 13309, + "token_id": 13308, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120949,7 +120955,7 @@ }, { "str": "to", - "token_id": 13310, + "token_id": 13309, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120958,7 +120964,7 @@ }, { "str": "the", - "token_id": 13311, + "token_id": 13310, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120967,7 +120973,7 @@ }, { "str": "series", - "token_id": 13312, + "token_id": 13311, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120976,7 +120982,7 @@ }, { "str": "being", - "token_id": 13313, + "token_id": 13312, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120985,7 +120991,7 @@ }, { "str": "\"", - "token_id": 13314, + "token_id": 13313, "o_rev_id": 1115497746, "in": [], "out": [ @@ -120994,7 +121000,7 @@ }, { "str": "one", - "token_id": 13315, + "token_id": 13314, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121003,7 +121009,7 @@ }, { "str": "of", - "token_id": 13316, + "token_id": 13315, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121012,7 +121018,7 @@ }, { "str": "the", - "token_id": 13317, + "token_id": 13316, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121021,7 +121027,7 @@ }, { "str": "most", - "token_id": 13318, + "token_id": 13317, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121030,7 +121036,7 @@ }, { "str": "polished", - "token_id": 13319, + "token_id": 13318, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121039,7 +121045,7 @@ }, { "str": ",", - "token_id": 13320, + "token_id": 13319, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121048,7 +121054,7 @@ }, { "str": "playable", - "token_id": 13321, + "token_id": 13320, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121057,7 +121063,7 @@ }, { "str": "and", - "token_id": 13322, + "token_id": 13321, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121066,7 +121072,7 @@ }, { "str": "impeccably", - "token_id": 13323, + "token_id": 13322, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121075,7 +121081,7 @@ }, { "str": "executed", - "token_id": 13324, + "token_id": 13323, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121084,7 +121090,7 @@ }, { "str": "series", - "token_id": 13325, + "token_id": 13324, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121093,7 +121099,7 @@ }, { "str": "\"", - "token_id": 13326, + "token_id": 13325, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121102,7 +121108,7 @@ }, { "str": "from", - "token_id": 13327, + "token_id": 13326, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121111,7 +121117,7 @@ }, { "str": "nintendo", - "token_id": 13328, + "token_id": 13327, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121120,7 +121126,7 @@ }, { "str": ".", - "token_id": 13329, + "token_id": 13328, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121129,7 +121135,7 @@ }, { "str": "he", - "token_id": 13330, + "token_id": 13329, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121138,7 +121144,7 @@ }, { "str": "compared", - "token_id": 13331, + "token_id": 13330, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121147,7 +121153,7 @@ }, { "str": "the", - "token_id": 13332, + "token_id": 13331, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121156,7 +121162,7 @@ }, { "str": "game", - "token_id": 13333, + "token_id": 13332, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121165,7 +121171,7 @@ }, { "str": "'", - "token_id": 13334, + "token_id": 13333, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121174,7 +121180,7 @@ }, { "str": "s", - "token_id": 13335, + "token_id": 13334, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121183,7 +121189,7 @@ }, { "str": "story", - "token_id": 13336, + "token_id": 13335, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121192,7 +121198,7 @@ }, { "str": "mode", - "token_id": 13337, + "token_id": 13336, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121201,7 +121207,7 @@ }, { "str": "to", - "token_id": 13338, + "token_id": 13337, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121210,7 +121216,7 @@ }, { "str": "the", - "token_id": 13339, + "token_id": 13338, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121219,7 +121225,7 @@ }, { "str": "[[", - "token_id": 13340, + "token_id": 13339, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121228,7 +121234,7 @@ }, { "str": "mario", - "token_id": 13341, + "token_id": 13340, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121237,7 +121243,7 @@ }, { "str": "(", - "token_id": 13342, + "token_id": 13341, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121246,7 +121252,7 @@ }, { "str": "franchise", - "token_id": 13343, + "token_id": 13342, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121255,7 +121261,7 @@ }, { "str": ")", - "token_id": 13344, + "token_id": 13343, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121264,7 +121270,7 @@ }, { "str": "|", - "token_id": 13345, + "token_id": 13344, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121273,7 +121279,7 @@ }, { "str": "'", - "token_id": 13346, + "token_id": 13345, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121282,7 +121288,7 @@ }, { "str": "'", - "token_id": 13347, + "token_id": 13346, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121291,7 +121297,7 @@ }, { "str": "mario", - "token_id": 13348, + "token_id": 13347, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121300,7 +121306,7 @@ }, { "str": "'", - "token_id": 13349, + "token_id": 13348, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121309,7 +121315,7 @@ }, { "str": "'", - "token_id": 13350, + "token_id": 13349, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121318,7 +121324,7 @@ }, { "str": "franchise", - "token_id": 13351, + "token_id": 13350, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121327,7 +121333,7 @@ }, { "str": "]]", - "token_id": 13352, + "token_id": 13351, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121336,7 +121342,7 @@ }, { "str": ",", - "token_id": 13353, + "token_id": 13352, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121345,7 +121351,7 @@ }, { "str": "saying", - "token_id": 13354, + "token_id": 13353, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121354,7 +121360,7 @@ }, { "str": "that", - "token_id": 13355, + "token_id": 13354, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121363,7 +121369,7 @@ }, { "str": "while", - "token_id": 13356, + "token_id": 13355, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121372,7 +121378,7 @@ }, { "str": "it", - "token_id": 13357, + "token_id": 13356, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121381,7 +121387,7 @@ }, { "str": "evoked", - "token_id": 13358, + "token_id": 13357, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121390,7 +121396,7 @@ }, { "str": "some", - "token_id": 13359, + "token_id": 13358, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121399,7 +121405,7 @@ }, { "str": "of", - "token_id": 13360, + "token_id": 13359, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121408,7 +121414,7 @@ }, { "str": "the", - "token_id": 13361, + "token_id": 13360, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121417,7 +121423,7 @@ }, { "str": "best", - "token_id": 13362, + "token_id": 13361, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121426,7 +121432,7 @@ }, { "str": "parts", - "token_id": 13363, + "token_id": 13362, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121435,7 +121441,7 @@ }, { "str": "of", - "token_id": 13364, + "token_id": 13363, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121444,28 +121450,34 @@ }, { "str": "'", - "token_id": 13365, + "token_id": 13364, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13366, + "token_id": 13365, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "[[", - "token_id": 13367, + "token_id": 13366, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "super", - "token_id": 13368, + "token_id": 13367, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121474,7 +121486,7 @@ }, { "str": "mario", - "token_id": 13369, + "token_id": 13368, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121483,7 +121495,7 @@ }, { "str": "sunshine", - "token_id": 13370, + "token_id": 13369, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121492,14 +121504,16 @@ }, { "str": "]]", - "token_id": 13371, + "token_id": 13370, "o_rev_id": 1115497746, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 13372, + "token_id": 13371, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121508,7 +121522,7 @@ }, { "str": "'", - "token_id": 13373, + "token_id": 13372, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121517,7 +121531,7 @@ }, { "str": ",", - "token_id": 13374, + "token_id": 13373, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121526,7 +121540,7 @@ }, { "str": "the", - "token_id": 13375, + "token_id": 13374, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121535,7 +121549,7 @@ }, { "str": "abstract", - "token_id": 13376, + "token_id": 13375, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121544,7 +121558,7 @@ }, { "str": "nature", - "token_id": 13377, + "token_id": 13376, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121553,7 +121567,7 @@ }, { "str": "of", - "token_id": 13378, + "token_id": 13377, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121562,7 +121576,7 @@ }, { "str": "the", - "token_id": 13379, + "token_id": 13378, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121571,7 +121585,7 @@ }, { "str": "levels", - "token_id": 13380, + "token_id": 13379, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121580,7 +121594,7 @@ }, { "str": "failed", - "token_id": 13381, + "token_id": 13380, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121589,7 +121603,7 @@ }, { "str": "to", - "token_id": 13382, + "token_id": 13381, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121598,7 +121612,7 @@ }, { "str": "meet", - "token_id": 13383, + "token_id": 13382, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121607,7 +121621,7 @@ }, { "str": "the", - "token_id": 13384, + "token_id": 13383, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121616,7 +121630,7 @@ }, { "str": "best", - "token_id": 13385, + "token_id": 13384, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121625,7 +121639,7 @@ }, { "str": "'", - "token_id": 13386, + "token_id": 13385, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121634,7 +121648,7 @@ }, { "str": "'", - "token_id": 13387, + "token_id": 13386, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121643,7 +121657,7 @@ }, { "str": "mario", - "token_id": 13388, + "token_id": 13387, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121652,7 +121666,7 @@ }, { "str": "'", - "token_id": 13389, + "token_id": 13388, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121661,7 +121675,7 @@ }, { "str": "'", - "token_id": 13390, + "token_id": 13389, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121670,7 +121684,7 @@ }, { "str": "levels", - "token_id": 13391, + "token_id": 13390, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121679,7 +121693,7 @@ }, { "str": ".", - "token_id": 13392, + "token_id": 13391, "o_rev_id": 1115497746, "in": [], "out": [ @@ -121688,7 +121702,7 @@ }, { "str": "<", - "token_id": 13393, + "token_id": 13392, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121699,7 +121713,7 @@ }, { "str": "ref", - "token_id": 13394, + "token_id": 13393, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121710,7 +121724,7 @@ }, { "str": "name", - "token_id": 13395, + "token_id": 13394, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121721,7 +121735,7 @@ }, { "str": "=", - "token_id": 13396, + "token_id": 13395, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121732,7 +121746,7 @@ }, { "str": "\"", - "token_id": 13397, + "token_id": 13396, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121743,7 +121757,7 @@ }, { "str": "eurog", - "token_id": 13398, + "token_id": 13397, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121754,7 +121768,7 @@ }, { "str": "\"", - "token_id": 13399, + "token_id": 13398, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121765,7 +121779,7 @@ }, { "str": "/", - "token_id": 13400, + "token_id": 13399, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121776,7 +121790,7 @@ }, { "str": ">", - "token_id": 13401, + "token_id": 13400, "o_rev_id": 1115497746, "in": [ 1117591128 @@ -121787,7 +121801,7 @@ }, { "str": "in", - "token_id": 13402, + "token_id": 13401, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121798,7 +121812,7 @@ }, { "str": "'", - "token_id": 13403, + "token_id": 13402, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -121811,7 +121825,7 @@ }, { "str": "'", - "token_id": 13404, + "token_id": 13403, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -121824,7 +121838,7 @@ }, { "str": "splatoon", - "token_id": 13405, + "token_id": 13404, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -121839,7 +121853,7 @@ }, { "str": "3", - "token_id": 13406, + "token_id": 13405, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -121852,7 +121866,7 @@ }, { "str": "'", - "token_id": 13407, + "token_id": 13406, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -121865,7 +121879,7 @@ }, { "str": "'", - "token_id": 13408, + "token_id": 13407, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -121878,7 +121892,7 @@ }, { "str": ",", - "token_id": 13409, + "token_id": 13408, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121889,7 +121903,7 @@ }, { "str": "a", - "token_id": 13410, + "token_id": 13409, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121900,7 +121914,7 @@ }, { "str": "\"", - "token_id": 13411, + "token_id": 13410, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121911,7 +121925,7 @@ }, { "str": "tricolor", - "token_id": 13412, + "token_id": 13411, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121922,7 +121936,7 @@ }, { "str": "turf", - "token_id": 13413, + "token_id": 13412, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121933,7 +121947,7 @@ }, { "str": "war", - "token_id": 13414, + "token_id": 13413, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121944,7 +121958,7 @@ }, { "str": "\"", - "token_id": 13415, + "token_id": 13414, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121955,7 +121969,7 @@ }, { "str": "can", - "token_id": 13416, + "token_id": 13415, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121966,7 +121980,7 @@ }, { "str": "occur", - "token_id": 13417, + "token_id": 13416, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121978,7 +121992,7 @@ }, { "str": "during", - "token_id": 13418, + "token_id": 13417, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -121990,7 +122004,7 @@ }, { "str": "the", - "token_id": 13419, + "token_id": 13418, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122001,7 +122015,7 @@ }, { "str": "second", - "token_id": 13420, + "token_id": 13419, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122012,7 +122026,7 @@ }, { "str": "half", - "token_id": 13421, + "token_id": 13420, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122023,7 +122037,7 @@ }, { "str": "of", - "token_id": 13422, + "token_id": 13421, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122034,7 +122048,7 @@ }, { "str": "a", - "token_id": 13423, + "token_id": 13422, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122045,7 +122059,7 @@ }, { "str": "splatfest", - "token_id": 13424, + "token_id": 13423, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122056,7 +122070,7 @@ }, { "str": ",", - "token_id": 13425, + "token_id": 13424, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122067,7 +122081,7 @@ }, { "str": "where", - "token_id": 13426, + "token_id": 13425, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122078,7 +122092,7 @@ }, { "str": "the", - "token_id": 13427, + "token_id": 13426, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -122092,7 +122106,7 @@ }, { "str": "team", - "token_id": 13428, + "token_id": 13427, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122103,7 +122117,7 @@ }, { "str": "currently", - "token_id": 13429, + "token_id": 13428, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -122117,7 +122131,7 @@ }, { "str": "in", - "token_id": 13430, + "token_id": 13429, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -122131,7 +122145,7 @@ }, { "str": "the", - "token_id": 13431, + "token_id": 13430, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -122145,7 +122159,7 @@ }, { "str": "lead", - "token_id": 13432, + "token_id": 13431, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -122159,7 +122173,7 @@ }, { "str": "plays", - "token_id": 13433, + "token_id": 13432, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122171,7 +122185,7 @@ }, { "str": "a", - "token_id": 13434, + "token_id": 13433, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122183,7 +122197,7 @@ }, { "str": "defensive", - "token_id": 13435, + "token_id": 13434, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122195,7 +122209,7 @@ }, { "str": "role", - "token_id": 13436, + "token_id": 13435, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122207,7 +122221,7 @@ }, { "str": ",", - "token_id": 13437, + "token_id": 13436, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122219,7 +122233,7 @@ }, { "str": "in", - "token_id": 13438, + "token_id": 13437, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122231,7 +122245,7 @@ }, { "str": "which", - "token_id": 13439, + "token_id": 13438, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122243,7 +122257,7 @@ }, { "str": "they", - "token_id": 13440, + "token_id": 13439, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122255,7 +122269,7 @@ }, { "str": "aim", - "token_id": 13441, + "token_id": 13440, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122267,7 +122281,7 @@ }, { "str": "to", - "token_id": 13442, + "token_id": 13441, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122279,7 +122293,7 @@ }, { "str": "prevent", - "token_id": 13443, + "token_id": 13442, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122291,7 +122305,7 @@ }, { "str": "two", - "token_id": 13444, + "token_id": 13443, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122303,7 +122317,7 @@ }, { "str": "players", - "token_id": 13445, + "token_id": 13444, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122315,7 +122329,7 @@ }, { "str": "from", - "token_id": 13446, + "token_id": 13445, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122327,7 +122341,7 @@ }, { "str": "each", - "token_id": 13447, + "token_id": 13446, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122339,7 +122353,7 @@ }, { "str": "of", - "token_id": 13448, + "token_id": 13447, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122351,7 +122365,7 @@ }, { "str": "the", - "token_id": 13449, + "token_id": 13448, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122363,7 +122377,7 @@ }, { "str": "other", - "token_id": 13450, + "token_id": 13449, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122375,7 +122389,7 @@ }, { "str": "teams", - "token_id": 13451, + "token_id": 13450, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122387,7 +122401,7 @@ }, { "str": "from", - "token_id": 13452, + "token_id": 13451, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122399,7 +122413,7 @@ }, { "str": "taking", - "token_id": 13453, + "token_id": 13452, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122411,7 +122425,7 @@ }, { "str": "control", - "token_id": 13454, + "token_id": 13453, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122422,7 +122436,7 @@ }, { "str": "of", - "token_id": 13455, + "token_id": 13454, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122433,7 +122447,7 @@ }, { "str": "the", - "token_id": 13456, + "token_id": 13455, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122444,7 +122458,7 @@ }, { "str": "ultra", - "token_id": 13457, + "token_id": 13456, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122455,7 +122469,7 @@ }, { "str": "signal", - "token_id": 13458, + "token_id": 13457, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122466,7 +122480,7 @@ }, { "str": "located", - "token_id": 13459, + "token_id": 13458, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122478,7 +122492,7 @@ }, { "str": "at", - "token_id": 13460, + "token_id": 13459, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122489,7 +122503,7 @@ }, { "str": "the", - "token_id": 13461, + "token_id": 13460, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122500,7 +122514,7 @@ }, { "str": "center", - "token_id": 13462, + "token_id": 13461, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122511,7 +122525,7 @@ }, { "str": "of", - "token_id": 13463, + "token_id": 13462, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122522,7 +122536,7 @@ }, { "str": "the", - "token_id": 13464, + "token_id": 13463, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122533,7 +122547,7 @@ }, { "str": "map", - "token_id": 13465, + "token_id": 13464, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122544,7 +122558,7 @@ }, { "str": ".", - "token_id": 13466, + "token_id": 13465, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122555,7 +122569,7 @@ }, { "str": "<", - "token_id": 13467, + "token_id": 13466, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122566,7 +122580,7 @@ }, { "str": "ref", - "token_id": 13468, + "token_id": 13467, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122577,7 +122591,7 @@ }, { "str": "name", - "token_id": 13469, + "token_id": 13468, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122588,7 +122602,7 @@ }, { "str": "=", - "token_id": 13470, + "token_id": 13469, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122599,7 +122613,7 @@ }, { "str": "\"", - "token_id": 13471, + "token_id": 13470, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122610,7 +122624,7 @@ }, { "str": "destruct", - "token_id": 13472, + "token_id": 13471, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122621,7 +122635,7 @@ }, { "str": "\"", - "token_id": 13473, + "token_id": 13472, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122632,7 +122646,7 @@ }, { "str": "/", - "token_id": 13474, + "token_id": 13473, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122643,7 +122657,7 @@ }, { "str": ">", - "token_id": 13475, + "token_id": 13474, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122654,7 +122668,7 @@ }, { "str": "<", - "token_id": 13476, + "token_id": 13475, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122665,7 +122679,7 @@ }, { "str": "ref", - "token_id": 13477, + "token_id": 13476, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122676,7 +122690,7 @@ }, { "str": ">", - "token_id": 13478, + "token_id": 13477, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122687,7 +122701,7 @@ }, { "str": "{{", - "token_id": 13479, + "token_id": 13478, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122698,7 +122712,7 @@ }, { "str": "cite", - "token_id": 13480, + "token_id": 13479, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122709,7 +122723,7 @@ }, { "str": "web", - "token_id": 13481, + "token_id": 13480, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122720,7 +122734,7 @@ }, { "str": "|", - "token_id": 13482, + "token_id": 13481, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122731,7 +122745,7 @@ }, { "str": "last", - "token_id": 13483, + "token_id": 13482, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122742,7 +122756,7 @@ }, { "str": "=", - "token_id": 13484, + "token_id": 13483, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122753,7 +122767,7 @@ }, { "str": "denzer", - "token_id": 13485, + "token_id": 13484, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122764,7 +122778,7 @@ }, { "str": "|", - "token_id": 13486, + "token_id": 13485, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122775,7 +122789,7 @@ }, { "str": "first", - "token_id": 13487, + "token_id": 13486, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122786,7 +122800,7 @@ }, { "str": "=", - "token_id": 13488, + "token_id": 13487, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122797,7 +122811,7 @@ }, { "str": "tj", - "token_id": 13489, + "token_id": 13488, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122808,7 +122822,7 @@ }, { "str": "|", - "token_id": 13490, + "token_id": 13489, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122819,7 +122833,7 @@ }, { "str": "date", - "token_id": 13491, + "token_id": 13490, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122830,7 +122844,7 @@ }, { "str": "=", - "token_id": 13492, + "token_id": 13491, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122841,7 +122855,7 @@ }, { "str": "2022", - "token_id": 13493, + "token_id": 13492, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122852,7 +122866,7 @@ }, { "str": "-", - "token_id": 13494, + "token_id": 13493, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122863,7 +122877,7 @@ }, { "str": "08", - "token_id": 13495, + "token_id": 13494, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122875,7 +122889,7 @@ }, { "str": "-", - "token_id": 13496, + "token_id": 13495, "o_rev_id": 1115530832, "in": [ 1117591128, @@ -122888,7 +122902,7 @@ }, { "str": "10", - "token_id": 13497, + "token_id": 13496, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122900,7 +122914,7 @@ }, { "str": "|", - "token_id": 13498, + "token_id": 13497, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122911,7 +122925,7 @@ }, { "str": "title", - "token_id": 13499, + "token_id": 13498, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122922,7 +122936,7 @@ }, { "str": "=", - "token_id": 13500, + "token_id": 13499, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122933,7 +122947,7 @@ }, { "str": "splatoon", - "token_id": 13501, + "token_id": 13500, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122944,7 +122958,7 @@ }, { "str": "3", - "token_id": 13502, + "token_id": 13501, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122955,7 +122969,7 @@ }, { "str": "'", - "token_id": 13503, + "token_id": 13502, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122966,7 +122980,7 @@ }, { "str": "s", - "token_id": 13504, + "token_id": 13503, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122977,7 +122991,7 @@ }, { "str": "splatfest", - "token_id": 13505, + "token_id": 13504, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122988,7 +123002,7 @@ }, { "str": "will", - "token_id": 13506, + "token_id": 13505, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -122999,7 +123013,7 @@ }, { "str": "include", - "token_id": 13507, + "token_id": 13506, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123010,7 +123024,7 @@ }, { "str": "3", - "token_id": 13508, + "token_id": 13507, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123021,7 +123035,7 @@ }, { "str": "-", - "token_id": 13509, + "token_id": 13508, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123032,7 +123046,7 @@ }, { "str": "team", - "token_id": 13510, + "token_id": 13509, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123043,7 +123057,7 @@ }, { "str": "tricolor", - "token_id": 13511, + "token_id": 13510, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123054,7 +123068,7 @@ }, { "str": "turf", - "token_id": 13512, + "token_id": 13511, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123065,7 +123079,7 @@ }, { "str": "wars", - "token_id": 13513, + "token_id": 13512, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123076,7 +123090,7 @@ }, { "str": "|", - "token_id": 13514, + "token_id": 13513, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123087,7 +123101,7 @@ }, { "str": "url", - "token_id": 13515, + "token_id": 13514, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123098,7 +123112,7 @@ }, { "str": "=", - "token_id": 13516, + "token_id": 13515, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123109,7 +123123,7 @@ }, { "str": "https", - "token_id": 13517, + "token_id": 13516, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123120,6 +123134,17 @@ }, { "str": ":", + "token_id": 13517, + "o_rev_id": 1115530832, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, + { + "str": "/", "token_id": 13518, "o_rev_id": 1115530832, "in": [ @@ -123140,20 +123165,9 @@ 1117588531 ] }, - { - "str": "/", - "token_id": 13520, - "o_rev_id": 1115530832, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, { "str": "www", - "token_id": 13521, + "token_id": 13520, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123164,7 +123178,7 @@ }, { "str": ".", - "token_id": 13522, + "token_id": 13521, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123175,7 +123189,7 @@ }, { "str": "shacknews", - "token_id": 13523, + "token_id": 13522, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123186,7 +123200,7 @@ }, { "str": ".", - "token_id": 13524, + "token_id": 13523, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123197,7 +123211,7 @@ }, { "str": "com", - "token_id": 13525, + "token_id": 13524, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123208,7 +123222,7 @@ }, { "str": "/", - "token_id": 13526, + "token_id": 13525, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123219,7 +123233,7 @@ }, { "str": "article", - "token_id": 13527, + "token_id": 13526, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123230,7 +123244,7 @@ }, { "str": "/", - "token_id": 13528, + "token_id": 13527, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123241,7 +123255,7 @@ }, { "str": "131781", - "token_id": 13529, + "token_id": 13528, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123252,7 +123266,7 @@ }, { "str": "/", - "token_id": 13530, + "token_id": 13529, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123263,7 +123277,7 @@ }, { "str": "splatoon", - "token_id": 13531, + "token_id": 13530, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123274,7 +123288,7 @@ }, { "str": "-", - "token_id": 13532, + "token_id": 13531, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123285,7 +123299,7 @@ }, { "str": "3", - "token_id": 13533, + "token_id": 13532, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123296,7 +123310,7 @@ }, { "str": "-", - "token_id": 13534, + "token_id": 13533, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123307,7 +123321,7 @@ }, { "str": "splatfest", - "token_id": 13535, + "token_id": 13534, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123318,7 +123332,7 @@ }, { "str": "-", - "token_id": 13536, + "token_id": 13535, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123329,7 +123343,7 @@ }, { "str": "tricolor", - "token_id": 13537, + "token_id": 13536, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123340,7 +123354,7 @@ }, { "str": "-", - "token_id": 13538, + "token_id": 13537, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123351,7 +123365,7 @@ }, { "str": "turf", - "token_id": 13539, + "token_id": 13538, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123362,7 +123376,7 @@ }, { "str": "-", - "token_id": 13540, + "token_id": 13539, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123373,7 +123387,7 @@ }, { "str": "wars", - "token_id": 13541, + "token_id": 13540, "o_rev_id": 1115530832, "in": [ 1117591128 @@ -123384,7 +123398,7 @@ }, { "str": "|", - "token_id": 13542, + "token_id": 13541, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123393,7 +123407,7 @@ }, { "str": "access", - "token_id": 13543, + "token_id": 13542, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123402,14 +123416,14 @@ }, { "str": "-", - "token_id": 13544, + "token_id": 13543, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": "date", - "token_id": 13545, + "token_id": 13544, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123418,7 +123432,7 @@ }, { "str": "=", - "token_id": 13546, + "token_id": 13545, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123427,29 +123441,27 @@ }, { "str": "2022", - "token_id": 13547, + "token_id": 13546, "o_rev_id": 1115530832, "in": [ - 1178773007 + 1178773007, + 1202097960 ], "out": [ - 1178772974 + 1178772974, + 1202071552 ] }, { "str": "-", - "token_id": 13548, + "token_id": 13547, "o_rev_id": 1115530832, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "10", - "token_id": 13549, + "token_id": 13548, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123458,21 +123470,21 @@ }, { "str": "-", - "token_id": 13550, + "token_id": 13549, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": "11", - "token_id": 13551, + "token_id": 13550, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": "|", - "token_id": 13552, + "token_id": 13551, "o_rev_id": 1115530832, "in": [ 1180622889 @@ -123483,7 +123495,7 @@ }, { "str": "website", - "token_id": 13553, + "token_id": 13552, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123492,7 +123504,7 @@ }, { "str": "=", - "token_id": 13554, + "token_id": 13553, "o_rev_id": 1115530832, "in": [ 1180622889 @@ -123503,14 +123515,14 @@ }, { "str": "shacknews", - "token_id": 13555, + "token_id": 13554, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": "|", - "token_id": 13556, + "token_id": 13555, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123519,7 +123531,7 @@ }, { "str": "language", - "token_id": 13557, + "token_id": 13556, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123528,7 +123540,7 @@ }, { "str": "=", - "token_id": 13558, + "token_id": 13557, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123537,7 +123549,7 @@ }, { "str": "en", - "token_id": 13559, + "token_id": 13558, "o_rev_id": 1115530832, "in": [], "out": [ @@ -123546,42 +123558,42 @@ }, { "str": "}}", - "token_id": 13560, + "token_id": 13559, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": "<", - "token_id": 13561, + "token_id": 13560, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": "/", - "token_id": 13562, + "token_id": 13561, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": "ref", - "token_id": 13563, + "token_id": 13562, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": ">", - "token_id": 13564, + "token_id": 13563, "o_rev_id": 1115530832, "in": [], "out": [] }, { "str": "\"", - "token_id": 13565, + "token_id": 13564, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123592,7 +123604,7 @@ }, { "str": "{{", - "token_id": 13566, + "token_id": 13565, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123603,7 +123615,7 @@ }, { "str": "efn", - "token_id": 13567, + "token_id": 13566, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123614,7 +123626,7 @@ }, { "str": "|", - "token_id": 13568, + "token_id": 13567, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123625,7 +123637,7 @@ }, { "str": "prior", - "token_id": 13569, + "token_id": 13568, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123636,7 +123648,7 @@ }, { "str": "to", - "token_id": 13570, + "token_id": 13569, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123647,7 +123659,7 @@ }, { "str": "the", - "token_id": 13571, + "token_id": 13570, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123658,7 +123670,7 @@ }, { "str": "introduction", - "token_id": 13572, + "token_id": 13571, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123669,7 +123681,7 @@ }, { "str": "of", - "token_id": 13573, + "token_id": 13572, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123680,7 +123692,7 @@ }, { "str": "octolings", - "token_id": 13574, + "token_id": 13573, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123691,7 +123703,7 @@ }, { "str": "as", - "token_id": 13575, + "token_id": 13574, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123702,7 +123714,7 @@ }, { "str": "playable", - "token_id": 13576, + "token_id": 13575, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123713,7 +123725,7 @@ }, { "str": "characters", - "token_id": 13577, + "token_id": 13576, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123724,7 +123736,7 @@ }, { "str": ",", - "token_id": 13578, + "token_id": 13577, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123735,7 +123747,7 @@ }, { "str": "this", - "token_id": 13579, + "token_id": 13578, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123746,7 +123758,7 @@ }, { "str": "form", - "token_id": 13580, + "token_id": 13579, "o_rev_id": 1115540281, "in": [], "out": [ @@ -123755,7 +123767,7 @@ }, { "str": "was", - "token_id": 13581, + "token_id": 13580, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123766,7 +123778,7 @@ }, { "str": "referred", - "token_id": 13582, + "token_id": 13581, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123777,7 +123789,7 @@ }, { "str": "to", - "token_id": 13583, + "token_id": 13582, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123788,7 +123800,7 @@ }, { "str": "as", - "token_id": 13584, + "token_id": 13583, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123799,7 +123811,7 @@ }, { "str": "the", - "token_id": 13585, + "token_id": 13584, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123810,7 +123822,7 @@ }, { "str": "squid", - "token_id": 13586, + "token_id": 13585, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123821,7 +123833,7 @@ }, { "str": "form", - "token_id": 13587, + "token_id": 13586, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123832,7 +123844,7 @@ }, { "str": "\"", - "token_id": 13588, + "token_id": 13587, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123843,7 +123855,7 @@ }, { "str": "|", - "token_id": 13589, + "token_id": 13588, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123854,7 +123866,7 @@ }, { "str": "name", - "token_id": 13590, + "token_id": 13589, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123865,7 +123877,7 @@ }, { "str": "=", - "token_id": 13591, + "token_id": 13590, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123876,7 +123888,7 @@ }, { "str": "swim", - "token_id": 13592, + "token_id": 13591, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123887,7 +123899,7 @@ }, { "str": "|", - "token_id": 13593, + "token_id": 13592, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123898,7 +123910,7 @@ }, { "str": "group", - "token_id": 13594, + "token_id": 13593, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123909,7 +123921,7 @@ }, { "str": "=", - "token_id": 13595, + "token_id": 13594, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123920,7 +123932,7 @@ }, { "str": "lower", - "token_id": 13596, + "token_id": 13595, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123931,7 +123943,7 @@ }, { "str": "-", - "token_id": 13597, + "token_id": 13596, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123942,7 +123954,7 @@ }, { "str": "alpha", - "token_id": 13598, + "token_id": 13597, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123953,7 +123965,7 @@ }, { "str": "}}", - "token_id": 13599, + "token_id": 13598, "o_rev_id": 1115540281, "in": [ 1178773007 @@ -123964,7 +123976,7 @@ }, { "str": "<", - "token_id": 13600, + "token_id": 13599, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -123975,7 +123987,7 @@ }, { "str": "ref", - "token_id": 13601, + "token_id": 13600, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -123986,7 +123998,7 @@ }, { "str": "name", - "token_id": 13602, + "token_id": 13601, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -123997,7 +124009,7 @@ }, { "str": "=", - "token_id": 13603, + "token_id": 13602, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124008,7 +124020,7 @@ }, { "str": "\"", - "token_id": 13604, + "token_id": 13603, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124019,7 +124031,7 @@ }, { "str": "eurog", - "token_id": 13605, + "token_id": 13604, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124030,7 +124042,7 @@ }, { "str": "\"", - "token_id": 13606, + "token_id": 13605, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124041,7 +124053,7 @@ }, { "str": "/", - "token_id": 13607, + "token_id": 13606, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124052,7 +124064,7 @@ }, { "str": ">", - "token_id": 13608, + "token_id": 13607, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124063,7 +124075,7 @@ }, { "str": "<", - "token_id": 13609, + "token_id": 13608, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124074,7 +124086,7 @@ }, { "str": "ref", - "token_id": 13610, + "token_id": 13609, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124085,7 +124097,7 @@ }, { "str": ">", - "token_id": 13611, + "token_id": 13610, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124096,7 +124108,7 @@ }, { "str": "{{", - "token_id": 13612, + "token_id": 13611, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124107,7 +124119,7 @@ }, { "str": "cite", - "token_id": 13613, + "token_id": 13612, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124118,7 +124130,7 @@ }, { "str": "web", - "token_id": 13614, + "token_id": 13613, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124129,7 +124141,7 @@ }, { "str": "|", - "token_id": 13615, + "token_id": 13614, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124140,7 +124152,7 @@ }, { "str": "last", - "token_id": 13616, + "token_id": 13615, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124151,7 +124163,7 @@ }, { "str": "=", - "token_id": 13617, + "token_id": 13616, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124162,7 +124174,7 @@ }, { "str": "chandler", - "token_id": 13618, + "token_id": 13617, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124173,7 +124185,7 @@ }, { "str": "|", - "token_id": 13619, + "token_id": 13618, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124184,7 +124196,7 @@ }, { "str": "first", - "token_id": 13620, + "token_id": 13619, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124195,7 +124207,7 @@ }, { "str": "=", - "token_id": 13621, + "token_id": 13620, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124206,7 +124218,7 @@ }, { "str": "sam", - "token_id": 13622, + "token_id": 13621, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124217,7 +124229,7 @@ }, { "str": "|", - "token_id": 13623, + "token_id": 13622, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124228,7 +124240,7 @@ }, { "str": "date", - "token_id": 13624, + "token_id": 13623, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124239,7 +124251,7 @@ }, { "str": "=", - "token_id": 13625, + "token_id": 13624, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124250,7 +124262,7 @@ }, { "str": "2022", - "token_id": 13626, + "token_id": 13625, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124261,7 +124273,7 @@ }, { "str": "-", - "token_id": 13627, + "token_id": 13626, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124272,7 +124284,7 @@ }, { "str": "09", - "token_id": 13628, + "token_id": 13627, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124284,7 +124296,7 @@ }, { "str": "-", - "token_id": 13629, + "token_id": 13628, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124296,7 +124308,7 @@ }, { "str": "19", - "token_id": 13630, + "token_id": 13629, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124307,7 +124319,7 @@ }, { "str": "|", - "token_id": 13631, + "token_id": 13630, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124318,7 +124330,7 @@ }, { "str": "title", - "token_id": 13632, + "token_id": 13631, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124329,7 +124341,7 @@ }, { "str": "=", - "token_id": 13633, + "token_id": 13632, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124340,7 +124352,7 @@ }, { "str": "all", - "token_id": 13634, + "token_id": 13633, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124351,7 +124363,7 @@ }, { "str": "weapons", - "token_id": 13635, + "token_id": 13634, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124362,7 +124374,7 @@ }, { "str": ",", - "token_id": 13636, + "token_id": 13635, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124373,7 +124385,7 @@ }, { "str": "subs", - "token_id": 13637, + "token_id": 13636, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124384,7 +124396,7 @@ }, { "str": "&", - "token_id": 13638, + "token_id": 13637, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124395,7 +124407,7 @@ }, { "str": "specials", - "token_id": 13639, + "token_id": 13638, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124406,7 +124418,7 @@ }, { "str": "-", - "token_id": 13640, + "token_id": 13639, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124417,7 +124429,7 @@ }, { "str": "splatoon", - "token_id": 13641, + "token_id": 13640, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124428,7 +124440,7 @@ }, { "str": "3", - "token_id": 13642, + "token_id": 13641, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124439,7 +124451,7 @@ }, { "str": "|", - "token_id": 13643, + "token_id": 13642, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124450,7 +124462,7 @@ }, { "str": "url", - "token_id": 13644, + "token_id": 13643, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124461,7 +124473,7 @@ }, { "str": "=", - "token_id": 13645, + "token_id": 13644, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124472,7 +124484,7 @@ }, { "str": "https", - "token_id": 13646, + "token_id": 13645, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124483,6 +124495,17 @@ }, { "str": ":", + "token_id": 13646, + "o_rev_id": 1115540281, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, + { + "str": "/", "token_id": 13647, "o_rev_id": 1115540281, "in": [ @@ -124503,20 +124526,9 @@ 1117588531 ] }, - { - "str": "/", - "token_id": 13649, - "o_rev_id": 1115540281, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, { "str": "www", - "token_id": 13650, + "token_id": 13649, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124527,7 +124539,7 @@ }, { "str": ".", - "token_id": 13651, + "token_id": 13650, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124538,7 +124550,7 @@ }, { "str": "shacknews", - "token_id": 13652, + "token_id": 13651, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124549,7 +124561,7 @@ }, { "str": ".", - "token_id": 13653, + "token_id": 13652, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124560,7 +124572,7 @@ }, { "str": "com", - "token_id": 13654, + "token_id": 13653, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124571,7 +124583,7 @@ }, { "str": "/", - "token_id": 13655, + "token_id": 13654, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124582,7 +124594,7 @@ }, { "str": "article", - "token_id": 13656, + "token_id": 13655, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124593,7 +124605,7 @@ }, { "str": "/", - "token_id": 13657, + "token_id": 13656, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124604,7 +124616,7 @@ }, { "str": "132358", - "token_id": 13658, + "token_id": 13657, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124615,7 +124627,7 @@ }, { "str": "/", - "token_id": 13659, + "token_id": 13658, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124626,7 +124638,7 @@ }, { "str": "splatoon", - "token_id": 13660, + "token_id": 13659, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124637,7 +124649,7 @@ }, { "str": "-", - "token_id": 13661, + "token_id": 13660, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124648,7 +124660,7 @@ }, { "str": "3", - "token_id": 13662, + "token_id": 13661, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124659,7 +124671,7 @@ }, { "str": "-", - "token_id": 13663, + "token_id": 13662, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124670,7 +124682,7 @@ }, { "str": "weapon", - "token_id": 13664, + "token_id": 13663, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124681,7 +124693,7 @@ }, { "str": "-", - "token_id": 13665, + "token_id": 13664, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124692,7 +124704,7 @@ }, { "str": "sub", - "token_id": 13666, + "token_id": 13665, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124703,7 +124715,7 @@ }, { "str": "-", - "token_id": 13667, + "token_id": 13666, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124714,7 +124726,7 @@ }, { "str": "special", - "token_id": 13668, + "token_id": 13667, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124725,7 +124737,7 @@ }, { "str": "-", - "token_id": 13669, + "token_id": 13668, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124736,7 +124748,7 @@ }, { "str": "list", - "token_id": 13670, + "token_id": 13669, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124747,7 +124759,7 @@ }, { "str": "|", - "token_id": 13671, + "token_id": 13670, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124758,7 +124770,7 @@ }, { "str": "access", - "token_id": 13672, + "token_id": 13671, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124770,7 +124782,7 @@ }, { "str": "-", - "token_id": 13673, + "token_id": 13672, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124781,7 +124793,7 @@ }, { "str": "date", - "token_id": 13674, + "token_id": 13673, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124792,7 +124804,7 @@ }, { "str": "=", - "token_id": 13675, + "token_id": 13674, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124803,7 +124815,7 @@ }, { "str": "2022", - "token_id": 13676, + "token_id": 13675, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -124816,7 +124828,7 @@ }, { "str": "-", - "token_id": 13677, + "token_id": 13676, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124827,7 +124839,7 @@ }, { "str": "10", - "token_id": 13678, + "token_id": 13677, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124839,7 +124851,7 @@ }, { "str": "-", - "token_id": 13679, + "token_id": 13678, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124851,7 +124863,7 @@ }, { "str": "12", - "token_id": 13680, + "token_id": 13679, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124862,7 +124874,7 @@ }, { "str": "|", - "token_id": 13681, + "token_id": 13680, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124873,7 +124885,7 @@ }, { "str": "website", - "token_id": 13682, + "token_id": 13681, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124885,7 +124897,7 @@ }, { "str": "=", - "token_id": 13683, + "token_id": 13682, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124896,7 +124908,7 @@ }, { "str": "shacknews", - "token_id": 13684, + "token_id": 13683, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124908,7 +124920,7 @@ }, { "str": "|", - "token_id": 13685, + "token_id": 13684, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124919,7 +124931,7 @@ }, { "str": "language", - "token_id": 13686, + "token_id": 13685, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124931,7 +124943,7 @@ }, { "str": "=", - "token_id": 13687, + "token_id": 13686, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124943,7 +124955,7 @@ }, { "str": "en", - "token_id": 13688, + "token_id": 13687, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124955,7 +124967,7 @@ }, { "str": "}}", - "token_id": 13689, + "token_id": 13688, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124967,7 +124979,7 @@ }, { "str": "<", - "token_id": 13690, + "token_id": 13689, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -124979,7 +124991,7 @@ }, { "str": "/", - "token_id": 13691, + "token_id": 13690, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -124992,7 +125004,7 @@ }, { "str": "ref", - "token_id": 13692, + "token_id": 13691, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125004,7 +125016,7 @@ }, { "str": ">", - "token_id": 13693, + "token_id": 13692, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125016,7 +125028,7 @@ }, { "str": "once", - "token_id": 13694, + "token_id": 13693, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125027,7 +125039,7 @@ }, { "str": "a", - "token_id": 13695, + "token_id": 13694, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125038,7 +125050,7 @@ }, { "str": "player", - "token_id": 13696, + "token_id": 13695, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125049,7 +125061,7 @@ }, { "str": "gains", - "token_id": 13697, + "token_id": 13696, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125060,7 +125072,7 @@ }, { "str": "enough", - "token_id": 13698, + "token_id": 13697, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -125073,7 +125085,7 @@ }, { "str": "[[", - "token_id": 13699, + "token_id": 13698, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125084,7 +125096,7 @@ }, { "str": "experience", - "token_id": 13700, + "token_id": 13699, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125095,7 +125107,7 @@ }, { "str": "point", - "token_id": 13701, + "token_id": 13700, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125106,7 +125118,7 @@ }, { "str": "|", - "token_id": 13702, + "token_id": 13701, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125118,7 +125130,7 @@ }, { "str": "experience", - "token_id": 13703, + "token_id": 13702, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125130,7 +125142,7 @@ }, { "str": "points", - "token_id": 13704, + "token_id": 13703, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125142,7 +125154,7 @@ }, { "str": "]]", - "token_id": 13705, + "token_id": 13704, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125153,7 +125165,7 @@ }, { "str": "to", - "token_id": 13706, + "token_id": 13705, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125164,7 +125176,7 @@ }, { "str": "reach", - "token_id": 13707, + "token_id": 13706, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125175,7 +125187,7 @@ }, { "str": "level", - "token_id": 13708, + "token_id": 13707, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125186,7 +125198,7 @@ }, { "str": "10", - "token_id": 13709, + "token_id": 13708, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -125199,7 +125211,7 @@ }, { "str": ",", - "token_id": 13710, + "token_id": 13709, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125211,7 +125223,7 @@ }, { "str": "or", - "token_id": 13711, + "token_id": 13710, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125223,7 +125235,7 @@ }, { "str": "by", - "token_id": 13712, + "token_id": 13711, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125234,7 +125246,7 @@ }, { "str": "transferring", - "token_id": 13713, + "token_id": 13712, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125245,7 +125257,7 @@ }, { "str": "save", - "token_id": 13714, + "token_id": 13713, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125257,7 +125269,7 @@ }, { "str": "data", - "token_id": 13715, + "token_id": 13714, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125268,7 +125280,7 @@ }, { "str": "from", - "token_id": 13716, + "token_id": 13715, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125279,7 +125291,7 @@ }, { "str": "'", - "token_id": 13717, + "token_id": 13716, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125290,7 +125302,7 @@ }, { "str": "'", - "token_id": 13718, + "token_id": 13717, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125301,7 +125313,7 @@ }, { "str": "splatoon", - "token_id": 13719, + "token_id": 13718, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125312,7 +125324,7 @@ }, { "str": "2", - "token_id": 13720, + "token_id": 13719, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125323,7 +125335,7 @@ }, { "str": "'", - "token_id": 13721, + "token_id": 13720, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125334,7 +125346,7 @@ }, { "str": "'", - "token_id": 13722, + "token_id": 13721, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125345,7 +125357,7 @@ }, { "str": ",", - "token_id": 13723, + "token_id": 13722, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125357,7 +125369,7 @@ }, { "str": "they", - "token_id": 13724, + "token_id": 13723, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125368,7 +125380,7 @@ }, { "str": "gain", - "token_id": 13725, + "token_id": 13724, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125379,7 +125391,7 @@ }, { "str": "access", - "token_id": 13726, + "token_id": 13725, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125390,7 +125402,7 @@ }, { "str": "to", - "token_id": 13727, + "token_id": 13726, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125401,7 +125413,7 @@ }, { "str": "a", - "token_id": 13728, + "token_id": 13727, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125412,7 +125424,7 @@ }, { "str": "ranked", - "token_id": 13729, + "token_id": 13728, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125423,7 +125435,7 @@ }, { "str": "mode", - "token_id": 13730, + "token_id": 13729, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125434,7 +125446,7 @@ }, { "str": "called", - "token_id": 13731, + "token_id": 13730, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125445,7 +125457,7 @@ }, { "str": "\"", - "token_id": 13732, + "token_id": 13731, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125457,7 +125469,7 @@ }, { "str": "anarchy", - "token_id": 13733, + "token_id": 13732, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125468,7 +125480,7 @@ }, { "str": "battles", - "token_id": 13734, + "token_id": 13733, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125479,7 +125491,7 @@ }, { "str": "\"", - "token_id": 13735, + "token_id": 13734, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125491,7 +125503,7 @@ }, { "str": ",", - "token_id": 13736, + "token_id": 13735, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125503,7 +125515,7 @@ }, { "str": "featuring", - "token_id": 13737, + "token_id": 13736, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125514,7 +125526,7 @@ }, { "str": "several", - "token_id": 13738, + "token_id": 13737, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125525,7 +125537,7 @@ }, { "str": "different", - "token_id": 13739, + "token_id": 13738, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125536,7 +125548,7 @@ }, { "str": "battle", - "token_id": 13740, + "token_id": 13739, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125547,7 +125559,7 @@ }, { "str": "types", - "token_id": 13741, + "token_id": 13740, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -125560,7 +125572,7 @@ }, { "str": ".", - "token_id": 13742, + "token_id": 13741, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125571,7 +125583,7 @@ }, { "str": "<", - "token_id": 13743, + "token_id": 13742, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125582,7 +125594,7 @@ }, { "str": "ref", - "token_id": 13744, + "token_id": 13743, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125593,7 +125605,7 @@ }, { "str": ">", - "token_id": 13745, + "token_id": 13744, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125604,7 +125616,7 @@ }, { "str": "{{", - "token_id": 13746, + "token_id": 13745, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125615,7 +125627,7 @@ }, { "str": "cite", - "token_id": 13747, + "token_id": 13746, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125626,7 +125638,7 @@ }, { "str": "web", - "token_id": 13748, + "token_id": 13747, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125637,7 +125649,7 @@ }, { "str": "|", - "token_id": 13749, + "token_id": 13748, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125648,7 +125660,7 @@ }, { "str": "last", - "token_id": 13750, + "token_id": 13749, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125659,7 +125671,7 @@ }, { "str": "=", - "token_id": 13751, + "token_id": 13750, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125670,7 +125682,7 @@ }, { "str": "michael", - "token_id": 13752, + "token_id": 13751, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125681,7 +125693,7 @@ }, { "str": "|", - "token_id": 13753, + "token_id": 13752, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125692,7 +125704,7 @@ }, { "str": "first", - "token_id": 13754, + "token_id": 13753, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125703,7 +125715,7 @@ }, { "str": "=", - "token_id": 13755, + "token_id": 13754, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125714,7 +125726,7 @@ }, { "str": "cale", - "token_id": 13756, + "token_id": 13755, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125725,7 +125737,7 @@ }, { "str": "|", - "token_id": 13757, + "token_id": 13756, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125736,7 +125748,7 @@ }, { "str": "date", - "token_id": 13758, + "token_id": 13757, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125747,7 +125759,7 @@ }, { "str": "=", - "token_id": 13759, + "token_id": 13758, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125758,7 +125770,7 @@ }, { "str": "2022", - "token_id": 13760, + "token_id": 13759, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125769,19 +125781,20 @@ }, { "str": "-", - "token_id": 13761, + "token_id": 13760, "o_rev_id": 1115540281, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ 1117588531, - 1168453704 + 1202071552 ] }, { "str": "09", - "token_id": 13762, + "token_id": 13761, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125793,20 +125806,18 @@ }, { "str": "-", - "token_id": 13763, + "token_id": 13762, "o_rev_id": 1115540281, "in": [ - 1117591128, - 1202097960 + 1117591128 ], "out": [ - 1117588531, - 1202071552 + 1117588531 ] }, { "str": "09", - "token_id": 13764, + "token_id": 13763, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125818,7 +125829,7 @@ }, { "str": "|", - "token_id": 13765, + "token_id": 13764, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125829,7 +125840,7 @@ }, { "str": "title", - "token_id": 13766, + "token_id": 13765, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125840,7 +125851,7 @@ }, { "str": "=", - "token_id": 13767, + "token_id": 13766, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125851,7 +125862,7 @@ }, { "str": "how", - "token_id": 13768, + "token_id": 13767, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125862,7 +125873,7 @@ }, { "str": "to", - "token_id": 13769, + "token_id": 13768, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125873,7 +125884,7 @@ }, { "str": "unlock", - "token_id": 13770, + "token_id": 13769, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125884,7 +125895,7 @@ }, { "str": "anarchy", - "token_id": 13771, + "token_id": 13770, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125895,7 +125906,7 @@ }, { "str": "battle", - "token_id": 13772, + "token_id": 13771, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125906,7 +125917,7 @@ }, { "str": "ranked", - "token_id": 13773, + "token_id": 13772, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125917,7 +125928,7 @@ }, { "str": "in", - "token_id": 13774, + "token_id": 13773, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125928,7 +125939,7 @@ }, { "str": "splatoon", - "token_id": 13775, + "token_id": 13774, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125939,7 +125950,7 @@ }, { "str": "3", - "token_id": 13776, + "token_id": 13775, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125950,7 +125961,7 @@ }, { "str": "|", - "token_id": 13777, + "token_id": 13776, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125961,7 +125972,7 @@ }, { "str": "url", - "token_id": 13778, + "token_id": 13777, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125972,7 +125983,7 @@ }, { "str": "=", - "token_id": 13779, + "token_id": 13778, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125983,7 +125994,7 @@ }, { "str": "https", - "token_id": 13780, + "token_id": 13779, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -125994,6 +126005,17 @@ }, { "str": ":", + "token_id": 13780, + "o_rev_id": 1115540281, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, + { + "str": "/", "token_id": 13781, "o_rev_id": 1115540281, "in": [ @@ -126014,20 +126036,9 @@ 1117588531 ] }, - { - "str": "/", - "token_id": 13783, - "o_rev_id": 1115540281, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, { "str": "dotesports", - "token_id": 13784, + "token_id": 13783, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126038,7 +126049,7 @@ }, { "str": ".", - "token_id": 13785, + "token_id": 13784, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126049,7 +126060,7 @@ }, { "str": "com", - "token_id": 13786, + "token_id": 13785, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126060,7 +126071,7 @@ }, { "str": "/", - "token_id": 13787, + "token_id": 13786, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126071,7 +126082,7 @@ }, { "str": "splatoon", - "token_id": 13788, + "token_id": 13787, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126082,7 +126093,7 @@ }, { "str": "/", - "token_id": 13789, + "token_id": 13788, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126093,7 +126104,7 @@ }, { "str": "news", - "token_id": 13790, + "token_id": 13789, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126104,7 +126115,7 @@ }, { "str": "/", - "token_id": 13791, + "token_id": 13790, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126115,7 +126126,7 @@ }, { "str": "how", - "token_id": 13792, + "token_id": 13791, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126126,7 +126137,7 @@ }, { "str": "-", - "token_id": 13793, + "token_id": 13792, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126137,7 +126148,7 @@ }, { "str": "to", - "token_id": 13794, + "token_id": 13793, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126148,7 +126159,7 @@ }, { "str": "-", - "token_id": 13795, + "token_id": 13794, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126159,7 +126170,7 @@ }, { "str": "unlock", - "token_id": 13796, + "token_id": 13795, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126170,7 +126181,7 @@ }, { "str": "-", - "token_id": 13797, + "token_id": 13796, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126181,7 +126192,7 @@ }, { "str": "anarchy", - "token_id": 13798, + "token_id": 13797, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126192,7 +126203,7 @@ }, { "str": "-", - "token_id": 13799, + "token_id": 13798, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126203,7 +126214,7 @@ }, { "str": "battle", - "token_id": 13800, + "token_id": 13799, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126214,7 +126225,7 @@ }, { "str": "-", - "token_id": 13801, + "token_id": 13800, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126225,7 +126236,7 @@ }, { "str": "ranked", - "token_id": 13802, + "token_id": 13801, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126236,7 +126247,7 @@ }, { "str": "-", - "token_id": 13803, + "token_id": 13802, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126247,7 +126258,7 @@ }, { "str": "in", - "token_id": 13804, + "token_id": 13803, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126258,7 +126269,7 @@ }, { "str": "-", - "token_id": 13805, + "token_id": 13804, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126269,7 +126280,7 @@ }, { "str": "splatoon", - "token_id": 13806, + "token_id": 13805, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126280,7 +126291,7 @@ }, { "str": "-", - "token_id": 13807, + "token_id": 13806, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126291,7 +126302,7 @@ }, { "str": "3", - "token_id": 13808, + "token_id": 13807, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126302,7 +126313,7 @@ }, { "str": "|", - "token_id": 13809, + "token_id": 13808, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126313,7 +126324,7 @@ }, { "str": "access", - "token_id": 13810, + "token_id": 13809, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126325,7 +126336,7 @@ }, { "str": "-", - "token_id": 13811, + "token_id": 13810, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126336,7 +126347,7 @@ }, { "str": "date", - "token_id": 13812, + "token_id": 13811, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126348,7 +126359,7 @@ }, { "str": "=", - "token_id": 13813, + "token_id": 13812, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -126361,7 +126372,7 @@ }, { "str": "2022", - "token_id": 13814, + "token_id": 13813, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126373,7 +126384,7 @@ }, { "str": "-", - "token_id": 13815, + "token_id": 13814, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126384,7 +126395,7 @@ }, { "str": "10", - "token_id": 13816, + "token_id": 13815, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126396,7 +126407,7 @@ }, { "str": "-", - "token_id": 13817, + "token_id": 13816, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126407,7 +126418,7 @@ }, { "str": "12", - "token_id": 13818, + "token_id": 13817, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126418,7 +126429,7 @@ }, { "str": "|", - "token_id": 13819, + "token_id": 13818, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126430,7 +126441,7 @@ }, { "str": "website", - "token_id": 13820, + "token_id": 13819, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126442,7 +126453,7 @@ }, { "str": "=", - "token_id": 13821, + "token_id": 13820, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126454,7 +126465,7 @@ }, { "str": "dot", - "token_id": 13822, + "token_id": 13821, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126466,7 +126477,7 @@ }, { "str": "esports", - "token_id": 13823, + "token_id": 13822, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126478,7 +126489,7 @@ }, { "str": "|", - "token_id": 13824, + "token_id": 13823, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126490,7 +126501,7 @@ }, { "str": "language", - "token_id": 13825, + "token_id": 13824, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126502,7 +126513,7 @@ }, { "str": "=", - "token_id": 13826, + "token_id": 13825, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126514,7 +126525,7 @@ }, { "str": "en", - "token_id": 13827, + "token_id": 13826, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126526,7 +126537,7 @@ }, { "str": "-", - "token_id": 13828, + "token_id": 13827, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126537,7 +126548,7 @@ }, { "str": "us", - "token_id": 13829, + "token_id": 13828, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126549,7 +126560,7 @@ }, { "str": "}}", - "token_id": 13830, + "token_id": 13829, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -126562,7 +126573,7 @@ }, { "str": "<", - "token_id": 13831, + "token_id": 13830, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -126575,7 +126586,7 @@ }, { "str": "/", - "token_id": 13832, + "token_id": 13831, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126586,7 +126597,7 @@ }, { "str": "ref", - "token_id": 13833, + "token_id": 13832, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -126599,7 +126610,7 @@ }, { "str": ">", - "token_id": 13834, + "token_id": 13833, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -126612,7 +126623,7 @@ }, { "str": "clam", - "token_id": 13835, + "token_id": 13834, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126623,7 +126634,7 @@ }, { "str": "blitz", - "token_id": 13836, + "token_id": 13835, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126634,7 +126645,7 @@ }, { "str": "sees", - "token_id": 13837, + "token_id": 13836, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126645,7 +126656,7 @@ }, { "str": "players", - "token_id": 13838, + "token_id": 13837, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126656,7 +126667,7 @@ }, { "str": "collect", - "token_id": 13839, + "token_id": 13838, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126667,7 +126678,7 @@ }, { "str": "golden", - "token_id": 13840, + "token_id": 13839, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126678,7 +126689,7 @@ }, { "str": "[[", - "token_id": 13841, + "token_id": 13840, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126689,7 +126700,7 @@ }, { "str": "clam", - "token_id": 13842, + "token_id": 13841, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126700,7 +126711,7 @@ }, { "str": "|", - "token_id": 13843, + "token_id": 13842, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126712,7 +126723,7 @@ }, { "str": "clams", - "token_id": 13844, + "token_id": 13843, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126724,7 +126735,7 @@ }, { "str": "]]", - "token_id": 13845, + "token_id": 13844, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126735,7 +126746,7 @@ }, { "str": "and", - "token_id": 13846, + "token_id": 13845, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126746,7 +126757,7 @@ }, { "str": "deposit", - "token_id": 13847, + "token_id": 13846, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126757,7 +126768,7 @@ }, { "str": "them", - "token_id": 13848, + "token_id": 13847, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126768,7 +126779,7 @@ }, { "str": "in", - "token_id": 13849, + "token_id": 13848, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126779,7 +126790,7 @@ }, { "str": "opponent", - "token_id": 13850, + "token_id": 13849, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126790,7 +126801,7 @@ }, { "str": "'", - "token_id": 13851, + "token_id": 13850, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126801,7 +126812,7 @@ }, { "str": "s", - "token_id": 13852, + "token_id": 13851, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126812,7 +126823,7 @@ }, { "str": "goals", - "token_id": 13853, + "token_id": 13852, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126823,7 +126834,7 @@ }, { "str": "with", - "token_id": 13854, + "token_id": 13853, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126835,7 +126846,7 @@ }, { "str": "the", - "token_id": 13855, + "token_id": 13854, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126846,7 +126857,7 @@ }, { "str": "team", - "token_id": 13856, + "token_id": 13855, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126857,7 +126868,7 @@ }, { "str": "who", - "token_id": 13857, + "token_id": 13856, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126868,7 +126879,7 @@ }, { "str": "deposited", - "token_id": 13858, + "token_id": 13857, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126879,7 +126890,7 @@ }, { "str": "the", - "token_id": 13859, + "token_id": 13858, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126890,7 +126901,7 @@ }, { "str": "most", - "token_id": 13860, + "token_id": 13859, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126901,7 +126912,7 @@ }, { "str": "clams", - "token_id": 13861, + "token_id": 13860, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126912,7 +126923,7 @@ }, { "str": "by", - "token_id": 13862, + "token_id": 13861, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126923,7 +126934,7 @@ }, { "str": "the", - "token_id": 13863, + "token_id": 13862, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126934,7 +126945,7 @@ }, { "str": "end", - "token_id": 13864, + "token_id": 13863, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126945,7 +126956,7 @@ }, { "str": "of", - "token_id": 13865, + "token_id": 13864, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126956,7 +126967,7 @@ }, { "str": "the", - "token_id": 13866, + "token_id": 13865, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126967,7 +126978,7 @@ }, { "str": "match", - "token_id": 13867, + "token_id": 13866, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126978,7 +126989,7 @@ }, { "str": "declared", - "token_id": 13868, + "token_id": 13867, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -126989,7 +127000,7 @@ }, { "str": "the", - "token_id": 13869, + "token_id": 13868, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127000,7 +127011,7 @@ }, { "str": "winner", - "token_id": 13870, + "token_id": 13869, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127011,7 +127022,7 @@ }, { "str": ".", - "token_id": 13871, + "token_id": 13870, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127022,7 +127033,7 @@ }, { "str": "in", - "token_id": 13872, + "token_id": 13871, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127034,7 +127045,7 @@ }, { "str": "splat", - "token_id": 13873, + "token_id": 13872, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127045,7 +127056,7 @@ }, { "str": "zones", - "token_id": 13874, + "token_id": 13873, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127056,7 +127067,7 @@ }, { "str": ",", - "token_id": 13875, + "token_id": 13874, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127068,7 +127079,7 @@ }, { "str": "two", - "token_id": 13876, + "token_id": 13875, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127079,7 +127090,7 @@ }, { "str": "teams", - "token_id": 13877, + "token_id": 13876, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127090,7 +127101,7 @@ }, { "str": "aim", - "token_id": 13878, + "token_id": 13877, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127101,7 +127112,7 @@ }, { "str": "to", - "token_id": 13879, + "token_id": 13878, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127112,7 +127123,7 @@ }, { "str": "control", - "token_id": 13880, + "token_id": 13879, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127123,7 +127134,7 @@ }, { "str": "\"", - "token_id": 13881, + "token_id": 13880, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127134,7 +127145,7 @@ }, { "str": "splat", - "token_id": 13882, + "token_id": 13881, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127145,7 +127156,7 @@ }, { "str": "zones", - "token_id": 13883, + "token_id": 13882, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127156,7 +127167,7 @@ }, { "str": "\"", - "token_id": 13884, + "token_id": 13883, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127167,7 +127178,7 @@ }, { "str": "for", - "token_id": 13885, + "token_id": 13884, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127178,7 +127189,7 @@ }, { "str": "a", - "token_id": 13886, + "token_id": 13885, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127189,7 +127200,7 @@ }, { "str": "set", - "token_id": 13887, + "token_id": 13886, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127200,7 +127211,7 @@ }, { "str": "amount", - "token_id": 13888, + "token_id": 13887, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127211,7 +127222,7 @@ }, { "str": "of", - "token_id": 13889, + "token_id": 13888, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127222,7 +127233,7 @@ }, { "str": "time", - "token_id": 13890, + "token_id": 13889, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127233,7 +127244,7 @@ }, { "str": ".", - "token_id": 13891, + "token_id": 13890, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127244,7 +127255,7 @@ }, { "str": "the", - "token_id": 13892, + "token_id": 13891, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127256,7 +127267,7 @@ }, { "str": "splat", - "token_id": 13893, + "token_id": 13892, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127268,7 +127279,7 @@ }, { "str": "zones", - "token_id": 13894, + "token_id": 13893, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127280,7 +127291,7 @@ }, { "str": "are", - "token_id": 13895, + "token_id": 13894, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127292,7 +127303,7 @@ }, { "str": "considered", - "token_id": 13896, + "token_id": 13895, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127304,7 +127315,7 @@ }, { "str": "\"", - "token_id": 13897, + "token_id": 13896, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127316,7 +127327,7 @@ }, { "str": "controlled", - "token_id": 13898, + "token_id": 13897, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127327,7 +127338,7 @@ }, { "str": "\"", - "token_id": 13899, + "token_id": 13898, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127339,7 +127350,7 @@ }, { "str": "when", - "token_id": 13900, + "token_id": 13899, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127350,7 +127361,7 @@ }, { "str": "they", - "token_id": 13901, + "token_id": 13900, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127362,7 +127373,7 @@ }, { "str": "are", - "token_id": 13902, + "token_id": 13901, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127374,7 +127385,7 @@ }, { "str": "70", - "token_id": 13903, + "token_id": 13902, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127385,7 +127396,7 @@ }, { "str": "%", - "token_id": 13904, + "token_id": 13903, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127396,7 +127407,7 @@ }, { "str": "covered", - "token_id": 13905, + "token_id": 13904, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127407,7 +127418,7 @@ }, { "str": "in", - "token_id": 13906, + "token_id": 13905, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127418,7 +127429,7 @@ }, { "str": "a", - "token_id": 13907, + "token_id": 13906, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127429,7 +127440,7 @@ }, { "str": "single", - "token_id": 13908, + "token_id": 13907, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127441,7 +127452,7 @@ }, { "str": "team", - "token_id": 13909, + "token_id": 13908, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127453,7 +127464,7 @@ }, { "str": "'", - "token_id": 13910, + "token_id": 13909, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127465,7 +127476,7 @@ }, { "str": "s", - "token_id": 13911, + "token_id": 13910, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127477,7 +127488,7 @@ }, { "str": "ink", - "token_id": 13912, + "token_id": 13911, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127488,7 +127499,7 @@ }, { "str": ".", - "token_id": 13913, + "token_id": 13912, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127500,7 +127511,7 @@ }, { "str": "similarly", - "token_id": 13914, + "token_id": 13913, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127512,7 +127523,7 @@ }, { "str": ",", - "token_id": 13915, + "token_id": 13914, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127524,7 +127535,7 @@ }, { "str": "tower", - "token_id": 13916, + "token_id": 13915, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127536,7 +127547,7 @@ }, { "str": "control", - "token_id": 13917, + "token_id": 13916, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127548,7 +127559,7 @@ }, { "str": "requires", - "token_id": 13918, + "token_id": 13917, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127560,7 +127571,7 @@ }, { "str": "a", - "token_id": 13919, + "token_id": 13918, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127571,7 +127582,7 @@ }, { "str": "team", - "token_id": 13920, + "token_id": 13919, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127582,7 +127593,7 @@ }, { "str": "to", - "token_id": 13921, + "token_id": 13920, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127593,7 +127604,7 @@ }, { "str": "control", - "token_id": 13922, + "token_id": 13921, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127605,7 +127616,7 @@ }, { "str": "a", - "token_id": 13923, + "token_id": 13922, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127616,7 +127627,7 @@ }, { "str": "moving", - "token_id": 13924, + "token_id": 13923, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127627,7 +127638,7 @@ }, { "str": "tower", - "token_id": 13925, + "token_id": 13924, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127638,7 +127649,7 @@ }, { "str": ".", - "token_id": 13926, + "token_id": 13925, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127650,7 +127661,7 @@ }, { "str": "when", - "token_id": 13927, + "token_id": 13926, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127661,7 +127672,7 @@ }, { "str": "the", - "token_id": 13928, + "token_id": 13927, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127672,7 +127683,7 @@ }, { "str": "tower", - "token_id": 13929, + "token_id": 13928, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127683,7 +127694,7 @@ }, { "str": "is", - "token_id": 13930, + "token_id": 13929, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127694,7 +127705,7 @@ }, { "str": "controlled", - "token_id": 13931, + "token_id": 13930, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127705,7 +127716,7 @@ }, { "str": "by", - "token_id": 13932, + "token_id": 13931, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127716,7 +127727,7 @@ }, { "str": "one", - "token_id": 13933, + "token_id": 13932, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127727,7 +127738,7 @@ }, { "str": "team", - "token_id": 13934, + "token_id": 13933, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127738,7 +127749,7 @@ }, { "str": ",", - "token_id": 13935, + "token_id": 13934, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127749,7 +127760,7 @@ }, { "str": "it", - "token_id": 13936, + "token_id": 13935, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127760,7 +127771,7 @@ }, { "str": "moves", - "token_id": 13937, + "token_id": 13936, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127771,7 +127782,7 @@ }, { "str": "toward", - "token_id": 13938, + "token_id": 13937, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127784,7 +127795,7 @@ }, { "str": "team", - "token_id": 13939, + "token_id": 13938, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127797,7 +127808,7 @@ }, { "str": "'", - "token_id": 13940, + "token_id": 13939, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127808,7 +127819,7 @@ }, { "str": "s", - "token_id": 13941, + "token_id": 13940, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127819,7 +127830,7 @@ }, { "str": "goal", - "token_id": 13942, + "token_id": 13941, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127832,7 +127843,7 @@ }, { "str": "line", - "token_id": 13943, + "token_id": 13942, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127845,7 +127856,7 @@ }, { "str": ",", - "token_id": 13944, + "token_id": 13943, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127858,7 +127869,7 @@ }, { "str": "passing", - "token_id": 13945, + "token_id": 13944, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127872,7 +127883,7 @@ }, { "str": "checkpoints", - "token_id": 13946, + "token_id": 13945, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -127884,7 +127895,7 @@ }, { "str": "along", - "token_id": 13947, + "token_id": 13946, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127897,7 +127908,7 @@ }, { "str": "way", - "token_id": 13948, + "token_id": 13947, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127910,7 +127921,7 @@ }, { "str": ",", - "token_id": 13949, + "token_id": 13948, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127923,7 +127934,7 @@ }, { "str": "with", - "token_id": 13950, + "token_id": 13949, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127936,7 +127947,7 @@ }, { "str": "a", - "token_id": 13951, + "token_id": 13950, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127949,7 +127960,7 @@ }, { "str": "team", - "token_id": 13952, + "token_id": 13951, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127962,7 +127973,7 @@ }, { "str": "winning", - "token_id": 13953, + "token_id": 13952, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127975,7 +127986,7 @@ }, { "str": "when", - "token_id": 13954, + "token_id": 13953, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -127988,7 +127999,7 @@ }, { "str": "the", - "token_id": 13955, + "token_id": 13954, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -128001,7 +128012,7 @@ }, { "str": "tower", - "token_id": 13956, + "token_id": 13955, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -128014,7 +128025,7 @@ }, { "str": "reaches", - "token_id": 13957, + "token_id": 13956, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -128027,7 +128038,7 @@ }, { "str": "their", - "token_id": 13958, + "token_id": 13957, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -128040,7 +128051,7 @@ }, { "str": "goal", - "token_id": 13959, + "token_id": 13958, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128051,7 +128062,7 @@ }, { "str": "line", - "token_id": 13960, + "token_id": 13959, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128062,7 +128073,7 @@ }, { "str": "in", - "token_id": 13961, + "token_id": 13960, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128073,7 +128084,7 @@ }, { "str": "rainmaker", - "token_id": 13962, + "token_id": 13961, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128085,7 +128096,7 @@ }, { "str": ",", - "token_id": 13963, + "token_id": 13962, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128097,7 +128108,7 @@ }, { "str": "players", - "token_id": 13964, + "token_id": 13963, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128108,7 +128119,7 @@ }, { "str": "attempt", - "token_id": 13965, + "token_id": 13964, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128119,7 +128130,7 @@ }, { "str": "to", - "token_id": 13966, + "token_id": 13965, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128130,7 +128141,7 @@ }, { "str": "carry", - "token_id": 13967, + "token_id": 13966, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128141,7 +128152,7 @@ }, { "str": "the", - "token_id": 13968, + "token_id": 13967, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128152,7 +128163,7 @@ }, { "str": "rainmaker", - "token_id": 13969, + "token_id": 13968, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128163,7 +128174,7 @@ }, { "str": "item", - "token_id": 13970, + "token_id": 13969, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128175,7 +128186,7 @@ }, { "str": "from", - "token_id": 13971, + "token_id": 13970, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128186,7 +128197,7 @@ }, { "str": "the", - "token_id": 13972, + "token_id": 13971, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128198,7 +128209,7 @@ }, { "str": "center", - "token_id": 13973, + "token_id": 13972, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128210,7 +128221,7 @@ }, { "str": "of", - "token_id": 13974, + "token_id": 13973, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128222,7 +128233,7 @@ }, { "str": "the", - "token_id": 13975, + "token_id": 13974, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128234,7 +128245,7 @@ }, { "str": "map", - "token_id": 13976, + "token_id": 13975, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128246,7 +128257,7 @@ }, { "str": "to", - "token_id": 13977, + "token_id": 13976, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128257,7 +128268,7 @@ }, { "str": "a", - "token_id": 13978, + "token_id": 13977, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128269,7 +128280,7 @@ }, { "str": "pedestal", - "token_id": 13979, + "token_id": 13978, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128281,7 +128292,7 @@ }, { "str": "on", - "token_id": 13980, + "token_id": 13979, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128293,7 +128304,7 @@ }, { "str": "the", - "token_id": 13981, + "token_id": 13980, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128304,7 +128315,7 @@ }, { "str": "opponent", - "token_id": 13982, + "token_id": 13981, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128315,7 +128326,7 @@ }, { "str": "'", - "token_id": 13983, + "token_id": 13982, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128326,7 +128337,7 @@ }, { "str": "s", - "token_id": 13984, + "token_id": 13983, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128337,7 +128348,7 @@ }, { "str": "side", - "token_id": 13985, + "token_id": 13984, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128348,7 +128359,7 @@ }, { "str": "of", - "token_id": 13986, + "token_id": 13985, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128359,7 +128370,7 @@ }, { "str": "the", - "token_id": 13987, + "token_id": 13986, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128370,7 +128381,7 @@ }, { "str": "map", - "token_id": 13988, + "token_id": 13987, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128381,7 +128392,7 @@ }, { "str": ".", - "token_id": 13989, + "token_id": 13988, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128392,7 +128403,7 @@ }, { "str": "<", - "token_id": 13990, + "token_id": 13989, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128403,7 +128414,7 @@ }, { "str": "ref", - "token_id": 13991, + "token_id": 13990, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128414,7 +128425,7 @@ }, { "str": ">", - "token_id": 13992, + "token_id": 13991, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128425,7 +128436,7 @@ }, { "str": "{{", - "token_id": 13993, + "token_id": 13992, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128436,7 +128447,7 @@ }, { "str": "cite", - "token_id": 13994, + "token_id": 13993, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128447,7 +128458,7 @@ }, { "str": "web", - "token_id": 13995, + "token_id": 13994, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128458,7 +128469,7 @@ }, { "str": "|", - "token_id": 13996, + "token_id": 13995, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128469,7 +128480,7 @@ }, { "str": "last", - "token_id": 13997, + "token_id": 13996, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128480,7 +128491,7 @@ }, { "str": "=", - "token_id": 13998, + "token_id": 13997, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128491,7 +128502,7 @@ }, { "str": "biazzi", - "token_id": 13999, + "token_id": 13998, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128502,7 +128513,7 @@ }, { "str": "|", - "token_id": 14000, + "token_id": 13999, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128513,7 +128524,7 @@ }, { "str": "first", - "token_id": 14001, + "token_id": 14000, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128524,7 +128535,7 @@ }, { "str": "=", - "token_id": 14002, + "token_id": 14001, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128535,7 +128546,7 @@ }, { "str": "leonardo", - "token_id": 14003, + "token_id": 14002, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128546,7 +128557,7 @@ }, { "str": "|", - "token_id": 14004, + "token_id": 14003, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128557,7 +128568,7 @@ }, { "str": "date", - "token_id": 14005, + "token_id": 14004, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128568,7 +128579,7 @@ }, { "str": "=", - "token_id": 14006, + "token_id": 14005, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128579,7 +128590,7 @@ }, { "str": "2022", - "token_id": 14007, + "token_id": 14006, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128590,7 +128601,7 @@ }, { "str": "-", - "token_id": 14008, + "token_id": 14007, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -128603,7 +128614,7 @@ }, { "str": "09", - "token_id": 14009, + "token_id": 14008, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128615,7 +128626,7 @@ }, { "str": "-", - "token_id": 14010, + "token_id": 14009, "o_rev_id": 1115540281, "in": [ 1117591128, @@ -128628,7 +128639,7 @@ }, { "str": "09", - "token_id": 14011, + "token_id": 14010, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128640,7 +128651,7 @@ }, { "str": "|", - "token_id": 14012, + "token_id": 14011, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128651,7 +128662,7 @@ }, { "str": "title", - "token_id": 14013, + "token_id": 14012, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128662,7 +128673,7 @@ }, { "str": "=", - "token_id": 14014, + "token_id": 14013, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128673,7 +128684,7 @@ }, { "str": "anarchy", - "token_id": 14015, + "token_id": 14014, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128684,7 +128695,7 @@ }, { "str": "battles", - "token_id": 14016, + "token_id": 14015, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128695,7 +128706,7 @@ }, { "str": "in", - "token_id": 14017, + "token_id": 14016, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128706,7 +128717,7 @@ }, { "str": "splatoon", - "token_id": 14018, + "token_id": 14017, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128717,7 +128728,7 @@ }, { "str": "3", - "token_id": 14019, + "token_id": 14018, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128728,7 +128739,7 @@ }, { "str": "{{", - "token_id": 14020, + "token_id": 14019, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128739,7 +128750,7 @@ }, { "str": "!", - "token_id": 14021, + "token_id": 14020, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128750,7 +128761,7 @@ }, { "str": "}}", - "token_id": 14022, + "token_id": 14021, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128761,7 +128772,7 @@ }, { "str": "ranked", - "token_id": 14023, + "token_id": 14022, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128772,7 +128783,7 @@ }, { "str": "mode", - "token_id": 14024, + "token_id": 14023, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128783,7 +128794,7 @@ }, { "str": "explained", - "token_id": 14025, + "token_id": 14024, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128794,7 +128805,7 @@ }, { "str": "|", - "token_id": 14026, + "token_id": 14025, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128805,7 +128816,7 @@ }, { "str": "url", - "token_id": 14027, + "token_id": 14026, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128816,7 +128827,7 @@ }, { "str": "=", - "token_id": 14028, + "token_id": 14027, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128827,7 +128838,7 @@ }, { "str": "https", - "token_id": 14029, + "token_id": 14028, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128838,6 +128849,17 @@ }, { "str": ":", + "token_id": 14029, + "o_rev_id": 1115540281, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, + { + "str": "/", "token_id": 14030, "o_rev_id": 1115540281, "in": [ @@ -128858,20 +128880,9 @@ 1117588531 ] }, - { - "str": "/", - "token_id": 14032, - "o_rev_id": 1115540281, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, { "str": "dotesports", - "token_id": 14033, + "token_id": 14032, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128882,7 +128893,7 @@ }, { "str": ".", - "token_id": 14034, + "token_id": 14033, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128893,7 +128904,7 @@ }, { "str": "com", - "token_id": 14035, + "token_id": 14034, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128904,7 +128915,7 @@ }, { "str": "/", - "token_id": 14036, + "token_id": 14035, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128915,7 +128926,7 @@ }, { "str": "splatoon", - "token_id": 14037, + "token_id": 14036, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128926,7 +128937,7 @@ }, { "str": "/", - "token_id": 14038, + "token_id": 14037, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128937,7 +128948,7 @@ }, { "str": "news", - "token_id": 14039, + "token_id": 14038, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128948,7 +128959,7 @@ }, { "str": "/", - "token_id": 14040, + "token_id": 14039, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128959,7 +128970,7 @@ }, { "str": "anarchy", - "token_id": 14041, + "token_id": 14040, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128970,7 +128981,7 @@ }, { "str": "-", - "token_id": 14042, + "token_id": 14041, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128981,7 +128992,7 @@ }, { "str": "battles", - "token_id": 14043, + "token_id": 14042, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -128992,7 +129003,7 @@ }, { "str": "-", - "token_id": 14044, + "token_id": 14043, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129003,7 +129014,7 @@ }, { "str": "in", - "token_id": 14045, + "token_id": 14044, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129014,7 +129025,7 @@ }, { "str": "-", - "token_id": 14046, + "token_id": 14045, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129025,7 +129036,7 @@ }, { "str": "splatoon", - "token_id": 14047, + "token_id": 14046, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129036,7 +129047,7 @@ }, { "str": "-", - "token_id": 14048, + "token_id": 14047, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129047,7 +129058,7 @@ }, { "str": "3", - "token_id": 14049, + "token_id": 14048, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129058,7 +129069,7 @@ }, { "str": "-", - "token_id": 14050, + "token_id": 14049, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129069,7 +129080,7 @@ }, { "str": "ranked", - "token_id": 14051, + "token_id": 14050, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129080,7 +129091,7 @@ }, { "str": "-", - "token_id": 14052, + "token_id": 14051, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129091,7 +129102,7 @@ }, { "str": "mode", - "token_id": 14053, + "token_id": 14052, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129102,7 +129113,7 @@ }, { "str": "-", - "token_id": 14054, + "token_id": 14053, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129113,7 +129124,7 @@ }, { "str": "explained", - "token_id": 14055, + "token_id": 14054, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129124,7 +129135,7 @@ }, { "str": "|", - "token_id": 14056, + "token_id": 14055, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129136,7 +129147,7 @@ }, { "str": "access", - "token_id": 14057, + "token_id": 14056, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129148,7 +129159,7 @@ }, { "str": "-", - "token_id": 14058, + "token_id": 14057, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129159,7 +129170,7 @@ }, { "str": "date", - "token_id": 14059, + "token_id": 14058, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129171,7 +129182,7 @@ }, { "str": "=", - "token_id": 14060, + "token_id": 14059, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129183,7 +129194,7 @@ }, { "str": "2022", - "token_id": 14061, + "token_id": 14060, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129194,7 +129205,7 @@ }, { "str": "-", - "token_id": 14062, + "token_id": 14061, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129205,7 +129216,7 @@ }, { "str": "10", - "token_id": 14063, + "token_id": 14062, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129217,7 +129228,7 @@ }, { "str": "-", - "token_id": 14064, + "token_id": 14063, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129228,7 +129239,7 @@ }, { "str": "12", - "token_id": 14065, + "token_id": 14064, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129240,7 +129251,7 @@ }, { "str": "|", - "token_id": 14066, + "token_id": 14065, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129252,7 +129263,7 @@ }, { "str": "website", - "token_id": 14067, + "token_id": 14066, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129264,7 +129275,7 @@ }, { "str": "=", - "token_id": 14068, + "token_id": 14067, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129276,7 +129287,7 @@ }, { "str": "dot", - "token_id": 14069, + "token_id": 14068, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129288,7 +129299,7 @@ }, { "str": "esports", - "token_id": 14070, + "token_id": 14069, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129300,7 +129311,7 @@ }, { "str": "|", - "token_id": 14071, + "token_id": 14070, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129312,7 +129323,7 @@ }, { "str": "language", - "token_id": 14072, + "token_id": 14071, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129324,7 +129335,7 @@ }, { "str": "=", - "token_id": 14073, + "token_id": 14072, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129336,7 +129347,7 @@ }, { "str": "en", - "token_id": 14074, + "token_id": 14073, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129348,7 +129359,7 @@ }, { "str": "-", - "token_id": 14075, + "token_id": 14074, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129359,7 +129370,7 @@ }, { "str": "us", - "token_id": 14076, + "token_id": 14075, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129371,7 +129382,7 @@ }, { "str": "}}", - "token_id": 14077, + "token_id": 14076, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129383,7 +129394,7 @@ }, { "str": "<", - "token_id": 14078, + "token_id": 14077, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129395,7 +129406,7 @@ }, { "str": "/", - "token_id": 14079, + "token_id": 14078, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129406,7 +129417,7 @@ }, { "str": "ref", - "token_id": 14080, + "token_id": 14079, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129418,7 +129429,7 @@ }, { "str": ">", - "token_id": 14081, + "token_id": 14080, "o_rev_id": 1115540281, "in": [ 1117591128 @@ -129430,7 +129441,7 @@ }, { "str": "and", - "token_id": 14082, + "token_id": 14081, "o_rev_id": 1115540281, "in": [], "out": [ @@ -129439,7 +129450,7 @@ }, { "str": "other", - "token_id": 14083, + "token_id": 14082, "o_rev_id": 1115540281, "in": [], "out": [ @@ -129448,7 +129459,7 @@ }, { "str": "also", - "token_id": 14084, + "token_id": 14083, "o_rev_id": 1115540281, "in": [], "out": [ @@ -129457,70 +129468,70 @@ }, { "str": "<", - "token_id": 14085, + "token_id": 14084, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": "ref", - "token_id": 14086, + "token_id": 14085, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": "name", - "token_id": 14087, + "token_id": 14086, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": "=", - "token_id": 14088, + "token_id": 14087, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": "\"", - "token_id": 14089, + "token_id": 14088, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": "eurog", - "token_id": 14090, + "token_id": 14089, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": "\"", - "token_id": 14091, + "token_id": 14090, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": "/", - "token_id": 14092, + "token_id": 14091, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": ">", - "token_id": 14093, + "token_id": 14092, "o_rev_id": 1115540281, "in": [], "out": [] }, { "str": "{{", - "token_id": 14094, + "token_id": 14093, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129529,7 +129540,7 @@ }, { "str": "use", - "token_id": 14095, + "token_id": 14094, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129538,7 +129549,7 @@ }, { "str": "american", - "token_id": 14096, + "token_id": 14095, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129547,7 +129558,7 @@ }, { "str": "english", - "token_id": 14097, + "token_id": 14096, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129556,7 +129567,7 @@ }, { "str": "|", - "token_id": 14098, + "token_id": 14097, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129565,7 +129576,7 @@ }, { "str": "date", - "token_id": 14099, + "token_id": 14098, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129574,7 +129585,7 @@ }, { "str": "=", - "token_id": 14100, + "token_id": 14099, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129583,7 +129594,7 @@ }, { "str": "october", - "token_id": 14101, + "token_id": 14100, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129592,7 +129603,7 @@ }, { "str": "2022", - "token_id": 14102, + "token_id": 14101, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129601,7 +129612,7 @@ }, { "str": "}}", - "token_id": 14103, + "token_id": 14102, "o_rev_id": 1115549519, "in": [], "out": [ @@ -129610,7 +129621,7 @@ }, { "str": "[[", - "token_id": 14104, + "token_id": 14103, "o_rev_id": 1115648734, "in": [ 1178773007 @@ -129621,7 +129632,7 @@ }, { "str": "splatoon", - "token_id": 14105, + "token_id": 14104, "o_rev_id": 1115648734, "in": [ 1178773007 @@ -129632,7 +129643,7 @@ }, { "str": "|", - "token_id": 14106, + "token_id": 14105, "o_rev_id": 1115648734, "in": [], "out": [ @@ -129641,7 +129652,7 @@ }, { "str": "]]", - "token_id": 14107, + "token_id": 14106, "o_rev_id": 1115648734, "in": [ 1178773007 @@ -129652,7 +129663,7 @@ }, { "str": "<", - "token_id": 14108, + "token_id": 14107, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129663,7 +129674,7 @@ }, { "str": "ref", - "token_id": 14109, + "token_id": 14108, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129674,7 +129685,7 @@ }, { "str": ">", - "token_id": 14110, + "token_id": 14109, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129685,7 +129696,7 @@ }, { "str": "{{", - "token_id": 14111, + "token_id": 14110, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129696,7 +129707,7 @@ }, { "str": "cite", - "token_id": 14112, + "token_id": 14111, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129707,7 +129718,7 @@ }, { "str": "web", - "token_id": 14113, + "token_id": 14112, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129718,7 +129729,7 @@ }, { "str": "|", - "token_id": 14114, + "token_id": 14113, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129730,7 +129741,7 @@ }, { "str": "last", - "token_id": 14115, + "token_id": 14114, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129742,7 +129753,7 @@ }, { "str": "=", - "token_id": 14116, + "token_id": 14115, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129754,7 +129765,7 @@ }, { "str": "mcwhertor", - "token_id": 14117, + "token_id": 14116, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129766,7 +129777,7 @@ }, { "str": "|", - "token_id": 14118, + "token_id": 14117, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129778,7 +129789,7 @@ }, { "str": "first", - "token_id": 14119, + "token_id": 14118, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129790,7 +129801,7 @@ }, { "str": "=", - "token_id": 14120, + "token_id": 14119, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129802,7 +129813,7 @@ }, { "str": "michael", - "token_id": 14121, + "token_id": 14120, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129814,7 +129825,7 @@ }, { "str": "|", - "token_id": 14122, + "token_id": 14121, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129825,7 +129836,7 @@ }, { "str": "date", - "token_id": 14123, + "token_id": 14122, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129836,7 +129847,7 @@ }, { "str": "=", - "token_id": 14124, + "token_id": 14123, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129847,7 +129858,7 @@ }, { "str": "2022", - "token_id": 14125, + "token_id": 14124, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129858,19 +129869,18 @@ }, { "str": "-", - "token_id": 14126, + "token_id": 14125, "o_rev_id": 1115653424, "in": [ 1117591128 ], "out": [ - 1117588531, - 1168453704 + 1117588531 ] }, { "str": "08", - "token_id": 14127, + "token_id": 14126, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129882,19 +129892,18 @@ }, { "str": "-", - "token_id": 14128, + "token_id": 14127, "o_rev_id": 1115653424, "in": [ 1117591128 ], "out": [ - 1117588531, - 1168453704 + 1117588531 ] }, { "str": "10", - "token_id": 14129, + "token_id": 14128, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129905,7 +129914,7 @@ }, { "str": "|", - "token_id": 14130, + "token_id": 14129, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129916,7 +129925,7 @@ }, { "str": "title", - "token_id": 14131, + "token_id": 14130, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129927,7 +129936,7 @@ }, { "str": "=", - "token_id": 14132, + "token_id": 14131, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129938,7 +129947,7 @@ }, { "str": "splatoon", - "token_id": 14133, + "token_id": 14132, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129949,7 +129958,7 @@ }, { "str": "’", - "token_id": 14134, + "token_id": 14133, "o_rev_id": 1115653424, "in": [], "out": [ @@ -129958,7 +129967,7 @@ }, { "str": "s", - "token_id": 14135, + "token_id": 14134, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129970,7 +129979,7 @@ }, { "str": "splatfest", - "token_id": 14136, + "token_id": 14135, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129982,7 +129991,7 @@ }, { "str": "returns", - "token_id": 14137, + "token_id": 14136, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -129994,7 +130003,7 @@ }, { "str": "with", - "token_id": 14138, + "token_id": 14137, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130006,7 +130015,7 @@ }, { "str": "a", - "token_id": 14139, + "token_id": 14138, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130018,7 +130027,7 @@ }, { "str": "4v2v2", - "token_id": 14140, + "token_id": 14139, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130030,7 +130039,7 @@ }, { "str": "twist", - "token_id": 14141, + "token_id": 14140, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130042,7 +130051,7 @@ }, { "str": "in", - "token_id": 14142, + "token_id": 14141, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130054,7 +130063,7 @@ }, { "str": "splatoon", - "token_id": 14143, + "token_id": 14142, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130066,20 +130075,18 @@ }, { "str": "3", - "token_id": 14144, + "token_id": 14143, "o_rev_id": 1115653424, "in": [ - 1117591128, - 1202097960 + 1117591128 ], "out": [ - 1117588531, - 1202071552 + 1117588531 ] }, { "str": "|", - "token_id": 14145, + "token_id": 14144, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130090,7 +130097,7 @@ }, { "str": "url", - "token_id": 14146, + "token_id": 14145, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130101,7 +130108,7 @@ }, { "str": "=", - "token_id": 14147, + "token_id": 14146, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130112,7 +130119,7 @@ }, { "str": "https", - "token_id": 14148, + "token_id": 14147, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130123,6 +130130,17 @@ }, { "str": ":", + "token_id": 14148, + "o_rev_id": 1115653424, + "in": [ + 1117591128 + ], + "out": [ + 1117588531 + ] + }, + { + "str": "/", "token_id": 14149, "o_rev_id": 1115653424, "in": [ @@ -130143,20 +130161,9 @@ 1117588531 ] }, - { - "str": "/", - "token_id": 14151, - "o_rev_id": 1115653424, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, { "str": "www", - "token_id": 14152, + "token_id": 14151, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130168,7 +130175,7 @@ }, { "str": ".", - "token_id": 14153, + "token_id": 14152, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130179,7 +130186,7 @@ }, { "str": "polygon", - "token_id": 14154, + "token_id": 14153, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130191,7 +130198,7 @@ }, { "str": ".", - "token_id": 14155, + "token_id": 14154, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130202,7 +130209,7 @@ }, { "str": "com", - "token_id": 14156, + "token_id": 14155, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130213,7 +130220,7 @@ }, { "str": "/", - "token_id": 14157, + "token_id": 14156, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130224,7 +130231,7 @@ }, { "str": "23299627", - "token_id": 14158, + "token_id": 14157, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130236,7 +130243,7 @@ }, { "str": "/", - "token_id": 14159, + "token_id": 14158, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130247,7 +130254,7 @@ }, { "str": "splatoon", - "token_id": 14160, + "token_id": 14159, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130259,7 +130266,7 @@ }, { "str": "-", - "token_id": 14161, + "token_id": 14160, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130270,7 +130277,7 @@ }, { "str": "3", - "token_id": 14162, + "token_id": 14161, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130282,7 +130289,7 @@ }, { "str": "-", - "token_id": 14163, + "token_id": 14162, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130293,7 +130300,7 @@ }, { "str": "splatfest", - "token_id": 14164, + "token_id": 14163, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130305,7 +130312,7 @@ }, { "str": "-", - "token_id": 14165, + "token_id": 14164, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130316,7 +130323,7 @@ }, { "str": "theme", - "token_id": 14166, + "token_id": 14165, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130328,7 +130335,7 @@ }, { "str": "-", - "token_id": 14167, + "token_id": 14166, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130339,7 +130346,7 @@ }, { "str": "demo", - "token_id": 14168, + "token_id": 14167, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130351,7 +130358,7 @@ }, { "str": "-", - "token_id": 14169, + "token_id": 14168, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130362,7 +130369,7 @@ }, { "str": "nintendo", - "token_id": 14170, + "token_id": 14169, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130374,7 +130381,7 @@ }, { "str": "-", - "token_id": 14171, + "token_id": 14170, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130385,7 +130392,7 @@ }, { "str": "switch", - "token_id": 14172, + "token_id": 14171, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130397,7 +130404,7 @@ }, { "str": "|", - "token_id": 14173, + "token_id": 14172, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130409,7 +130416,7 @@ }, { "str": "access", - "token_id": 14174, + "token_id": 14173, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130421,7 +130428,7 @@ }, { "str": "-", - "token_id": 14175, + "token_id": 14174, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130432,7 +130439,7 @@ }, { "str": "date", - "token_id": 14176, + "token_id": 14175, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130444,7 +130451,7 @@ }, { "str": "=", - "token_id": 14177, + "token_id": 14176, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130456,7 +130463,7 @@ }, { "str": "2022", - "token_id": 14178, + "token_id": 14177, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130468,7 +130475,7 @@ }, { "str": "-", - "token_id": 14179, + "token_id": 14178, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130479,7 +130486,7 @@ }, { "str": "10", - "token_id": 14180, + "token_id": 14179, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130491,7 +130498,7 @@ }, { "str": "-", - "token_id": 14181, + "token_id": 14180, "o_rev_id": 1115653424, "in": [ 1117591128, @@ -130504,7 +130511,7 @@ }, { "str": "12", - "token_id": 14182, + "token_id": 14181, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130516,7 +130523,7 @@ }, { "str": "|", - "token_id": 14183, + "token_id": 14182, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130527,7 +130534,7 @@ }, { "str": "website", - "token_id": 14184, + "token_id": 14183, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130539,7 +130546,7 @@ }, { "str": "=", - "token_id": 14185, + "token_id": 14184, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130550,7 +130557,7 @@ }, { "str": "polygon", - "token_id": 14186, + "token_id": 14185, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130562,7 +130569,7 @@ }, { "str": "|", - "token_id": 14187, + "token_id": 14186, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130574,7 +130581,7 @@ }, { "str": "language", - "token_id": 14188, + "token_id": 14187, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130586,7 +130593,7 @@ }, { "str": "=", - "token_id": 14189, + "token_id": 14188, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130598,7 +130605,7 @@ }, { "str": "en", - "token_id": 14190, + "token_id": 14189, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130610,7 +130617,7 @@ }, { "str": "-", - "token_id": 14191, + "token_id": 14190, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130622,7 +130629,7 @@ }, { "str": "us", - "token_id": 14192, + "token_id": 14191, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130634,7 +130641,7 @@ }, { "str": "}}", - "token_id": 14193, + "token_id": 14192, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130646,7 +130653,7 @@ }, { "str": "<", - "token_id": 14194, + "token_id": 14193, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130658,7 +130665,7 @@ }, { "str": "/", - "token_id": 14195, + "token_id": 14194, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130669,7 +130676,7 @@ }, { "str": "ref", - "token_id": 14196, + "token_id": 14195, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130681,7 +130688,7 @@ }, { "str": ">", - "token_id": 14197, + "token_id": 14196, "o_rev_id": 1115653424, "in": [ 1117591128 @@ -130693,169 +130700,161 @@ }, { "str": "marketing", - "token_id": 14198, + "token_id": 14197, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "and", - "token_id": 14199, + "token_id": 14198, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "release", - "token_id": 14200, + "token_id": 14199, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "<", - "token_id": 14201, + "token_id": 14200, "o_rev_id": 1115653424, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "ref", - "token_id": 14202, + "token_id": 14201, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ">", - "token_id": 14203, + "token_id": 14202, "o_rev_id": 1115653424, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "{{", - "token_id": 14204, + "token_id": 14203, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "cite", - "token_id": 14205, + "token_id": 14204, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "web", - "token_id": 14206, + "token_id": 14205, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14207, + "token_id": 14206, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "last", - "token_id": 14208, + "token_id": 14207, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14209, + "token_id": 14208, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "diaz", - "token_id": 14210, + "token_id": 14209, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14211, + "token_id": 14210, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "first", - "token_id": 14212, + "token_id": 14211, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14213, + "token_id": 14212, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "ana", - "token_id": 14214, + "token_id": 14213, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14215, + "token_id": 14214, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "date", - "token_id": 14216, + "token_id": 14215, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14217, + "token_id": 14216, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "2021", - "token_id": 14218, + "token_id": 14217, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14219, + "token_id": 14218, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "09", - "token_id": 14220, + "token_id": 14219, "o_rev_id": 1115653424, "in": [], "out": [ @@ -130864,7 +130863,7 @@ }, { "str": "-", - "token_id": 14221, + "token_id": 14220, "o_rev_id": 1115653424, "in": [], "out": [ @@ -130873,14 +130872,14 @@ }, { "str": "23", - "token_id": 14222, + "token_id": 14221, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14223, + "token_id": 14222, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -130891,14 +130890,18 @@ }, { "str": "title", - "token_id": 14224, + "token_id": 14223, "o_rev_id": 1115653424, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 14225, + "token_id": 14224, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -130909,28 +130912,36 @@ }, { "str": "splatoon", - "token_id": 14226, + "token_id": 14225, "o_rev_id": 1115653424, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "3", - "token_id": 14227, + "token_id": 14226, "o_rev_id": 1115653424, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "teases", - "token_id": 14228, + "token_id": 14227, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "the", - "token_id": 14229, + "token_id": 14228, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -130941,14 +130952,14 @@ }, { "str": "return", - "token_id": 14230, + "token_id": 14229, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "of", - "token_id": 14231, + "token_id": 14230, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -130959,14 +130970,14 @@ }, { "str": "mammals", - "token_id": 14232, + "token_id": 14231, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "in", - "token_id": 14233, + "token_id": 14232, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -130977,7 +130988,7 @@ }, { "str": "its", - "token_id": 14234, + "token_id": 14233, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -130988,14 +130999,14 @@ }, { "str": "squid", - "token_id": 14235, + "token_id": 14234, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14236, + "token_id": 14235, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131004,21 +131015,21 @@ }, { "str": "fueled", - "token_id": 14237, + "token_id": 14236, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "adventure", - "token_id": 14238, + "token_id": 14237, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14239, + "token_id": 14238, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -131029,14 +131040,18 @@ }, { "str": "url", - "token_id": 14240, + "token_id": 14239, "o_rev_id": 1115653424, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 14241, + "token_id": 14240, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -131047,7 +131062,7 @@ }, { "str": "|", - "token_id": 14242, + "token_id": 14241, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131056,7 +131071,7 @@ }, { "str": "access", - "token_id": 14243, + "token_id": 14242, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131065,14 +131080,14 @@ }, { "str": "-", - "token_id": 14244, + "token_id": 14243, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "date", - "token_id": 14245, + "token_id": 14244, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131081,7 +131096,7 @@ }, { "str": "=", - "token_id": 14246, + "token_id": 14245, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131090,7 +131105,7 @@ }, { "str": "2022", - "token_id": 14247, + "token_id": 14246, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -131101,14 +131116,14 @@ }, { "str": "-", - "token_id": 14248, + "token_id": 14247, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "10", - "token_id": 14249, + "token_id": 14248, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131117,14 +131132,14 @@ }, { "str": "-", - "token_id": 14250, + "token_id": 14249, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "12", - "token_id": 14251, + "token_id": 14250, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131133,7 +131148,7 @@ }, { "str": "|", - "token_id": 14252, + "token_id": 14251, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131142,7 +131157,7 @@ }, { "str": "website", - "token_id": 14253, + "token_id": 14252, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131151,7 +131166,7 @@ }, { "str": "=", - "token_id": 14254, + "token_id": 14253, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131160,7 +131175,7 @@ }, { "str": "polygon", - "token_id": 14255, + "token_id": 14254, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131169,14 +131184,14 @@ }, { "str": "|", - "token_id": 14256, + "token_id": 14255, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "language", - "token_id": 14257, + "token_id": 14256, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131185,14 +131200,14 @@ }, { "str": "=", - "token_id": 14258, + "token_id": 14257, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "en", - "token_id": 14259, + "token_id": 14258, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131201,14 +131216,14 @@ }, { "str": "-", - "token_id": 14260, + "token_id": 14259, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "us", - "token_id": 14261, + "token_id": 14260, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131217,42 +131232,42 @@ }, { "str": "}}", - "token_id": 14262, + "token_id": 14261, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "<", - "token_id": 14263, + "token_id": 14262, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14264, + "token_id": 14263, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "ref", - "token_id": 14265, + "token_id": 14264, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ">", - "token_id": 14266, + "token_id": 14265, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "additionally", - "token_id": 14267, + "token_id": 14266, "o_rev_id": 1115653424, "in": [ 1346787011 @@ -131263,7 +131278,7 @@ }, { "str": ",", - "token_id": 14268, + "token_id": 14267, "o_rev_id": 1115653424, "in": [ 1346787011 @@ -131274,7 +131289,7 @@ }, { "str": "[[", - "token_id": 14269, + "token_id": 14268, "o_rev_id": 1115653424, "in": [ 1346787011 @@ -131285,7 +131300,7 @@ }, { "str": "splatoon", - "token_id": 14270, + "token_id": 14269, "o_rev_id": 1115653424, "in": [ 1346787011 @@ -131296,7 +131311,7 @@ }, { "str": "2", - "token_id": 14271, + "token_id": 14270, "o_rev_id": 1115653424, "in": [ 1346787011 @@ -131307,7 +131322,7 @@ }, { "str": ":", - "token_id": 14272, + "token_id": 14271, "o_rev_id": 1115653424, "in": [ 1346787011 @@ -131318,21 +131333,21 @@ }, { "str": "octo", - "token_id": 14273, + "token_id": 14272, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "expansion", - "token_id": 14274, + "token_id": 14273, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14275, + "token_id": 14274, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131341,21 +131356,21 @@ }, { "str": "'", - "token_id": 14276, + "token_id": 14275, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "'", - "token_id": 14277, + "token_id": 14276, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14278, + "token_id": 14277, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131364,7 +131379,7 @@ }, { "str": "2", - "token_id": 14279, + "token_id": 14278, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131373,7 +131388,7 @@ }, { "str": "'", - "token_id": 14280, + "token_id": 14279, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131382,7 +131397,7 @@ }, { "str": "'", - "token_id": 14281, + "token_id": 14280, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131391,7 +131406,7 @@ }, { "str": "<", - "token_id": 14282, + "token_id": 14281, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131400,7 +131415,7 @@ }, { "str": "nowiki", - "token_id": 14283, + "token_id": 14282, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131409,7 +131424,7 @@ }, { "str": "/", - "token_id": 14284, + "token_id": 14283, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131418,7 +131433,7 @@ }, { "str": ">", - "token_id": 14285, + "token_id": 14284, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131427,7 +131442,7 @@ }, { "str": "'", - "token_id": 14286, + "token_id": 14285, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131436,7 +131451,7 @@ }, { "str": "s", - "token_id": 14287, + "token_id": 14286, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131445,7 +131460,7 @@ }, { "str": "'", - "token_id": 14288, + "token_id": 14287, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131454,7 +131469,7 @@ }, { "str": "'", - "token_id": 14289, + "token_id": 14288, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131463,7 +131478,7 @@ }, { "str": "octo", - "token_id": 14290, + "token_id": 14289, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131472,7 +131487,7 @@ }, { "str": "expansion", - "token_id": 14291, + "token_id": 14290, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131481,7 +131496,7 @@ }, { "str": "'", - "token_id": 14292, + "token_id": 14291, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131490,7 +131505,7 @@ }, { "str": "'", - "token_id": 14293, + "token_id": 14292, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131499,7 +131514,7 @@ }, { "str": "]]", - "token_id": 14294, + "token_id": 14293, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131508,224 +131523,224 @@ }, { "str": "was", - "token_id": 14295, + "token_id": 14294, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "announced", - "token_id": 14296, + "token_id": 14295, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "to", - "token_id": 14297, + "token_id": 14296, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "be", - "token_id": 14298, + "token_id": 14297, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "included", - "token_id": 14299, + "token_id": 14298, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "with", - "token_id": 14300, + "token_id": 14299, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "the", - "token_id": 14301, + "token_id": 14300, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "expansion", - "token_id": 14302, + "token_id": 14301, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "pack", - "token_id": 14303, + "token_id": 14302, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "tier", - "token_id": 14304, + "token_id": 14303, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "of", - "token_id": 14305, + "token_id": 14304, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "[[", - "token_id": 14306, + "token_id": 14305, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 14307, + "token_id": 14306, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "switch", - "token_id": 14308, + "token_id": 14307, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "online", - "token_id": 14309, + "token_id": 14308, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "]]", - "token_id": 14310, + "token_id": 14309, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ".", - "token_id": 14311, + "token_id": 14310, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "<", - "token_id": 14312, + "token_id": 14311, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "ref", - "token_id": 14313, + "token_id": 14312, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ">", - "token_id": 14314, + "token_id": 14313, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "{{", - "token_id": 14315, + "token_id": 14314, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "cite", - "token_id": 14316, + "token_id": 14315, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "web", - "token_id": 14317, + "token_id": 14316, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14318, + "token_id": 14317, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "last", - "token_id": 14319, + "token_id": 14318, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14320, + "token_id": 14319, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "ivan", - "token_id": 14321, + "token_id": 14320, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14322, + "token_id": 14321, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "first", - "token_id": 14323, + "token_id": 14322, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14324, + "token_id": 14323, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "tom", - "token_id": 14325, + "token_id": 14324, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14326, + "token_id": 14325, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -131736,14 +131751,14 @@ }, { "str": "date", - "token_id": 14327, + "token_id": 14326, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14328, + "token_id": 14327, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -131754,14 +131769,14 @@ }, { "str": "2022", - "token_id": 14329, + "token_id": 14328, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14330, + "token_id": 14329, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131770,7 +131785,7 @@ }, { "str": "04", - "token_id": 14331, + "token_id": 14330, "o_rev_id": 1115653424, "in": [], "out": [ @@ -131779,14 +131794,14 @@ }, { "str": "-", - "token_id": 14332, + "token_id": 14331, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "22", - "token_id": 14333, + "token_id": 14332, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -131797,341 +131812,338 @@ }, { "str": "|", - "token_id": 14334, + "token_id": 14333, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "title", - "token_id": 14335, + "token_id": 14334, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14336, + "token_id": 14335, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14337, + "token_id": 14336, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "3", - "token_id": 14338, + "token_id": 14337, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "gets", - "token_id": 14339, + "token_id": 14338, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "september", - "token_id": 14340, + "token_id": 14339, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "release", - "token_id": 14341, + "token_id": 14340, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "date", - "token_id": 14342, + "token_id": 14341, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "and", - "token_id": 14343, + "token_id": 14342, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "a", - "token_id": 14344, + "token_id": 14343, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "new", - "token_id": 14345, + "token_id": 14344, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "trailer", - "token_id": 14346, + "token_id": 14345, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14347, + "token_id": 14346, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "url", - "token_id": 14348, + "token_id": 14347, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14349, + "token_id": 14348, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "https", - "token_id": 14350, + "token_id": 14349, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ":", - "token_id": 14351, + "token_id": 14350, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14352, + "token_id": 14351, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14353, + "token_id": 14352, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "www", - "token_id": 14354, + "token_id": 14353, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ".", - "token_id": 14355, + "token_id": 14354, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "videogameschronicle", - "token_id": 14356, + "token_id": 14355, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ".", - "token_id": 14357, + "token_id": 14356, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "com", - "token_id": 14358, + "token_id": 14357, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14359, + "token_id": 14358, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "news", - "token_id": 14360, + "token_id": 14359, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14361, + "token_id": 14360, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14362, + "token_id": 14361, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14363, + "token_id": 14362, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "3", - "token_id": 14364, + "token_id": 14363, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14365, + "token_id": 14364, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "gets", - "token_id": 14366, + "token_id": 14365, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14367, + "token_id": 14366, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "september", - "token_id": 14368, + "token_id": 14367, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14369, + "token_id": 14368, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "release", - "token_id": 14370, + "token_id": 14369, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14371, + "token_id": 14370, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "date", - "token_id": 14372, + "token_id": 14371, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14373, + "token_id": 14372, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "and", - "token_id": 14374, + "token_id": 14373, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14375, + "token_id": 14374, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "new", - "token_id": 14376, + "token_id": 14375, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14377, + "token_id": 14376, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "trailer", - "token_id": 14378, + "token_id": 14377, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14379, + "token_id": 14378, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14380, + "token_id": 14379, "o_rev_id": 1115653424, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552, 1334188654 ] }, { "str": "access", - "token_id": 14381, + "token_id": 14380, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132140,14 +132152,14 @@ }, { "str": "-", - "token_id": 14382, + "token_id": 14381, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "date", - "token_id": 14383, + "token_id": 14382, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132156,19 +132168,16 @@ }, { "str": "=", - "token_id": 14384, + "token_id": 14383, "o_rev_id": 1115653424, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552, 1334188654 ] }, { "str": "2022", - "token_id": 14385, + "token_id": 14384, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132177,14 +132186,16 @@ }, { "str": "-", - "token_id": 14386, + "token_id": 14385, "o_rev_id": 1115653424, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "10", - "token_id": 14387, + "token_id": 14386, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132193,7 +132204,7 @@ }, { "str": "-", - "token_id": 14388, + "token_id": 14387, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132202,7 +132213,7 @@ }, { "str": "12", - "token_id": 14389, + "token_id": 14388, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132211,7 +132222,7 @@ }, { "str": "|", - "token_id": 14390, + "token_id": 14389, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132220,7 +132231,7 @@ }, { "str": "website", - "token_id": 14391, + "token_id": 14390, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132229,7 +132240,7 @@ }, { "str": "=", - "token_id": 14392, + "token_id": 14391, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132238,7 +132249,7 @@ }, { "str": "vgc", - "token_id": 14393, + "token_id": 14392, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132247,7 +132258,7 @@ }, { "str": "|", - "token_id": 14394, + "token_id": 14393, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132256,7 +132267,7 @@ }, { "str": "language", - "token_id": 14395, + "token_id": 14394, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132265,7 +132276,7 @@ }, { "str": "=", - "token_id": 14396, + "token_id": 14395, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132274,7 +132285,7 @@ }, { "str": "en", - "token_id": 14397, + "token_id": 14396, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132283,16 +132294,14 @@ }, { "str": "-", - "token_id": 14398, + "token_id": 14397, "o_rev_id": 1115653424, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "gb", - "token_id": 14399, + "token_id": 14398, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132301,7 +132310,7 @@ }, { "str": "}}", - "token_id": 14400, + "token_id": 14399, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132310,7 +132319,7 @@ }, { "str": "<", - "token_id": 14401, + "token_id": 14400, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132319,7 +132328,7 @@ }, { "str": "/", - "token_id": 14402, + "token_id": 14401, "o_rev_id": 1115653424, "in": [ 1178773007 @@ -132330,7 +132339,7 @@ }, { "str": "ref", - "token_id": 14403, + "token_id": 14402, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132339,7 +132348,7 @@ }, { "str": ">", - "token_id": 14404, + "token_id": 14403, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132348,49 +132357,49 @@ }, { "str": ">", - "token_id": 14405, + "token_id": 14404, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "in", - "token_id": 14406, + "token_id": 14405, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "a", - "token_id": 14407, + "token_id": 14406, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "trailer", - "token_id": 14408, + "token_id": 14407, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "on", - "token_id": 14409, + "token_id": 14408, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "11", - "token_id": 14410, + "token_id": 14409, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "october", - "token_id": 14411, + "token_id": 14410, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -132401,143 +132410,137 @@ }, { "str": "2022", - "token_id": 14412, + "token_id": 14411, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ",", - "token_id": 14413, + "token_id": 14412, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "it", - "token_id": 14414, + "token_id": 14413, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "was", - "token_id": 14415, + "token_id": 14414, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "announced", - "token_id": 14416, + "token_id": 14415, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "that", - "token_id": 14417, + "token_id": 14416, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "the", - "token_id": 14418, + "token_id": 14417, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "'", - "token_id": 14419, + "token_id": 14418, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "'", - "token_id": 14420, + "token_id": 14419, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14421, + "token_id": 14420, "o_rev_id": 1115653424, "in": [ - 1202097960, 1216768014 ], "out": [ - 1202071552, 1216767975 ] }, { "str": "3", - "token_id": 14422, + "token_id": 14421, "o_rev_id": 1115653424, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "'", - "token_id": 14423, + "token_id": 14422, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "'", - "token_id": 14424, + "token_id": 14423, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "amiibo", - "token_id": 14425, + "token_id": 14424, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "would", - "token_id": 14426, + "token_id": 14425, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "launch", - "token_id": 14427, + "token_id": 14426, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "on", - "token_id": 14428, + "token_id": 14427, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "11", - "token_id": 14429, + "token_id": 14428, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "october", - "token_id": 14430, + "token_id": 14429, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132546,7 +132549,7 @@ }, { "str": ".", - "token_id": 14431, + "token_id": 14430, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -132557,7 +132560,7 @@ }, { "str": "<", - "token_id": 14432, + "token_id": 14431, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -132568,14 +132571,18 @@ }, { "str": "ref", - "token_id": 14433, + "token_id": 14432, "o_rev_id": 1115653424, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": ">", - "token_id": 14434, + "token_id": 14433, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -132586,7 +132593,7 @@ }, { "str": "{{", - "token_id": 14435, + "token_id": 14434, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -132597,77 +132604,85 @@ }, { "str": "cite", - "token_id": 14436, + "token_id": 14435, "o_rev_id": 1115653424, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "web", - "token_id": 14437, + "token_id": 14436, "o_rev_id": 1115653424, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 14438, + "token_id": 14437, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "last", - "token_id": 14439, + "token_id": 14438, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14440, + "token_id": 14439, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "knezevic", - "token_id": 14441, + "token_id": 14440, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14442, + "token_id": 14441, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "first", - "token_id": 14443, + "token_id": 14442, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14444, + "token_id": 14443, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "kevin", - "token_id": 14445, + "token_id": 14444, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14446, + "token_id": 14445, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -132678,39 +132693,35 @@ }, { "str": "date", - "token_id": 14447, + "token_id": 14446, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14448, + "token_id": 14447, "o_rev_id": 1115653424, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "2022", - "token_id": 14449, + "token_id": 14448, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14450, + "token_id": 14449, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "10", - "token_id": 14451, + "token_id": 14450, "o_rev_id": 1115653424, "in": [], "out": [ @@ -132719,7 +132730,7 @@ }, { "str": "-", - "token_id": 14452, + "token_id": 14451, "o_rev_id": 1115653424, "in": [ 1202097960 @@ -132730,406 +132741,406 @@ }, { "str": "11", - "token_id": 14453, + "token_id": 14452, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14454, + "token_id": 14453, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "title", - "token_id": 14455, + "token_id": 14454, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14456, + "token_id": 14455, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14457, + "token_id": 14456, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "3", - "token_id": 14458, + "token_id": 14457, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "amiibo", - "token_id": 14459, + "token_id": 14458, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "figures", - "token_id": 14460, + "token_id": 14459, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "launch", - "token_id": 14461, + "token_id": 14460, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "nov", - "token_id": 14462, + "token_id": 14461, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ".", - "token_id": 14463, + "token_id": 14462, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "11", - "token_id": 14464, + "token_id": 14463, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ",", - "token_id": 14465, + "token_id": 14464, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "unlock", - "token_id": 14466, + "token_id": 14465, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "new", - "token_id": 14467, + "token_id": 14466, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "gear", - "token_id": 14468, + "token_id": 14467, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "sets", - "token_id": 14469, + "token_id": 14468, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14470, + "token_id": 14469, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "url", - "token_id": 14471, + "token_id": 14470, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14472, + "token_id": 14471, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "https", - "token_id": 14473, + "token_id": 14472, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ":", - "token_id": 14474, + "token_id": 14473, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14475, + "token_id": 14474, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14476, + "token_id": 14475, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "www", - "token_id": 14477, + "token_id": 14476, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ".", - "token_id": 14478, + "token_id": 14477, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "cnet", - "token_id": 14479, + "token_id": 14478, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": ".", - "token_id": 14480, + "token_id": 14479, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "com", - "token_id": 14481, + "token_id": 14480, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14482, + "token_id": 14481, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "tech", - "token_id": 14483, + "token_id": 14482, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14484, + "token_id": 14483, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "gaming", - "token_id": 14485, + "token_id": 14484, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14486, + "token_id": 14485, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14487, + "token_id": 14486, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14488, + "token_id": 14487, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "3", - "token_id": 14489, + "token_id": 14488, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14490, + "token_id": 14489, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "amiibo", - "token_id": 14491, + "token_id": 14490, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14492, + "token_id": 14491, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "figures", - "token_id": 14493, + "token_id": 14492, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14494, + "token_id": 14493, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "launch", - "token_id": 14495, + "token_id": 14494, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14496, + "token_id": 14495, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "nov", - "token_id": 14497, + "token_id": 14496, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14498, + "token_id": 14497, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "11", - "token_id": 14499, + "token_id": 14498, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14500, + "token_id": 14499, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "unlock", - "token_id": 14501, + "token_id": 14500, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14502, + "token_id": 14501, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "new", - "token_id": 14503, + "token_id": 14502, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14504, + "token_id": 14503, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "gear", - "token_id": 14505, + "token_id": 14504, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "-", - "token_id": 14506, + "token_id": 14505, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "sets", - "token_id": 14507, + "token_id": 14506, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "/", - "token_id": 14508, + "token_id": 14507, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14509, + "token_id": 14508, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "access", - "token_id": 14510, + "token_id": 14509, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133138,35 +133149,39 @@ }, { "str": "-", - "token_id": 14511, + "token_id": 14510, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "date", - "token_id": 14512, + "token_id": 14511, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "=", - "token_id": 14513, + "token_id": 14512, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "2022", - "token_id": 14514, + "token_id": 14513, "o_rev_id": 1115653424, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 14515, + "token_id": 14514, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133175,7 +133190,7 @@ }, { "str": "10", - "token_id": 14516, + "token_id": 14515, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133184,14 +133199,14 @@ }, { "str": "-", - "token_id": 14517, + "token_id": 14516, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "12", - "token_id": 14518, + "token_id": 14517, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133200,14 +133215,14 @@ }, { "str": "|", - "token_id": 14519, + "token_id": 14518, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "website", - "token_id": 14520, + "token_id": 14519, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133216,21 +133231,21 @@ }, { "str": "=", - "token_id": 14521, + "token_id": 14520, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "cnet", - "token_id": 14522, + "token_id": 14521, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "|", - "token_id": 14523, + "token_id": 14522, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133239,7 +133254,7 @@ }, { "str": "language", - "token_id": 14524, + "token_id": 14523, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133248,7 +133263,7 @@ }, { "str": "=", - "token_id": 14525, + "token_id": 14524, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133257,14 +133272,14 @@ }, { "str": "en", - "token_id": 14526, + "token_id": 14525, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "}}", - "token_id": 14527, + "token_id": 14526, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133273,7 +133288,7 @@ }, { "str": "<", - "token_id": 14528, + "token_id": 14527, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133282,14 +133297,14 @@ }, { "str": "/", - "token_id": 14529, + "token_id": 14528, "o_rev_id": 1115653424, "in": [], "out": [] }, { "str": "ref", - "token_id": 14530, + "token_id": 14529, "o_rev_id": 1115653424, "in": [], "out": [ @@ -133298,21 +133313,21 @@ }, { "str": "'", - "token_id": 14531, + "token_id": 14530, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14532, + "token_id": 14531, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14533, + "token_id": 14532, "o_rev_id": 1115655341, "in": [ 1216768014 @@ -133323,224 +133338,224 @@ }, { "str": "3", - "token_id": 14534, + "token_id": 14533, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14535, + "token_id": 14534, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14536, + "token_id": 14535, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "was", - "token_id": 14537, + "token_id": 14536, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "developed", - "token_id": 14538, + "token_id": 14537, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "by", - "token_id": 14539, + "token_id": 14538, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "[[", - "token_id": 14540, + "token_id": 14539, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 14541, + "token_id": 14540, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "epd", - "token_id": 14542, + "token_id": 14541, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "]]", - "token_id": 14543, + "token_id": 14542, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ",", - "token_id": 14544, + "token_id": 14543, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "with", - "token_id": 14545, + "token_id": 14544, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "additional", - "token_id": 14546, + "token_id": 14545, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "work", - "token_id": 14547, + "token_id": 14546, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "done", - "token_id": 14548, + "token_id": 14547, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "by", - "token_id": 14549, + "token_id": 14548, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "[[", - "token_id": 14550, + "token_id": 14549, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "monolith", - "token_id": 14551, + "token_id": 14550, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "soft", - "token_id": 14552, + "token_id": 14551, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "]]", - "token_id": 14553, + "token_id": 14552, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ",", - "token_id": 14554, + "token_id": 14553, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "who", - "token_id": 14555, + "token_id": 14554, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "also", - "token_id": 14556, + "token_id": 14555, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "assisted", - "token_id": 14557, + "token_id": 14556, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "in", - "token_id": 14558, + "token_id": 14557, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 14559, + "token_id": 14558, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "development", - "token_id": 14560, + "token_id": 14559, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "of", - "token_id": 14561, + "token_id": 14560, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "previous", - "token_id": 14562, + "token_id": 14561, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14563, + "token_id": 14562, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14564, + "token_id": 14563, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14565, + "token_id": 14564, "o_rev_id": 1115655341, "in": [ 1216768014 @@ -133551,56 +133566,56 @@ }, { "str": "'", - "token_id": 14566, + "token_id": 14565, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14567, + "token_id": 14566, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "games", - "token_id": 14568, + "token_id": 14567, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 14569, + "token_id": 14568, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "<", - "token_id": 14570, + "token_id": 14569, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 14571, + "token_id": 14570, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ">", - "token_id": 14572, + "token_id": 14571, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "{{", - "token_id": 14573, + "token_id": 14572, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133609,7 +133624,7 @@ }, { "str": "cite", - "token_id": 14574, + "token_id": 14573, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133618,7 +133633,7 @@ }, { "str": "web", - "token_id": 14575, + "token_id": 14574, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133627,7 +133642,7 @@ }, { "str": "|", - "token_id": 14576, + "token_id": 14575, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133636,7 +133651,7 @@ }, { "str": "last", - "token_id": 14577, + "token_id": 14576, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133645,7 +133660,7 @@ }, { "str": "=", - "token_id": 14578, + "token_id": 14577, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133654,7 +133669,7 @@ }, { "str": "wood", - "token_id": 14579, + "token_id": 14578, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133663,7 +133678,7 @@ }, { "str": "|", - "token_id": 14580, + "token_id": 14579, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133672,7 +133687,7 @@ }, { "str": "first", - "token_id": 14581, + "token_id": 14580, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133681,7 +133696,7 @@ }, { "str": "=", - "token_id": 14582, + "token_id": 14581, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133690,7 +133705,7 @@ }, { "str": "wood", - "token_id": 14583, + "token_id": 14582, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133699,7 +133714,7 @@ }, { "str": "|", - "token_id": 14584, + "token_id": 14583, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133708,7 +133723,7 @@ }, { "str": "date", - "token_id": 14585, + "token_id": 14584, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133717,7 +133732,7 @@ }, { "str": "=", - "token_id": 14586, + "token_id": 14585, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133726,7 +133741,7 @@ }, { "str": "2022", - "token_id": 14587, + "token_id": 14586, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133735,7 +133750,7 @@ }, { "str": "-", - "token_id": 14588, + "token_id": 14587, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133744,7 +133759,7 @@ }, { "str": "09", - "token_id": 14589, + "token_id": 14588, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133753,7 +133768,7 @@ }, { "str": "-", - "token_id": 14590, + "token_id": 14589, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133762,7 +133777,7 @@ }, { "str": "12", - "token_id": 14591, + "token_id": 14590, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133771,7 +133786,7 @@ }, { "str": "|", - "token_id": 14592, + "token_id": 14591, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133780,7 +133795,7 @@ }, { "str": "title", - "token_id": 14593, + "token_id": 14592, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133789,7 +133804,7 @@ }, { "str": "=", - "token_id": 14594, + "token_id": 14593, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133798,7 +133813,7 @@ }, { "str": "xenoblade", - "token_id": 14595, + "token_id": 14594, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133807,7 +133822,7 @@ }, { "str": "chronicles", - "token_id": 14596, + "token_id": 14595, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133816,7 +133831,7 @@ }, { "str": "3", - "token_id": 14597, + "token_id": 14596, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133825,7 +133840,7 @@ }, { "str": "creator", - "token_id": 14598, + "token_id": 14597, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133834,7 +133849,7 @@ }, { "str": "boosted", - "token_id": 14599, + "token_id": 14598, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133843,7 +133858,7 @@ }, { "str": "splatoon", - "token_id": 14600, + "token_id": 14599, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133852,7 +133867,7 @@ }, { "str": "3", - "token_id": 14601, + "token_id": 14600, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133861,7 +133876,7 @@ }, { "str": "during", - "token_id": 14602, + "token_id": 14601, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133870,7 +133885,7 @@ }, { "str": "development", - "token_id": 14603, + "token_id": 14602, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133879,7 +133894,7 @@ }, { "str": "|", - "token_id": 14604, + "token_id": 14603, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133888,7 +133903,7 @@ }, { "str": "url", - "token_id": 14605, + "token_id": 14604, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133897,7 +133912,7 @@ }, { "str": "=", - "token_id": 14606, + "token_id": 14605, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133906,7 +133921,7 @@ }, { "str": "https", - "token_id": 14607, + "token_id": 14606, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133915,7 +133930,7 @@ }, { "str": ":", - "token_id": 14608, + "token_id": 14607, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133924,7 +133939,7 @@ }, { "str": "/", - "token_id": 14609, + "token_id": 14608, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133933,7 +133948,7 @@ }, { "str": "/", - "token_id": 14610, + "token_id": 14609, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133942,7 +133957,7 @@ }, { "str": "www", - "token_id": 14611, + "token_id": 14610, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133951,7 +133966,7 @@ }, { "str": ".", - "token_id": 14612, + "token_id": 14611, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133960,7 +133975,7 @@ }, { "str": "techradar", - "token_id": 14613, + "token_id": 14612, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133969,7 +133984,7 @@ }, { "str": ".", - "token_id": 14614, + "token_id": 14613, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133978,7 +133993,7 @@ }, { "str": "com", - "token_id": 14615, + "token_id": 14614, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133987,7 +134002,7 @@ }, { "str": "/", - "token_id": 14616, + "token_id": 14615, "o_rev_id": 1115655341, "in": [], "out": [ @@ -133996,7 +134011,7 @@ }, { "str": "news", - "token_id": 14617, + "token_id": 14616, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134005,7 +134020,7 @@ }, { "str": "/", - "token_id": 14618, + "token_id": 14617, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134014,7 +134029,7 @@ }, { "str": "xenoblade", - "token_id": 14619, + "token_id": 14618, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134023,7 +134038,7 @@ }, { "str": "-", - "token_id": 14620, + "token_id": 14619, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134032,7 +134047,7 @@ }, { "str": "chronicles", - "token_id": 14621, + "token_id": 14620, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134041,7 +134056,7 @@ }, { "str": "-", - "token_id": 14622, + "token_id": 14621, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134050,7 +134065,7 @@ }, { "str": "3", - "token_id": 14623, + "token_id": 14622, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134059,7 +134074,7 @@ }, { "str": "-", - "token_id": 14624, + "token_id": 14623, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134068,7 +134083,7 @@ }, { "str": "creator", - "token_id": 14625, + "token_id": 14624, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134077,7 +134092,7 @@ }, { "str": "-", - "token_id": 14626, + "token_id": 14625, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134086,7 +134101,7 @@ }, { "str": "boosted", - "token_id": 14627, + "token_id": 14626, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134095,7 +134110,7 @@ }, { "str": "-", - "token_id": 14628, + "token_id": 14627, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134104,7 +134119,7 @@ }, { "str": "splatoon", - "token_id": 14629, + "token_id": 14628, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134113,7 +134128,7 @@ }, { "str": "-", - "token_id": 14630, + "token_id": 14629, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134122,7 +134137,7 @@ }, { "str": "3", - "token_id": 14631, + "token_id": 14630, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134131,7 +134146,7 @@ }, { "str": "-", - "token_id": 14632, + "token_id": 14631, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134140,7 +134155,7 @@ }, { "str": "during", - "token_id": 14633, + "token_id": 14632, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134149,7 +134164,7 @@ }, { "str": "-", - "token_id": 14634, + "token_id": 14633, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134158,7 +134173,7 @@ }, { "str": "development", - "token_id": 14635, + "token_id": 14634, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134167,28 +134182,28 @@ }, { "str": "|", - "token_id": 14636, + "token_id": 14635, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "access", - "token_id": 14637, + "token_id": 14636, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14638, + "token_id": 14637, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "date", - "token_id": 14639, + "token_id": 14638, "o_rev_id": 1115655341, "in": [ 1202097960 @@ -134199,14 +134214,14 @@ }, { "str": "=", - "token_id": 14640, + "token_id": 14639, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2022", - "token_id": 14641, + "token_id": 14640, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134215,14 +134230,14 @@ }, { "str": "-", - "token_id": 14642, + "token_id": 14641, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "10", - "token_id": 14643, + "token_id": 14642, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134231,56 +134246,56 @@ }, { "str": "-", - "token_id": 14644, + "token_id": 14643, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "12", - "token_id": 14645, + "token_id": 14644, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14646, + "token_id": 14645, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "website", - "token_id": 14647, + "token_id": 14646, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14648, + "token_id": 14647, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "techradar", - "token_id": 14649, + "token_id": 14648, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14650, + "token_id": 14649, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "language", - "token_id": 14651, + "token_id": 14650, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134289,14 +134304,14 @@ }, { "str": "=", - "token_id": 14652, + "token_id": 14651, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "en", - "token_id": 14653, + "token_id": 14652, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134305,7 +134320,7 @@ }, { "str": "}}", - "token_id": 14654, + "token_id": 14653, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134314,7 +134329,7 @@ }, { "str": "<", - "token_id": 14655, + "token_id": 14654, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134323,14 +134338,14 @@ }, { "str": "/", - "token_id": 14656, + "token_id": 14655, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 14657, + "token_id": 14656, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134339,7 +134354,7 @@ }, { "str": ">", - "token_id": 14658, + "token_id": 14657, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134348,21 +134363,21 @@ }, { "str": "<", - "token_id": 14659, + "token_id": 14658, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 14660, + "token_id": 14659, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ">", - "token_id": 14661, + "token_id": 14660, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134371,7 +134386,7 @@ }, { "str": "{{", - "token_id": 14662, + "token_id": 14661, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134380,7 +134395,7 @@ }, { "str": "cite", - "token_id": 14663, + "token_id": 14662, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134389,7 +134404,7 @@ }, { "str": "web", - "token_id": 14664, + "token_id": 14663, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134398,7 +134413,7 @@ }, { "str": "|", - "token_id": 14665, + "token_id": 14664, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134407,7 +134422,7 @@ }, { "str": "last", - "token_id": 14666, + "token_id": 14665, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134416,7 +134431,7 @@ }, { "str": "=", - "token_id": 14667, + "token_id": 14666, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134425,7 +134440,7 @@ }, { "str": "doolan", - "token_id": 14668, + "token_id": 14667, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134434,7 +134449,7 @@ }, { "str": "|", - "token_id": 14669, + "token_id": 14668, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134443,7 +134458,7 @@ }, { "str": "first", - "token_id": 14670, + "token_id": 14669, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134452,7 +134467,7 @@ }, { "str": "=", - "token_id": 14671, + "token_id": 14670, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134461,7 +134476,7 @@ }, { "str": "liam", - "token_id": 14672, + "token_id": 14671, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134470,7 +134485,7 @@ }, { "str": "|", - "token_id": 14673, + "token_id": 14672, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134479,7 +134494,7 @@ }, { "str": "date", - "token_id": 14674, + "token_id": 14673, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134488,7 +134503,7 @@ }, { "str": "=", - "token_id": 14675, + "token_id": 14674, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134497,7 +134512,7 @@ }, { "str": "2022", - "token_id": 14676, + "token_id": 14675, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134506,7 +134521,7 @@ }, { "str": "-", - "token_id": 14677, + "token_id": 14676, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134515,7 +134530,7 @@ }, { "str": "09", - "token_id": 14678, + "token_id": 14677, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134524,7 +134539,7 @@ }, { "str": "-", - "token_id": 14679, + "token_id": 14678, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134533,7 +134548,7 @@ }, { "str": "11", - "token_id": 14680, + "token_id": 14679, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134542,7 +134557,7 @@ }, { "str": "|", - "token_id": 14681, + "token_id": 14680, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134551,7 +134566,7 @@ }, { "str": "title", - "token_id": 14682, + "token_id": 14681, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134560,7 +134575,7 @@ }, { "str": "=", - "token_id": 14683, + "token_id": 14682, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134569,7 +134584,7 @@ }, { "str": "xenoblade", - "token_id": 14684, + "token_id": 14683, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134578,7 +134593,7 @@ }, { "str": "chronicles", - "token_id": 14685, + "token_id": 14684, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134587,7 +134602,7 @@ }, { "str": "studio", - "token_id": 14686, + "token_id": 14685, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134596,7 +134611,7 @@ }, { "str": "monolith", - "token_id": 14687, + "token_id": 14686, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134605,7 +134620,7 @@ }, { "str": "soft", - "token_id": 14688, + "token_id": 14687, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134614,7 +134629,7 @@ }, { "str": "helped", - "token_id": 14689, + "token_id": 14688, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134623,7 +134638,7 @@ }, { "str": "out", - "token_id": 14690, + "token_id": 14689, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134632,7 +134647,7 @@ }, { "str": "with", - "token_id": 14691, + "token_id": 14690, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134641,7 +134656,7 @@ }, { "str": "splatoon", - "token_id": 14692, + "token_id": 14691, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134650,7 +134665,7 @@ }, { "str": "3", - "token_id": 14693, + "token_id": 14692, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134659,7 +134674,7 @@ }, { "str": "|", - "token_id": 14694, + "token_id": 14693, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134668,7 +134683,7 @@ }, { "str": "url", - "token_id": 14695, + "token_id": 14694, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134677,7 +134692,7 @@ }, { "str": "=", - "token_id": 14696, + "token_id": 14695, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134686,7 +134701,7 @@ }, { "str": "https", - "token_id": 14697, + "token_id": 14696, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134695,7 +134710,7 @@ }, { "str": ":", - "token_id": 14698, + "token_id": 14697, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134704,14 +134719,14 @@ }, { "str": "/", - "token_id": 14699, + "token_id": 14698, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 14700, + "token_id": 14699, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134720,7 +134735,7 @@ }, { "str": "www", - "token_id": 14701, + "token_id": 14700, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134729,7 +134744,7 @@ }, { "str": ".", - "token_id": 14702, + "token_id": 14701, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134738,7 +134753,7 @@ }, { "str": "nintendolife", - "token_id": 14703, + "token_id": 14702, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134747,7 +134762,7 @@ }, { "str": ".", - "token_id": 14704, + "token_id": 14703, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134756,7 +134771,7 @@ }, { "str": "com", - "token_id": 14705, + "token_id": 14704, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134765,7 +134780,7 @@ }, { "str": "/", - "token_id": 14706, + "token_id": 14705, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134774,7 +134789,7 @@ }, { "str": "news", - "token_id": 14707, + "token_id": 14706, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134783,7 +134798,7 @@ }, { "str": "/", - "token_id": 14708, + "token_id": 14707, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134792,7 +134807,7 @@ }, { "str": "2022", - "token_id": 14709, + "token_id": 14708, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134801,7 +134816,7 @@ }, { "str": "/", - "token_id": 14710, + "token_id": 14709, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134810,7 +134825,7 @@ }, { "str": "09", - "token_id": 14711, + "token_id": 14710, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134819,7 +134834,7 @@ }, { "str": "/", - "token_id": 14712, + "token_id": 14711, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134828,7 +134843,7 @@ }, { "str": "xenoblade", - "token_id": 14713, + "token_id": 14712, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134837,7 +134852,7 @@ }, { "str": "-", - "token_id": 14714, + "token_id": 14713, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134846,7 +134861,7 @@ }, { "str": "chronicles", - "token_id": 14715, + "token_id": 14714, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134855,7 +134870,7 @@ }, { "str": "-", - "token_id": 14716, + "token_id": 14715, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134864,7 +134879,7 @@ }, { "str": "studio", - "token_id": 14717, + "token_id": 14716, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134873,7 +134888,7 @@ }, { "str": "-", - "token_id": 14718, + "token_id": 14717, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134882,7 +134897,7 @@ }, { "str": "monolith", - "token_id": 14719, + "token_id": 14718, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134891,7 +134906,7 @@ }, { "str": "-", - "token_id": 14720, + "token_id": 14719, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134900,7 +134915,7 @@ }, { "str": "soft", - "token_id": 14721, + "token_id": 14720, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134909,7 +134924,7 @@ }, { "str": "-", - "token_id": 14722, + "token_id": 14721, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134918,7 +134933,7 @@ }, { "str": "helped", - "token_id": 14723, + "token_id": 14722, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134927,7 +134942,7 @@ }, { "str": "-", - "token_id": 14724, + "token_id": 14723, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134936,7 +134951,7 @@ }, { "str": "out", - "token_id": 14725, + "token_id": 14724, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134945,7 +134960,7 @@ }, { "str": "-", - "token_id": 14726, + "token_id": 14725, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134954,7 +134969,7 @@ }, { "str": "with", - "token_id": 14727, + "token_id": 14726, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134963,7 +134978,7 @@ }, { "str": "-", - "token_id": 14728, + "token_id": 14727, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134972,7 +134987,7 @@ }, { "str": "splatoon", - "token_id": 14729, + "token_id": 14728, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134981,7 +134996,7 @@ }, { "str": "-", - "token_id": 14730, + "token_id": 14729, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134990,7 +135005,7 @@ }, { "str": "3", - "token_id": 14731, + "token_id": 14730, "o_rev_id": 1115655341, "in": [], "out": [ @@ -134999,7 +135014,7 @@ }, { "str": "|", - "token_id": 14732, + "token_id": 14731, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135008,7 +135023,7 @@ }, { "str": "access", - "token_id": 14733, + "token_id": 14732, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135017,21 +135032,21 @@ }, { "str": "-", - "token_id": 14734, + "token_id": 14733, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "date", - "token_id": 14735, + "token_id": 14734, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14736, + "token_id": 14735, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135040,7 +135055,7 @@ }, { "str": "2022", - "token_id": 14737, + "token_id": 14736, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135049,14 +135064,14 @@ }, { "str": "-", - "token_id": 14738, + "token_id": 14737, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "10", - "token_id": 14739, + "token_id": 14738, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135065,21 +135080,21 @@ }, { "str": "-", - "token_id": 14740, + "token_id": 14739, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "12", - "token_id": 14741, + "token_id": 14740, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14742, + "token_id": 14741, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135088,7 +135103,7 @@ }, { "str": "website", - "token_id": 14743, + "token_id": 14742, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135097,7 +135112,7 @@ }, { "str": "=", - "token_id": 14744, + "token_id": 14743, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135106,14 +135121,14 @@ }, { "str": "nintendo", - "token_id": 14745, + "token_id": 14744, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "life", - "token_id": 14746, + "token_id": 14745, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135122,7 +135137,7 @@ }, { "str": "|", - "token_id": 14747, + "token_id": 14746, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135131,7 +135146,7 @@ }, { "str": "language", - "token_id": 14748, + "token_id": 14747, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135140,7 +135155,7 @@ }, { "str": "=", - "token_id": 14749, + "token_id": 14748, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135149,21 +135164,21 @@ }, { "str": "en", - "token_id": 14750, + "token_id": 14749, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14751, + "token_id": 14750, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "gb", - "token_id": 14752, + "token_id": 14751, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135172,7 +135187,7 @@ }, { "str": "}}", - "token_id": 14753, + "token_id": 14752, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135181,7 +135196,7 @@ }, { "str": "<", - "token_id": 14754, + "token_id": 14753, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135190,14 +135205,14 @@ }, { "str": "/", - "token_id": 14755, + "token_id": 14754, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 14756, + "token_id": 14755, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135206,7 +135221,7 @@ }, { "str": ">", - "token_id": 14757, + "token_id": 14756, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135215,91 +135230,91 @@ }, { "str": "at", - "token_id": 14758, + "token_id": 14757, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "[[", - "token_id": 14759, + "token_id": 14758, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "e3", - "token_id": 14760, + "token_id": 14759, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2019", - "token_id": 14761, + "token_id": 14760, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "]]", - "token_id": 14762, + "token_id": 14761, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ",", - "token_id": 14763, + "token_id": 14762, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "after", - "token_id": 14764, + "token_id": 14763, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 14765, + "token_id": 14764, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "announcement", - "token_id": 14766, + "token_id": 14765, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "of", - "token_id": 14767, + "token_id": 14766, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14768, + "token_id": 14767, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14769, + "token_id": 14768, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14770, + "token_id": 14769, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135308,7 +135323,7 @@ }, { "str": "2", - "token_id": 14771, + "token_id": 14770, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135317,7 +135332,7 @@ }, { "str": "'", - "token_id": 14772, + "token_id": 14771, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135326,7 +135341,7 @@ }, { "str": "'", - "token_id": 14773, + "token_id": 14772, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135335,7 +135350,7 @@ }, { "str": "<", - "token_id": 14774, + "token_id": 14773, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135344,7 +135359,7 @@ }, { "str": "nowiki", - "token_id": 14775, + "token_id": 14774, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135353,7 +135368,7 @@ }, { "str": "/", - "token_id": 14776, + "token_id": 14775, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135362,7 +135377,7 @@ }, { "str": ">", - "token_id": 14777, + "token_id": 14776, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135371,105 +135386,105 @@ }, { "str": "'", - "token_id": 14778, + "token_id": 14777, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "s", - "token_id": 14779, + "token_id": 14778, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "final", - "token_id": 14780, + "token_id": 14779, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 14781, + "token_id": 14780, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ",", - "token_id": 14782, + "token_id": 14781, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "\"", - "token_id": 14783, + "token_id": 14782, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "chaos", - "token_id": 14784, + "token_id": 14783, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "vs", - "token_id": 14785, + "token_id": 14784, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 14786, + "token_id": 14785, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "order", - "token_id": 14787, + "token_id": 14786, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "\"", - "token_id": 14788, + "token_id": 14787, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ",", - "token_id": 14789, + "token_id": 14788, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14790, + "token_id": 14789, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14791, + "token_id": 14790, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14792, + "token_id": 14791, "o_rev_id": 1115655341, "in": [ 1216768014 @@ -135480,112 +135495,112 @@ }, { "str": "'", - "token_id": 14793, + "token_id": 14792, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14794, + "token_id": 14793, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "producer", - "token_id": 14795, + "token_id": 14794, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "hisashi", - "token_id": 14796, + "token_id": 14795, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "nogami", - "token_id": 14797, + "token_id": 14796, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "stated", - "token_id": 14798, + "token_id": 14797, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "that", - "token_id": 14799, + "token_id": 14798, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "a", - "token_id": 14800, + "token_id": 14799, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "third", - "token_id": 14801, + "token_id": 14800, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "entry", - "token_id": 14802, + "token_id": 14801, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "in", - "token_id": 14803, + "token_id": 14802, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 14804, + "token_id": 14803, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "series", - "token_id": 14805, + "token_id": 14804, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "was", - "token_id": 14806, + "token_id": 14805, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "not", - "token_id": 14807, + "token_id": 14806, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "currently", - "token_id": 14808, + "token_id": 14807, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135594,49 +135609,49 @@ }, { "str": "in", - "token_id": 14809, + "token_id": 14808, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "development", - "token_id": 14810, + "token_id": 14809, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 14811, + "token_id": 14810, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "<", - "token_id": 14812, + "token_id": 14811, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 14813, + "token_id": 14812, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ">", - "token_id": 14814, + "token_id": 14813, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "{{", - "token_id": 14815, + "token_id": 14814, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135645,14 +135660,14 @@ }, { "str": "cite", - "token_id": 14816, + "token_id": 14815, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "web", - "token_id": 14817, + "token_id": 14816, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135661,7 +135676,7 @@ }, { "str": "|", - "token_id": 14818, + "token_id": 14817, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135670,14 +135685,14 @@ }, { "str": "last", - "token_id": 14819, + "token_id": 14818, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14820, + "token_id": 14819, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135686,14 +135701,14 @@ }, { "str": "khan", - "token_id": 14821, + "token_id": 14820, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14822, + "token_id": 14821, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135702,14 +135717,14 @@ }, { "str": "first", - "token_id": 14823, + "token_id": 14822, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14824, + "token_id": 14823, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135718,14 +135733,14 @@ }, { "str": "imran", - "token_id": 14825, + "token_id": 14824, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14826, + "token_id": 14825, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135734,14 +135749,14 @@ }, { "str": "date", - "token_id": 14827, + "token_id": 14826, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14828, + "token_id": 14827, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135750,23 +135765,21 @@ }, { "str": "2019", - "token_id": 14829, + "token_id": 14828, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14830, + "token_id": 14829, "o_rev_id": 1115655341, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "07", - "token_id": 14831, + "token_id": 14830, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135775,23 +135788,21 @@ }, { "str": "-", - "token_id": 14832, + "token_id": 14831, "o_rev_id": 1115655341, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "18", - "token_id": 14833, + "token_id": 14832, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14834, + "token_id": 14833, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135800,14 +135811,14 @@ }, { "str": "title", - "token_id": 14835, + "token_id": 14834, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14836, + "token_id": 14835, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135816,77 +135827,77 @@ }, { "str": "splatoon", - "token_id": 14837, + "token_id": 14836, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "3", - "token_id": 14838, + "token_id": 14837, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "is", - "token_id": 14839, + "token_id": 14838, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "not", - "token_id": 14840, + "token_id": 14839, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "in", - "token_id": 14841, + "token_id": 14840, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "production", - "token_id": 14842, + "token_id": 14841, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "as", - "token_id": 14843, + "token_id": 14842, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "final", - "token_id": 14844, + "token_id": 14843, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 14845, + "token_id": 14844, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "begins", - "token_id": 14846, + "token_id": 14845, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14847, + "token_id": 14846, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135895,14 +135906,14 @@ }, { "str": "url", - "token_id": 14848, + "token_id": 14847, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14849, + "token_id": 14848, "o_rev_id": 1115655341, "in": [], "out": [ @@ -135911,252 +135922,252 @@ }, { "str": "https", - "token_id": 14850, + "token_id": 14849, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ":", - "token_id": 14851, + "token_id": 14850, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 14852, + "token_id": 14851, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 14853, + "token_id": 14852, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "www", - "token_id": 14854, + "token_id": 14853, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 14855, + "token_id": 14854, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "gameinformer", - "token_id": 14856, + "token_id": 14855, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 14857, + "token_id": 14856, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "com", - "token_id": 14858, + "token_id": 14857, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 14859, + "token_id": 14858, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2019", - "token_id": 14860, + "token_id": 14859, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 14861, + "token_id": 14860, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "07", - "token_id": 14862, + "token_id": 14861, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 14863, + "token_id": 14862, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "18", - "token_id": 14864, + "token_id": 14863, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 14865, + "token_id": 14864, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14866, + "token_id": 14865, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14867, + "token_id": 14866, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "3", - "token_id": 14868, + "token_id": 14867, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14869, + "token_id": 14868, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "is", - "token_id": 14870, + "token_id": 14869, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14871, + "token_id": 14870, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "not", - "token_id": 14872, + "token_id": 14871, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14873, + "token_id": 14872, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "in", - "token_id": 14874, + "token_id": 14873, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14875, + "token_id": 14874, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "production", - "token_id": 14876, + "token_id": 14875, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14877, + "token_id": 14876, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "as", - "token_id": 14878, + "token_id": 14877, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14879, + "token_id": 14878, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "final", - "token_id": 14880, + "token_id": 14879, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14881, + "token_id": 14880, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 14882, + "token_id": 14881, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14883, + "token_id": 14882, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "begins", - "token_id": 14884, + "token_id": 14883, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14885, + "token_id": 14884, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136165,28 +136176,28 @@ }, { "str": "access", - "token_id": 14886, + "token_id": 14885, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14887, + "token_id": 14886, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "date", - "token_id": 14888, + "token_id": 14887, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14889, + "token_id": 14888, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136195,7 +136206,7 @@ }, { "str": "2022", - "token_id": 14890, + "token_id": 14889, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136204,14 +136215,14 @@ }, { "str": "-", - "token_id": 14891, + "token_id": 14890, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "10", - "token_id": 14892, + "token_id": 14891, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136220,21 +136231,21 @@ }, { "str": "-", - "token_id": 14893, + "token_id": 14892, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "12", - "token_id": 14894, + "token_id": 14893, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14895, + "token_id": 14894, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136243,7 +136254,7 @@ }, { "str": "website", - "token_id": 14896, + "token_id": 14895, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136252,7 +136263,7 @@ }, { "str": "=", - "token_id": 14897, + "token_id": 14896, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136261,7 +136272,7 @@ }, { "str": "game", - "token_id": 14898, + "token_id": 14897, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136270,7 +136281,7 @@ }, { "str": "informer", - "token_id": 14899, + "token_id": 14898, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136279,7 +136290,7 @@ }, { "str": "|", - "token_id": 14900, + "token_id": 14899, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136288,14 +136299,14 @@ }, { "str": "language", - "token_id": 14901, + "token_id": 14900, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14902, + "token_id": 14901, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136304,14 +136315,14 @@ }, { "str": "en", - "token_id": 14903, + "token_id": 14902, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "}}", - "token_id": 14904, + "token_id": 14903, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136320,7 +136331,7 @@ }, { "str": "<", - "token_id": 14905, + "token_id": 14904, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136329,14 +136340,14 @@ }, { "str": "/", - "token_id": 14906, + "token_id": 14905, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 14907, + "token_id": 14906, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136345,7 +136356,7 @@ }, { "str": ">", - "token_id": 14908, + "token_id": 14907, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136354,168 +136365,168 @@ }, { "str": "in", - "token_id": 14909, + "token_id": 14908, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "an", - "token_id": 14910, + "token_id": 14909, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "\"", - "token_id": 14911, + "token_id": 14910, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ask", - "token_id": 14912, + "token_id": 14911, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 14913, + "token_id": 14912, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "developer", - "token_id": 14914, + "token_id": 14913, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "\"", - "token_id": 14915, + "token_id": 14914, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "interview", - "token_id": 14916, + "token_id": 14915, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "on", - "token_id": 14917, + "token_id": 14916, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 14918, + "token_id": 14917, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14919, + "token_id": 14918, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "s", - "token_id": 14920, + "token_id": 14919, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "website", - "token_id": 14921, + "token_id": 14920, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ",", - "token_id": 14922, + "token_id": 14921, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "it", - "token_id": 14923, + "token_id": 14922, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "was", - "token_id": 14924, + "token_id": 14923, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "revealed", - "token_id": 14925, + "token_id": 14924, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "that", - "token_id": 14926, + "token_id": 14925, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 14927, + "token_id": 14926, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "direction", - "token_id": 14928, + "token_id": 14927, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "of", - "token_id": 14929, + "token_id": 14928, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14930, + "token_id": 14929, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14931, + "token_id": 14930, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14932, + "token_id": 14931, "o_rev_id": 1115655341, "in": [ 1216768014 @@ -136526,28 +136537,28 @@ }, { "str": "3", - "token_id": 14933, + "token_id": 14932, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14934, + "token_id": 14933, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14935, + "token_id": 14934, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "<", - "token_id": 14936, + "token_id": 14935, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136556,7 +136567,7 @@ }, { "str": "nowiki", - "token_id": 14937, + "token_id": 14936, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136565,7 +136576,7 @@ }, { "str": "/", - "token_id": 14938, + "token_id": 14937, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136574,7 +136585,7 @@ }, { "str": ">", - "token_id": 14939, + "token_id": 14938, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136583,84 +136594,84 @@ }, { "str": "'", - "token_id": 14940, + "token_id": 14939, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "s", - "token_id": 14941, + "token_id": 14940, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "world", - "token_id": 14942, + "token_id": 14941, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "was", - "token_id": 14943, + "token_id": 14942, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "decided", - "token_id": 14944, + "token_id": 14943, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "after", - "token_id": 14945, + "token_id": 14944, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "team", - "token_id": 14946, + "token_id": 14945, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "chaos", - "token_id": 14947, + "token_id": 14946, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "won", - "token_id": 14948, + "token_id": 14947, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14949, + "token_id": 14948, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14950, + "token_id": 14949, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 14951, + "token_id": 14950, "o_rev_id": 1115655341, "in": [ 1216768014 @@ -136671,28 +136682,28 @@ }, { "str": "2", - "token_id": 14952, + "token_id": 14951, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14953, + "token_id": 14952, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 14954, + "token_id": 14953, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "<", - "token_id": 14955, + "token_id": 14954, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136701,7 +136712,7 @@ }, { "str": "nowiki", - "token_id": 14956, + "token_id": 14955, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136710,7 +136721,7 @@ }, { "str": "/", - "token_id": 14957, + "token_id": 14956, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136719,7 +136730,7 @@ }, { "str": ">", - "token_id": 14958, + "token_id": 14957, "o_rev_id": 1115655341, "in": [], "out": [ @@ -136728,273 +136739,273 @@ }, { "str": "'", - "token_id": 14959, + "token_id": 14958, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "s", - "token_id": 14960, + "token_id": 14959, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "final", - "token_id": 14961, + "token_id": 14960, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 14962, + "token_id": 14961, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ",", - "token_id": 14963, + "token_id": 14962, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "with", - "token_id": 14964, + "token_id": 14963, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 14965, + "token_id": 14964, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "developers", - "token_id": 14966, + "token_id": 14965, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "planning", - "token_id": 14967, + "token_id": 14966, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "for", - "token_id": 14968, + "token_id": 14967, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "both", - "token_id": 14969, + "token_id": 14968, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "outcomes", - "token_id": 14970, + "token_id": 14969, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "before", - "token_id": 14971, + "token_id": 14970, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 14972, + "token_id": 14971, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 14973, + "token_id": 14972, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "winner", - "token_id": 14974, + "token_id": 14973, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "was", - "token_id": 14975, + "token_id": 14974, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "decided", - "token_id": 14976, + "token_id": 14975, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 14977, + "token_id": 14976, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "<", - "token_id": 14978, + "token_id": 14977, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 14979, + "token_id": 14978, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ">", - "token_id": 14980, + "token_id": 14979, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "{{", - "token_id": 14981, + "token_id": 14980, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "cite", - "token_id": 14982, + "token_id": 14981, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "web", - "token_id": 14983, + "token_id": 14982, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14984, + "token_id": 14983, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "last", - "token_id": 14985, + "token_id": 14984, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14986, + "token_id": 14985, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "fields", - "token_id": 14987, + "token_id": 14986, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14988, + "token_id": 14987, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "first", - "token_id": 14989, + "token_id": 14988, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14990, + "token_id": 14989, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "sarah", - "token_id": 14991, + "token_id": 14990, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 14992, + "token_id": 14991, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "date", - "token_id": 14993, + "token_id": 14992, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 14994, + "token_id": 14993, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2022", - "token_id": 14995, + "token_id": 14994, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 14996, + "token_id": 14995, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "09", - "token_id": 14997, + "token_id": 14996, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137003,18 +137014,14 @@ }, { "str": "-", - "token_id": 14998, + "token_id": 14997, "o_rev_id": 1115655341, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "08", - "token_id": 14999, + "token_id": 14998, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137023,357 +137030,357 @@ }, { "str": "|", - "token_id": 15000, + "token_id": 14999, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "title", - "token_id": 15001, + "token_id": 15000, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 15002, + "token_id": 15001, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15003, + "token_id": 15002, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "3", - "token_id": 15004, + "token_id": 15003, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "dev", - "token_id": 15005, + "token_id": 15004, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "reveals", - "token_id": 15006, + "token_id": 15005, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "how", - "token_id": 15007, + "token_id": 15006, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15008, + "token_id": 15007, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2", - "token_id": 15009, + "token_id": 15008, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 15010, + "token_id": 15009, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "s", - "token_id": 15011, + "token_id": 15010, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "chaos", - "token_id": 15012, + "token_id": 15011, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "vs", - "token_id": 15013, + "token_id": 15012, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "order", - "token_id": 15014, + "token_id": 15013, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 15015, + "token_id": 15014, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "impacted", - "token_id": 15016, + "token_id": 15015, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "creative", - "token_id": 15017, + "token_id": 15016, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "direction", - "token_id": 15018, + "token_id": 15017, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "of", - "token_id": 15019, + "token_id": 15018, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 15020, + "token_id": 15019, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "sequel", - "token_id": 15021, + "token_id": 15020, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 15022, + "token_id": 15021, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "url", - "token_id": 15023, + "token_id": 15022, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 15024, + "token_id": 15023, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "https", - "token_id": 15025, + "token_id": 15024, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ":", - "token_id": 15026, + "token_id": 15025, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15027, + "token_id": 15026, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15028, + "token_id": 15027, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "gamerant", - "token_id": 15029, + "token_id": 15028, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 15030, + "token_id": 15029, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "com", - "token_id": 15031, + "token_id": 15030, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15032, + "token_id": 15031, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15033, + "token_id": 15032, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15034, + "token_id": 15033, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "3", - "token_id": 15035, + "token_id": 15034, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15036, + "token_id": 15035, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15037, + "token_id": 15036, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15038, + "token_id": 15037, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2", - "token_id": 15039, + "token_id": 15038, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15040, + "token_id": 15039, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "final", - "token_id": 15041, + "token_id": 15040, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15042, + "token_id": 15041, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 15043, + "token_id": 15042, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15044, + "token_id": 15043, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "creative", - "token_id": 15045, + "token_id": 15044, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15046, + "token_id": 15045, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "direction", - "token_id": 15047, + "token_id": 15046, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15048, + "token_id": 15047, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 15049, + "token_id": 15048, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "access", - "token_id": 15050, + "token_id": 15049, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137382,28 +137389,28 @@ }, { "str": "-", - "token_id": 15051, + "token_id": 15050, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "date", - "token_id": 15052, + "token_id": 15051, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 15053, + "token_id": 15052, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2022", - "token_id": 15054, + "token_id": 15053, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137412,14 +137419,14 @@ }, { "str": "-", - "token_id": 15055, + "token_id": 15054, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "10", - "token_id": 15056, + "token_id": 15055, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137428,28 +137435,28 @@ }, { "str": "-", - "token_id": 15057, + "token_id": 15056, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "12", - "token_id": 15058, + "token_id": 15057, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 15059, + "token_id": 15058, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "website", - "token_id": 15060, + "token_id": 15059, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137458,14 +137465,14 @@ }, { "str": "=", - "token_id": 15061, + "token_id": 15060, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "game", - "token_id": 15062, + "token_id": 15061, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137474,7 +137481,7 @@ }, { "str": "rant", - "token_id": 15063, + "token_id": 15062, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137483,7 +137490,7 @@ }, { "str": "|", - "token_id": 15064, + "token_id": 15063, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137492,7 +137499,7 @@ }, { "str": "language", - "token_id": 15065, + "token_id": 15064, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137501,7 +137508,7 @@ }, { "str": "=", - "token_id": 15066, + "token_id": 15065, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137510,21 +137517,21 @@ }, { "str": "en", - "token_id": 15067, + "token_id": 15066, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15068, + "token_id": 15067, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "us", - "token_id": 15069, + "token_id": 15068, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137533,7 +137540,7 @@ }, { "str": "}}", - "token_id": 15070, + "token_id": 15069, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137542,7 +137549,7 @@ }, { "str": "<", - "token_id": 15071, + "token_id": 15070, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137551,14 +137558,14 @@ }, { "str": "/", - "token_id": 15072, + "token_id": 15071, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 15073, + "token_id": 15072, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137567,7 +137574,7 @@ }, { "str": ">", - "token_id": 15074, + "token_id": 15073, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137576,133 +137583,133 @@ }, { "str": "<", - "token_id": 15075, + "token_id": 15074, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 15076, + "token_id": 15075, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ">", - "token_id": 15077, + "token_id": 15076, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "{{", - "token_id": 15078, + "token_id": 15077, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "cite", - "token_id": 15079, + "token_id": 15078, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "web", - "token_id": 15080, + "token_id": 15079, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 15081, + "token_id": 15080, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "last", - "token_id": 15082, + "token_id": 15081, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 15083, + "token_id": 15082, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "reynolds", - "token_id": 15084, + "token_id": 15083, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 15085, + "token_id": 15084, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "first", - "token_id": 15086, + "token_id": 15085, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 15087, + "token_id": 15086, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ollie", - "token_id": 15088, + "token_id": 15087, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 15089, + "token_id": 15088, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "date", - "token_id": 15090, + "token_id": 15089, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 15091, + "token_id": 15090, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2022", - "token_id": 15092, + "token_id": 15091, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15093, + "token_id": 15092, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137711,7 +137718,7 @@ }, { "str": "09", - "token_id": 15094, + "token_id": 15093, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137720,7 +137727,7 @@ }, { "str": "-", - "token_id": 15095, + "token_id": 15094, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137729,7 +137736,7 @@ }, { "str": "07", - "token_id": 15096, + "token_id": 15095, "o_rev_id": 1115655341, "in": [], "out": [ @@ -137738,7 +137745,7 @@ }, { "str": "|", - "token_id": 15097, + "token_id": 15096, "o_rev_id": 1115655341, "in": [ 1202097960 @@ -137749,14 +137756,18 @@ }, { "str": "title", - "token_id": 15098, + "token_id": 15097, "o_rev_id": 1115655341, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 15099, + "token_id": 15098, "o_rev_id": 1115655341, "in": [ 1202097960 @@ -137767,385 +137778,385 @@ }, { "str": "random", - "token_id": 15100, + "token_id": 15099, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ":", - "token_id": 15101, + "token_id": 15100, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15102, + "token_id": 15101, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2", - "token_id": 15103, + "token_id": 15102, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "'", - "token_id": 15104, + "token_id": 15103, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "s", - "token_id": 15105, + "token_id": 15104, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "final", - "token_id": 15106, + "token_id": 15105, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 15107, + "token_id": 15106, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "dictated", - "token_id": 15108, + "token_id": 15107, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 15109, + "token_id": 15108, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "direction", - "token_id": 15110, + "token_id": 15109, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "of", - "token_id": 15111, + "token_id": 15110, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15112, + "token_id": 15111, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "3", - "token_id": 15113, + "token_id": 15112, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 15114, + "token_id": 15113, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "url", - "token_id": 15115, + "token_id": 15114, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "=", - "token_id": 15116, + "token_id": 15115, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "https", - "token_id": 15117, + "token_id": 15116, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ":", - "token_id": 15118, + "token_id": 15117, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15119, + "token_id": 15118, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15120, + "token_id": 15119, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "www", - "token_id": 15121, + "token_id": 15120, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 15122, + "token_id": 15121, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 15123, + "token_id": 15122, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ".", - "token_id": 15124, + "token_id": 15123, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "com", - "token_id": 15125, + "token_id": 15124, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15126, + "token_id": 15125, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "news", - "token_id": 15127, + "token_id": 15126, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15128, + "token_id": 15127, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2022", - "token_id": 15129, + "token_id": 15128, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15130, + "token_id": 15129, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "09", - "token_id": 15131, + "token_id": 15130, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15132, + "token_id": 15131, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "random", - "token_id": 15133, + "token_id": 15132, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15134, + "token_id": 15133, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15135, + "token_id": 15134, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15136, + "token_id": 15135, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "2s", - "token_id": 15137, + "token_id": 15136, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15138, + "token_id": 15137, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "final", - "token_id": 15139, + "token_id": 15138, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15140, + "token_id": 15139, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 15141, + "token_id": 15140, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15142, + "token_id": 15141, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "dictated", - "token_id": 15143, + "token_id": 15142, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15144, + "token_id": 15143, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "the", - "token_id": 15145, + "token_id": 15144, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15146, + "token_id": 15145, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "direction", - "token_id": 15147, + "token_id": 15146, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15148, + "token_id": 15147, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "of", - "token_id": 15149, + "token_id": 15148, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15150, + "token_id": 15149, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15151, + "token_id": 15150, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "-", - "token_id": 15152, + "token_id": 15151, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "3", - "token_id": 15153, + "token_id": 15152, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "|", - "token_id": 15154, + "token_id": 15153, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138154,7 +138165,7 @@ }, { "str": "access", - "token_id": 15155, + "token_id": 15154, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138163,7 +138174,7 @@ }, { "str": "-", - "token_id": 15156, + "token_id": 15155, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138172,7 +138183,7 @@ }, { "str": "date", - "token_id": 15157, + "token_id": 15156, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138181,7 +138192,7 @@ }, { "str": "=", - "token_id": 15158, + "token_id": 15157, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138190,14 +138201,18 @@ }, { "str": "2022", - "token_id": 15159, + "token_id": 15158, "o_rev_id": 1115655341, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 15160, + "token_id": 15159, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138206,7 +138221,7 @@ }, { "str": "10", - "token_id": 15161, + "token_id": 15160, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138215,7 +138230,7 @@ }, { "str": "-", - "token_id": 15162, + "token_id": 15161, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138224,7 +138239,7 @@ }, { "str": "12", - "token_id": 15163, + "token_id": 15162, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138233,7 +138248,7 @@ }, { "str": "|", - "token_id": 15164, + "token_id": 15163, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138242,7 +138257,7 @@ }, { "str": "website", - "token_id": 15165, + "token_id": 15164, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138251,7 +138266,7 @@ }, { "str": "=", - "token_id": 15166, + "token_id": 15165, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138260,14 +138275,14 @@ }, { "str": "nintendo", - "token_id": 15167, + "token_id": 15166, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "life", - "token_id": 15168, + "token_id": 15167, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138276,7 +138291,7 @@ }, { "str": "|", - "token_id": 15169, + "token_id": 15168, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138285,7 +138300,7 @@ }, { "str": "language", - "token_id": 15170, + "token_id": 15169, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138294,7 +138309,7 @@ }, { "str": "=", - "token_id": 15171, + "token_id": 15170, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138303,7 +138318,7 @@ }, { "str": "en", - "token_id": 15172, + "token_id": 15171, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138312,16 +138327,14 @@ }, { "str": "-", - "token_id": 15173, + "token_id": 15172, "o_rev_id": 1115655341, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "gb", - "token_id": 15174, + "token_id": 15173, "o_rev_id": 1115655341, "in": [], "out": [ @@ -138330,179 +138343,175 @@ }, { "str": "}}", - "token_id": 15175, + "token_id": 15174, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "<", - "token_id": 15176, + "token_id": 15175, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "/", - "token_id": 15177, + "token_id": 15176, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "ref", - "token_id": 15178, + "token_id": 15177, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": ">", - "token_id": 15179, + "token_id": 15178, "o_rev_id": 1115655341, "in": [], "out": [] }, { "str": "<", - "token_id": 15180, + "token_id": 15179, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "ref", - "token_id": 15181, + "token_id": 15180, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ">", - "token_id": 15182, + "token_id": 15181, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "{{", - "token_id": 15183, + "token_id": 15182, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "cite", - "token_id": 15184, + "token_id": 15183, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "web", - "token_id": 15185, + "token_id": 15184, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15186, + "token_id": 15185, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "last", - "token_id": 15187, + "token_id": 15186, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15188, + "token_id": 15187, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "winslow", - "token_id": 15189, + "token_id": 15188, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15190, + "token_id": 15189, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "first", - "token_id": 15191, + "token_id": 15190, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15192, + "token_id": 15191, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "levi", - "token_id": 15193, + "token_id": 15192, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15194, + "token_id": 15193, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "date", - "token_id": 15195, + "token_id": 15194, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15196, + "token_id": 15195, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "2021", - "token_id": 15197, + "token_id": 15196, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15198, + "token_id": 15197, "o_rev_id": 1115657120, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "09", - "token_id": 15199, + "token_id": 15198, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138511,7 +138520,7 @@ }, { "str": "-", - "token_id": 15200, + "token_id": 15199, "o_rev_id": 1115657120, "in": [ 1202097960 @@ -138522,361 +138531,357 @@ }, { "str": "24", - "token_id": 15201, + "token_id": 15200, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15202, + "token_id": 15201, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "title", - "token_id": 15203, + "token_id": 15202, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15204, + "token_id": 15203, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "why", - "token_id": 15205, + "token_id": 15204, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "the", - "token_id": 15206, + "token_id": 15205, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15207, + "token_id": 15206, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "3", - "token_id": 15208, + "token_id": 15207, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "devs", - "token_id": 15209, + "token_id": 15208, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "are", - "token_id": 15210, + "token_id": 15209, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "the", - "token_id": 15211, + "token_id": 15210, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "best", - "token_id": 15212, + "token_id": 15211, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ",", - "token_id": 15213, + "token_id": 15212, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "in", - "token_id": 15214, + "token_id": 15213, "o_rev_id": 1115657120, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "one", - "token_id": 15215, + "token_id": 15214, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "gif", - "token_id": 15216, + "token_id": 15215, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15217, + "token_id": 15216, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "url", - "token_id": 15218, + "token_id": 15217, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15219, + "token_id": 15218, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "https", - "token_id": 15220, + "token_id": 15219, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ":", - "token_id": 15221, + "token_id": 15220, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15222, + "token_id": 15221, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15223, + "token_id": 15222, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "kotaku", - "token_id": 15224, + "token_id": 15223, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ".", - "token_id": 15225, + "token_id": 15224, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "com", - "token_id": 15226, + "token_id": 15225, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15227, + "token_id": 15226, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "why", - "token_id": 15228, + "token_id": 15227, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15229, + "token_id": 15228, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "the", - "token_id": 15230, + "token_id": 15229, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15231, + "token_id": 15230, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15232, + "token_id": 15231, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15233, + "token_id": 15232, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "3", - "token_id": 15234, + "token_id": 15233, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15235, + "token_id": 15234, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "devs", - "token_id": 15236, + "token_id": 15235, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15237, + "token_id": 15236, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "are", - "token_id": 15238, + "token_id": 15237, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15239, + "token_id": 15238, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "the", - "token_id": 15240, + "token_id": 15239, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15241, + "token_id": 15240, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "best", - "token_id": 15242, + "token_id": 15241, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15243, + "token_id": 15242, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "in", - "token_id": 15244, + "token_id": 15243, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15245, + "token_id": 15244, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "one", - "token_id": 15246, + "token_id": 15245, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15247, + "token_id": 15246, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "gif", - "token_id": 15248, + "token_id": 15247, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15249, + "token_id": 15248, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "1847735687", - "token_id": 15250, + "token_id": 15249, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15251, + "token_id": 15250, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138885,7 +138890,7 @@ }, { "str": "access", - "token_id": 15252, + "token_id": 15251, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138894,14 +138899,14 @@ }, { "str": "-", - "token_id": 15253, + "token_id": 15252, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "date", - "token_id": 15254, + "token_id": 15253, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138910,7 +138915,7 @@ }, { "str": "=", - "token_id": 15255, + "token_id": 15254, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138919,7 +138924,7 @@ }, { "str": "2022", - "token_id": 15256, + "token_id": 15255, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138928,14 +138933,14 @@ }, { "str": "-", - "token_id": 15257, + "token_id": 15256, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "10", - "token_id": 15258, + "token_id": 15257, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138944,28 +138949,28 @@ }, { "str": "-", - "token_id": 15259, + "token_id": 15258, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "12", - "token_id": 15260, + "token_id": 15259, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15261, + "token_id": 15260, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "website", - "token_id": 15262, + "token_id": 15261, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138974,14 +138979,14 @@ }, { "str": "=", - "token_id": 15263, + "token_id": 15262, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "kotaku", - "token_id": 15264, + "token_id": 15263, "o_rev_id": 1115657120, "in": [], "out": [ @@ -138990,18 +138995,14 @@ }, { "str": "|", - "token_id": 15265, + "token_id": 15264, "o_rev_id": 1115657120, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "language", - "token_id": 15266, + "token_id": 15265, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139010,18 +139011,14 @@ }, { "str": "=", - "token_id": 15267, + "token_id": 15266, "o_rev_id": 1115657120, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "en", - "token_id": 15268, + "token_id": 15267, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139030,126 +139027,126 @@ }, { "str": "}}", - "token_id": 15269, + "token_id": 15268, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "<", - "token_id": 15270, + "token_id": 15269, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15271, + "token_id": 15270, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "ref", - "token_id": 15272, + "token_id": 15271, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ">", - "token_id": 15273, + "token_id": 15272, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ",", - "token_id": 15274, + "token_id": 15273, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "collectively", - "token_id": 15275, + "token_id": 15274, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "referred", - "token_id": 15276, + "token_id": 15275, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "to", - "token_id": 15277, + "token_id": 15276, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "as", - "token_id": 15278, + "token_id": 15277, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "\"", - "token_id": 15279, + "token_id": 15278, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "deep", - "token_id": 15280, + "token_id": 15279, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "cut", - "token_id": 15281, + "token_id": 15280, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "\"", - "token_id": 15282, + "token_id": 15281, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "announced", - "token_id": 15283, + "token_id": 15282, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "in", - "token_id": 15284, + "token_id": 15283, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "the", - "token_id": 15285, + "token_id": 15284, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "'", - "token_id": 15286, + "token_id": 15285, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139158,7 +139155,7 @@ }, { "str": "'", - "token_id": 15287, + "token_id": 15286, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139167,7 +139164,7 @@ }, { "str": "splatoon", - "token_id": 15288, + "token_id": 15287, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139176,7 +139173,7 @@ }, { "str": "3", - "token_id": 15289, + "token_id": 15288, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139185,7 +139182,7 @@ }, { "str": "'", - "token_id": 15290, + "token_id": 15289, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139194,7 +139191,7 @@ }, { "str": "'", - "token_id": 15291, + "token_id": 15290, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139203,98 +139200,98 @@ }, { "str": "nintendo", - "token_id": 15292, + "token_id": 15291, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "direct", - "token_id": 15293, + "token_id": 15292, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ",", - "token_id": 15294, + "token_id": 15293, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "the", - "token_id": 15295, + "token_id": 15294, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "game", - "token_id": 15296, + "token_id": 15295, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "is", - "token_id": 15297, + "token_id": 15296, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "set", - "token_id": 15298, + "token_id": 15297, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "to", - "token_id": 15299, + "token_id": 15298, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "receive", - "token_id": 15300, + "token_id": 15299, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "both", - "token_id": 15301, + "token_id": 15300, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "large", - "token_id": 15302, + "token_id": 15301, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15303, + "token_id": 15302, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "scale", - "token_id": 15304, + "token_id": 15303, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "[[", - "token_id": 15305, + "token_id": 15304, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139303,7 +139300,7 @@ }, { "str": "downloadable", - "token_id": 15306, + "token_id": 15305, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139312,7 +139309,7 @@ }, { "str": "content", - "token_id": 15307, + "token_id": 15306, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139321,7 +139318,7 @@ }, { "str": "|", - "token_id": 15308, + "token_id": 15307, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139330,7 +139327,7 @@ }, { "str": "paid", - "token_id": 15309, + "token_id": 15308, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139339,7 +139336,7 @@ }, { "str": "dlc", - "token_id": 15310, + "token_id": 15309, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139348,7 +139345,7 @@ }, { "str": "]]", - "token_id": 15311, + "token_id": 15310, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139357,56 +139354,56 @@ }, { "str": "and", - "token_id": 15312, + "token_id": 15311, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "two", - "token_id": 15313, + "token_id": 15312, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "years", - "token_id": 15314, + "token_id": 15313, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "of", - "token_id": 15315, + "token_id": 15314, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "support", - "token_id": 15316, + "token_id": 15315, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "via", - "token_id": 15317, + "token_id": 15316, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "free", - "token_id": 15318, + "token_id": 15317, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "[[", - "token_id": 15319, + "token_id": 15318, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139415,7 +139412,7 @@ }, { "str": "software", - "token_id": 15320, + "token_id": 15319, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139424,14 +139421,14 @@ }, { "str": "updates", - "token_id": 15321, + "token_id": 15320, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15322, + "token_id": 15321, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139440,7 +139437,7 @@ }, { "str": "software", - "token_id": 15323, + "token_id": 15322, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139449,7 +139446,7 @@ }, { "str": "updates", - "token_id": 15324, + "token_id": 15323, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139458,7 +139455,7 @@ }, { "str": "]]", - "token_id": 15325, + "token_id": 15324, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139467,14 +139464,14 @@ }, { "str": ".", - "token_id": 15326, + "token_id": 15325, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "<", - "token_id": 15327, + "token_id": 15326, "o_rev_id": 1115657120, "in": [ 1202097960 @@ -139485,7 +139482,7 @@ }, { "str": "ref", - "token_id": 15328, + "token_id": 15327, "o_rev_id": 1115657120, "in": [ 1202097960 @@ -139496,7 +139493,7 @@ }, { "str": ">", - "token_id": 15329, + "token_id": 15328, "o_rev_id": 1115657120, "in": [ 1202097960 @@ -139507,119 +139504,119 @@ }, { "str": "{{", - "token_id": 15330, + "token_id": 15329, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "cite", - "token_id": 15331, + "token_id": 15330, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "web", - "token_id": 15332, + "token_id": 15331, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15333, + "token_id": 15332, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "last", - "token_id": 15334, + "token_id": 15333, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15335, + "token_id": 15334, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "norman", - "token_id": 15336, + "token_id": 15335, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15337, + "token_id": 15336, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "first", - "token_id": 15338, + "token_id": 15337, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15339, + "token_id": 15338, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "jim", - "token_id": 15340, + "token_id": 15339, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15341, + "token_id": 15340, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "date", - "token_id": 15342, + "token_id": 15341, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15343, + "token_id": 15342, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "2022", - "token_id": 15344, + "token_id": 15343, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15345, + "token_id": 15344, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "08", - "token_id": 15346, + "token_id": 15345, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139628,7 +139625,7 @@ }, { "str": "-", - "token_id": 15347, + "token_id": 15346, "o_rev_id": 1115657120, "in": [], "out": [ @@ -139637,515 +139634,511 @@ }, { "str": "10", - "token_id": 15348, + "token_id": 15347, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15349, + "token_id": 15348, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "title", - "token_id": 15350, + "token_id": 15349, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15351, + "token_id": 15350, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 15352, + "token_id": 15351, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "announces", - "token_id": 15353, + "token_id": 15352, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15354, + "token_id": 15353, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "3", - "token_id": 15355, + "token_id": 15354, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "\"", - "token_id": 15356, + "token_id": 15355, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "large", - "token_id": 15357, + "token_id": 15356, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15358, + "token_id": 15357, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "scale", - "token_id": 15359, + "token_id": 15358, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "paid", - "token_id": 15360, + "token_id": 15359, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "dlc", - "token_id": 15361, + "token_id": 15360, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "\"", - "token_id": 15362, + "token_id": 15361, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ",", - "token_id": 15363, + "token_id": 15362, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "details", - "token_id": 15364, + "token_id": 15363, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "two", - "token_id": 15365, + "token_id": 15364, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "years", - "token_id": 15366, + "token_id": 15365, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "of", - "token_id": 15367, + "token_id": 15366, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "post", - "token_id": 15368, + "token_id": 15367, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15369, + "token_id": 15368, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "launch", - "token_id": 15370, + "token_id": 15369, "o_rev_id": 1115657120, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "support", - "token_id": 15371, + "token_id": 15370, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15372, + "token_id": 15371, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "url", - "token_id": 15373, + "token_id": 15372, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "=", - "token_id": 15374, + "token_id": 15373, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "https", - "token_id": 15375, + "token_id": 15374, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ":", - "token_id": 15376, + "token_id": 15375, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15377, + "token_id": 15376, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15378, + "token_id": 15377, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "www", - "token_id": 15379, + "token_id": 15378, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ".", - "token_id": 15380, + "token_id": 15379, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 15381, + "token_id": 15380, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": ".", - "token_id": 15382, + "token_id": 15381, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "com", - "token_id": 15383, + "token_id": 15382, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15384, + "token_id": 15383, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "news", - "token_id": 15385, + "token_id": 15384, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15386, + "token_id": 15385, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "2022", - "token_id": 15387, + "token_id": 15386, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15388, + "token_id": 15387, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "08", - "token_id": 15389, + "token_id": 15388, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "/", - "token_id": 15390, + "token_id": 15389, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 15391, + "token_id": 15390, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15392, + "token_id": 15391, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "announces", - "token_id": 15393, + "token_id": 15392, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15394, + "token_id": 15393, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15395, + "token_id": 15394, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15396, + "token_id": 15395, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "3", - "token_id": 15397, + "token_id": 15396, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15398, + "token_id": 15397, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "large", - "token_id": 15399, + "token_id": 15398, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15400, + "token_id": 15399, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "scale", - "token_id": 15401, + "token_id": 15400, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15402, + "token_id": 15401, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "paid", - "token_id": 15403, + "token_id": 15402, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15404, + "token_id": 15403, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "dlc", - "token_id": 15405, + "token_id": 15404, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15406, + "token_id": 15405, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "details", - "token_id": 15407, + "token_id": 15406, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15408, + "token_id": 15407, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "two", - "token_id": 15409, + "token_id": 15408, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15410, + "token_id": 15409, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "years", - "token_id": 15411, + "token_id": 15410, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15412, + "token_id": 15411, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "of", - "token_id": 15413, + "token_id": 15412, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15414, + "token_id": 15413, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "post", - "token_id": 15415, + "token_id": 15414, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15416, + "token_id": 15415, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "launch", - "token_id": 15417, + "token_id": 15416, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15418, + "token_id": 15417, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "support", - "token_id": 15419, + "token_id": 15418, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15420, + "token_id": 15419, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140154,7 +140147,7 @@ }, { "str": "access", - "token_id": 15421, + "token_id": 15420, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140163,7 +140156,7 @@ }, { "str": "-", - "token_id": 15422, + "token_id": 15421, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140172,7 +140165,7 @@ }, { "str": "date", - "token_id": 15423, + "token_id": 15422, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140181,7 +140174,7 @@ }, { "str": "=", - "token_id": 15424, + "token_id": 15423, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140190,14 +140183,14 @@ }, { "str": "2022", - "token_id": 15425, + "token_id": 15424, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "-", - "token_id": 15426, + "token_id": 15425, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140206,7 +140199,7 @@ }, { "str": "10", - "token_id": 15427, + "token_id": 15426, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140215,7 +140208,7 @@ }, { "str": "-", - "token_id": 15428, + "token_id": 15427, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140224,14 +140217,14 @@ }, { "str": "12", - "token_id": 15429, + "token_id": 15428, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "|", - "token_id": 15430, + "token_id": 15429, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140240,7 +140233,7 @@ }, { "str": "website", - "token_id": 15431, + "token_id": 15430, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140249,7 +140242,7 @@ }, { "str": "=", - "token_id": 15432, + "token_id": 15431, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140258,14 +140251,14 @@ }, { "str": "nintendo", - "token_id": 15433, + "token_id": 15432, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "life", - "token_id": 15434, + "token_id": 15433, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140274,7 +140267,7 @@ }, { "str": "|", - "token_id": 15435, + "token_id": 15434, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140283,7 +140276,7 @@ }, { "str": "language", - "token_id": 15436, + "token_id": 15435, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140292,7 +140285,7 @@ }, { "str": "=", - "token_id": 15437, + "token_id": 15436, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140301,7 +140294,7 @@ }, { "str": "en", - "token_id": 15438, + "token_id": 15437, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140310,14 +140303,14 @@ }, { "str": "-", - "token_id": 15439, + "token_id": 15438, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "gb", - "token_id": 15440, + "token_id": 15439, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140326,7 +140319,7 @@ }, { "str": "}}", - "token_id": 15441, + "token_id": 15440, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140335,7 +140328,7 @@ }, { "str": "<", - "token_id": 15442, + "token_id": 15441, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140344,14 +140337,14 @@ }, { "str": "/", - "token_id": 15443, + "token_id": 15442, "o_rev_id": 1115657120, "in": [], "out": [] }, { "str": "ref", - "token_id": 15444, + "token_id": 15443, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140360,7 +140353,7 @@ }, { "str": ">", - "token_id": 15445, + "token_id": 15444, "o_rev_id": 1115657120, "in": [], "out": [ @@ -140369,107 +140362,14 @@ }, { "str": "an", - "token_id": 15446, + "token_id": 15445, "o_rev_id": 1115661096, "in": [], "out": [] }, - { - "str": "splatoon", - "token_id": 15447, - "o_rev_id": 1115665292, - "in": [ - 1117591128, - 1216768014 - ], - "out": [ - 1117588531, - 1216767975 - ] - }, - { - "str": "3", - "token_id": 15448, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, - { - "str": "splatoon", - "token_id": 15449, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, - { - "str": "2", - "token_id": 15450, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, - { - "str": "specifically", - "token_id": 15451, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "the", - "token_id": 15452, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531 - ] - }, - { - "str": "events", - "token_id": 15453, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "of", - "token_id": 15454, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, { "str": "'", - "token_id": 15455, + "token_id": 15446, "o_rev_id": 1115665292, "in": [ 1117591128 @@ -140480,7 +140380,7 @@ }, { "str": "'", - "token_id": 15456, + "token_id": 15447, "o_rev_id": 1115665292, "in": [ 1117591128 @@ -140492,7 +140392,7 @@ }, { "str": "splatoon", - "token_id": 15457, + "token_id": 15448, "o_rev_id": 1115665292, "in": [ 1117591128 @@ -140504,7 +140404,7 @@ }, { "str": "3", - "token_id": 15458, + "token_id": 15449, "o_rev_id": 1115665292, "in": [ 1117591128 @@ -140516,7 +140416,7 @@ }, { "str": "'", - "token_id": 15459, + "token_id": 15450, "o_rev_id": 1115665292, "in": [ 1117591128 @@ -140528,91 +140428,7 @@ }, { "str": "'", - "token_id": 15460, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "similar", - "token_id": 15461, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "to", - "token_id": 15462, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "real", - "token_id": 15463, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "time", - "token_id": 15464, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "media", - "token_id": 15465, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "real", - "token_id": 15466, - "o_rev_id": 1115665292, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1131750441 - ] - }, - { - "str": "time", - "token_id": 15467, + "token_id": 15451, "o_rev_id": 1115665292, "in": [ 1117591128 @@ -140624,7 +140440,7 @@ }, { "str": ",", - "token_id": 15468, + "token_id": 15452, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140633,7 +140449,7 @@ }, { "str": ",", - "token_id": 15469, + "token_id": 15453, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140642,7 +140458,7 @@ }, { "str": "powered", - "token_id": 15470, + "token_id": 15454, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140651,7 +140467,7 @@ }, { "str": "by", - "token_id": 15471, + "token_id": 15455, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140660,7 +140476,7 @@ }, { "str": "a", - "token_id": 15472, + "token_id": 15456, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140669,7 +140485,7 @@ }, { "str": "new", - "token_id": 15473, + "token_id": 15457, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140678,7 +140494,7 @@ }, { "str": "rendition", - "token_id": 15474, + "token_id": 15458, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140687,7 +140503,7 @@ }, { "str": "the", - "token_id": 15475, + "token_id": 15459, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140696,7 +140512,7 @@ }, { "str": "\"", - "token_id": 15476, + "token_id": 15460, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140705,7 +140521,7 @@ }, { "str": "heavenly", - "token_id": 15477, + "token_id": 15461, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140714,7 +140530,7 @@ }, { "str": "melody", - "token_id": 15478, + "token_id": 15462, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140723,7 +140539,7 @@ }, { "str": "\"", - "token_id": 15479, + "token_id": 15463, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140732,7 +140548,7 @@ }, { "str": "calimari", - "token_id": 15480, + "token_id": 15464, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140741,7 +140557,7 @@ }, { "str": "inkantation", - "token_id": 15481, + "token_id": 15465, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140750,7 +140566,7 @@ }, { "str": ",", - "token_id": 15482, + "token_id": 15466, "o_rev_id": 1115669595, "in": [], "out": [ @@ -140759,7 +140575,7 @@ }, { "str": "<", - "token_id": 15483, + "token_id": 15467, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140775,7 +140591,7 @@ }, { "str": "ref", - "token_id": 15484, + "token_id": 15468, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140789,7 +140605,7 @@ }, { "str": ">", - "token_id": 15485, + "token_id": 15469, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140803,7 +140619,7 @@ }, { "str": "{{", - "token_id": 15486, + "token_id": 15470, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140817,7 +140633,7 @@ }, { "str": "cite", - "token_id": 15487, + "token_id": 15471, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140831,7 +140647,7 @@ }, { "str": "video", - "token_id": 15488, + "token_id": 15472, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140845,7 +140661,7 @@ }, { "str": "game", - "token_id": 15489, + "token_id": 15473, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140859,7 +140675,7 @@ }, { "str": "|", - "token_id": 15490, + "token_id": 15474, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140873,21 +140689,23 @@ }, { "str": "title", - "token_id": 15491, + "token_id": 15475, "o_rev_id": 1115669595, "in": [ 1132059163, - 1148919560 + 1148919560, + 1202097960 ], "out": [ 1131820454, 1148918924, + 1202071552, 1338938791 ] }, { "str": "=", - "token_id": 15492, + "token_id": 15476, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140901,7 +140719,7 @@ }, { "str": "splatoon", - "token_id": 15493, + "token_id": 15477, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140917,7 +140735,7 @@ }, { "str": "3", - "token_id": 15494, + "token_id": 15478, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140933,7 +140751,7 @@ }, { "str": "|", - "token_id": 15495, + "token_id": 15479, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140947,7 +140765,7 @@ }, { "str": "developer", - "token_id": 15496, + "token_id": 15480, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140961,7 +140779,7 @@ }, { "str": "=", - "token_id": 15497, + "token_id": 15481, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140975,7 +140793,7 @@ }, { "str": "[[", - "token_id": 15498, + "token_id": 15482, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -140989,7 +140807,7 @@ }, { "str": "nintendo", - "token_id": 15499, + "token_id": 15483, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141003,7 +140821,7 @@ }, { "str": "epd", - "token_id": 15500, + "token_id": 15484, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141017,7 +140835,7 @@ }, { "str": "]]", - "token_id": 15501, + "token_id": 15485, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141031,7 +140849,7 @@ }, { "str": "|", - "token_id": 15502, + "token_id": 15486, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141045,7 +140863,7 @@ }, { "str": "publisher", - "token_id": 15503, + "token_id": 15487, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141059,7 +140877,7 @@ }, { "str": "=", - "token_id": 15504, + "token_id": 15488, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141073,7 +140891,7 @@ }, { "str": "[[", - "token_id": 15505, + "token_id": 15489, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141087,7 +140905,7 @@ }, { "str": "nintendo", - "token_id": 15506, + "token_id": 15490, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141103,7 +140921,7 @@ }, { "str": "]]", - "token_id": 15507, + "token_id": 15491, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141117,7 +140935,7 @@ }, { "str": "|", - "token_id": 15508, + "token_id": 15492, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141131,7 +140949,7 @@ }, { "str": "platform", - "token_id": 15509, + "token_id": 15493, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141145,7 +140963,7 @@ }, { "str": "=", - "token_id": 15510, + "token_id": 15494, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141159,7 +140977,7 @@ }, { "str": "[[", - "token_id": 15511, + "token_id": 15495, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141173,7 +140991,7 @@ }, { "str": "nintendo", - "token_id": 15512, + "token_id": 15496, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141187,7 +141005,7 @@ }, { "str": "switch", - "token_id": 15513, + "token_id": 15497, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141201,7 +141019,7 @@ }, { "str": "]]", - "token_id": 15514, + "token_id": 15498, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141215,7 +141033,7 @@ }, { "str": "|", - "token_id": 15515, + "token_id": 15499, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141229,7 +141047,7 @@ }, { "str": "date", - "token_id": 15516, + "token_id": 15500, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141243,7 +141061,7 @@ }, { "str": "=", - "token_id": 15517, + "token_id": 15501, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141257,7 +141075,7 @@ }, { "str": "2022", - "token_id": 15518, + "token_id": 15502, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141271,7 +141089,7 @@ }, { "str": "-", - "token_id": 15519, + "token_id": 15503, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141279,13 +141097,12 @@ ], "out": [ 1131820454, - 1148918924, - 1168453704 + 1148918924 ] }, { "str": "09", - "token_id": 15520, + "token_id": 15504, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141299,7 +141116,7 @@ }, { "str": "-", - "token_id": 15521, + "token_id": 15505, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141313,7 +141130,7 @@ }, { "str": "09", - "token_id": 15522, + "token_id": 15506, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141327,7 +141144,7 @@ }, { "str": "|", - "token_id": 15523, + "token_id": 15507, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141341,7 +141158,7 @@ }, { "str": "quote", - "token_id": 15524, + "token_id": 15508, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141355,7 +141172,7 @@ }, { "str": "=", - "token_id": 15525, + "token_id": 15509, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141369,7 +141186,7 @@ }, { "str": "'", - "token_id": 15526, + "token_id": 15510, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141385,7 +141202,7 @@ }, { "str": "'", - "token_id": 15527, + "token_id": 15511, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141399,7 +141216,7 @@ }, { "str": "'", - "token_id": 15528, + "token_id": 15512, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141413,7 +141230,7 @@ }, { "str": "frye", - "token_id": 15529, + "token_id": 15513, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141427,7 +141244,7 @@ }, { "str": "'", - "token_id": 15530, + "token_id": 15514, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141441,7 +141258,7 @@ }, { "str": "'", - "token_id": 15531, + "token_id": 15515, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141455,7 +141272,7 @@ }, { "str": "'", - "token_id": 15532, + "token_id": 15516, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141469,7 +141286,7 @@ }, { "str": ":", - "token_id": 15533, + "token_id": 15517, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141483,7 +141300,7 @@ }, { "str": "it", - "token_id": 15534, + "token_id": 15518, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141497,7 +141314,7 @@ }, { "str": "is", - "token_id": 15535, + "token_id": 15519, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141511,7 +141328,7 @@ }, { "str": "as", - "token_id": 15536, + "token_id": 15520, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141525,7 +141342,7 @@ }, { "str": "it", - "token_id": 15537, + "token_id": 15521, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141539,7 +141356,7 @@ }, { "str": "was", - "token_id": 15538, + "token_id": 15522, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141553,7 +141370,7 @@ }, { "str": "foretold", - "token_id": 15539, + "token_id": 15523, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141567,7 +141384,7 @@ }, { "str": ".", - "token_id": 15540, + "token_id": 15524, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141581,7 +141398,7 @@ }, { "str": "behold", - "token_id": 15541, + "token_id": 15525, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141595,7 +141412,7 @@ }, { "str": "!", - "token_id": 15542, + "token_id": 15526, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141609,7 +141426,7 @@ }, { "str": "hugefry", - "token_id": 15543, + "token_id": 15527, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141623,7 +141440,7 @@ }, { "str": "!", - "token_id": 15544, + "token_id": 15528, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141637,7 +141454,7 @@ }, { "str": "}}", - "token_id": 15545, + "token_id": 15529, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141651,7 +141468,7 @@ }, { "str": "<", - "token_id": 15546, + "token_id": 15530, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141665,7 +141482,7 @@ }, { "str": "/", - "token_id": 15547, + "token_id": 15531, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141679,7 +141496,7 @@ }, { "str": "ref", - "token_id": 15548, + "token_id": 15532, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141693,7 +141510,7 @@ }, { "str": ">", - "token_id": 15549, + "token_id": 15533, "o_rev_id": 1115669595, "in": [ 1132059163, @@ -141707,7 +141524,7 @@ }, { "str": "[[", - "token_id": 15550, + "token_id": 15534, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141716,7 +141533,7 @@ }, { "str": "list", - "token_id": 15551, + "token_id": 15535, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141725,7 +141542,7 @@ }, { "str": "of", - "token_id": 15552, + "token_id": 15536, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141734,7 +141551,7 @@ }, { "str": "fastest", - "token_id": 15553, + "token_id": 15537, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141743,7 +141560,7 @@ }, { "str": "-", - "token_id": 15554, + "token_id": 15538, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141752,7 +141569,7 @@ }, { "str": "selling", - "token_id": 15555, + "token_id": 15539, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141761,7 +141578,7 @@ }, { "str": "products", - "token_id": 15556, + "token_id": 15540, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141770,7 +141587,7 @@ }, { "str": "#", - "token_id": 15557, + "token_id": 15541, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141779,7 +141596,7 @@ }, { "str": "japan", - "token_id": 15558, + "token_id": 15542, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141788,7 +141605,7 @@ }, { "str": "|", - "token_id": 15559, + "token_id": 15543, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141797,7 +141614,7 @@ }, { "str": "]]", - "token_id": 15560, + "token_id": 15544, "o_rev_id": 1115715031, "in": [], "out": [ @@ -141806,21 +141623,21 @@ }, { "str": "'", - "token_id": 15561, + "token_id": 15545, "o_rev_id": 1115715284, "in": [], "out": [] }, { "str": "'", - "token_id": 15562, + "token_id": 15546, "o_rev_id": 1115715284, "in": [], "out": [] }, { "str": "s", - "token_id": 15563, + "token_id": 15547, "o_rev_id": 1115717238, "in": [ 1117591128 @@ -141832,7 +141649,7 @@ }, { "str": "\"", - "token_id": 15564, + "token_id": 15548, "o_rev_id": 1115717238, "in": [], "out": [ @@ -141841,7 +141658,7 @@ }, { "str": "hugefry", - "token_id": 15565, + "token_id": 15549, "o_rev_id": 1115717238, "in": [], "out": [ @@ -141850,7 +141667,7 @@ }, { "str": "\"", - "token_id": 15566, + "token_id": 15550, "o_rev_id": 1115717238, "in": [], "out": [ @@ -141859,471 +141676,473 @@ }, { "str": "the", - "token_id": 15567, + "token_id": 15551, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "game", - "token_id": 15568, + "token_id": 15552, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "makes", - "token_id": 15569, + "token_id": 15553, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "use", - "token_id": 15570, + "token_id": 15554, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "of", - "token_id": 15571, + "token_id": 15555, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "nlpn", - "token_id": 15572, + "token_id": 15556, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ",", - "token_id": 15573, + "token_id": 15557, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 15574, + "token_id": 15558, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "'", - "token_id": 15575, + "token_id": 15559, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "s", - "token_id": 15576, + "token_id": 15560, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "[[", - "token_id": 15577, + "token_id": 15561, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "in", - "token_id": 15578, + "token_id": 15562, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15579, + "token_id": 15563, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "house", - "token_id": 15580, + "token_id": 15564, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "software", - "token_id": 15581, + "token_id": 15565, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15582, + "token_id": 15566, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "in", - "token_id": 15583, + "token_id": 15567, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15584, + "token_id": 15568, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "house", - "token_id": 15585, + "token_id": 15569, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "]]", - "token_id": 15586, + "token_id": 15570, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "[[", - "token_id": 15587, + "token_id": 15571, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "server", - "token_id": 15588, + "token_id": 15572, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "(", - "token_id": 15589, + "token_id": 15573, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "computing", - "token_id": 15590, + "token_id": 15574, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ")", - "token_id": 15591, + "token_id": 15575, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15592, + "token_id": 15576, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "server", - "token_id": 15593, + "token_id": 15577, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "]]", - "token_id": 15594, + "token_id": 15578, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "system", - "token_id": 15595, + "token_id": 15579, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ",", - "token_id": 15596, + "token_id": 15580, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "which", - "token_id": 15597, + "token_id": 15581, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "supports", - "token_id": 15598, + "token_id": 15582, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "expanded", - "token_id": 15599, + "token_id": 15583, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "lobby", - "token_id": 15600, + "token_id": 15584, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "features", - "token_id": 15601, + "token_id": 15585, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "and", - "token_id": 15602, + "token_id": 15586, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "better", - "token_id": 15603, + "token_id": 15587, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "[[", - "token_id": 15604, + "token_id": 15588, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "matchmaking", - "token_id": 15605, + "token_id": 15589, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "(", - "token_id": 15606, + "token_id": 15590, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "video", - "token_id": 15607, + "token_id": 15591, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "games", - "token_id": 15608, + "token_id": 15592, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ")", - "token_id": 15609, + "token_id": 15593, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15610, + "token_id": 15594, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "matchmaking", - "token_id": 15611, + "token_id": 15595, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "]]", - "token_id": 15612, + "token_id": 15596, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ".", - "token_id": 15613, + "token_id": 15597, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "<", - "token_id": 15614, + "token_id": 15598, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "ref", - "token_id": 15615, + "token_id": 15599, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ">", - "token_id": 15616, + "token_id": 15600, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "{{", - "token_id": 15617, + "token_id": 15601, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "cite", - "token_id": 15618, + "token_id": 15602, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "web", - "token_id": 15619, + "token_id": 15603, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15620, + "token_id": 15604, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "last", - "token_id": 15621, + "token_id": 15605, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15622, + "token_id": 15606, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "hagues", - "token_id": 15623, + "token_id": 15607, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15624, + "token_id": 15608, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "first", - "token_id": 15625, + "token_id": 15609, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15626, + "token_id": 15610, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "alana", - "token_id": 15627, + "token_id": 15611, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15628, + "token_id": 15612, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "date", - "token_id": 15629, + "token_id": 15613, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15630, + "token_id": 15614, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "2022", - "token_id": 15631, + "token_id": 15615, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15632, + "token_id": 15616, "o_rev_id": 1115748853, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552 ] }, { "str": "08", - "token_id": 15633, + "token_id": 15617, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142332,468 +142151,466 @@ }, { "str": "-", - "token_id": 15634, + "token_id": 15618, "o_rev_id": 1115748853, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552 ] }, { "str": "18", - "token_id": 15635, + "token_id": 15619, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15636, + "token_id": 15620, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "title", - "token_id": 15637, + "token_id": 15621, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15638, + "token_id": 15622, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "it", - "token_id": 15639, + "token_id": 15623, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "looks", - "token_id": 15640, + "token_id": 15624, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "like", - "token_id": 15641, + "token_id": 15625, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15642, + "token_id": 15626, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "3", - "token_id": 15643, + "token_id": 15627, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "will", - "token_id": 15644, + "token_id": 15628, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "be", - "token_id": 15645, + "token_id": 15629, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "using", - "token_id": 15646, + "token_id": 15630, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 15647, + "token_id": 15631, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "'", - "token_id": 15648, + "token_id": 15632, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "s", - "token_id": 15649, + "token_id": 15633, "o_rev_id": 1115748853, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "in", - "token_id": 15650, + "token_id": 15634, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15651, + "token_id": 15635, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "house", - "token_id": 15652, + "token_id": 15636, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "server", - "token_id": 15653, + "token_id": 15637, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "system", - "token_id": 15654, + "token_id": 15638, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15655, + "token_id": 15639, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "url", - "token_id": 15656, + "token_id": 15640, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15657, + "token_id": 15641, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "https", - "token_id": 15658, + "token_id": 15642, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ":", - "token_id": 15659, + "token_id": 15643, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15660, + "token_id": 15644, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15661, + "token_id": 15645, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "www", - "token_id": 15662, + "token_id": 15646, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ".", - "token_id": 15663, + "token_id": 15647, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 15664, + "token_id": 15648, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ".", - "token_id": 15665, + "token_id": 15649, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "com", - "token_id": 15666, + "token_id": 15650, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15667, + "token_id": 15651, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "news", - "token_id": 15668, + "token_id": 15652, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15669, + "token_id": 15653, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "2022", - "token_id": 15670, + "token_id": 15654, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15671, + "token_id": 15655, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "08", - "token_id": 15672, + "token_id": 15656, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15673, + "token_id": 15657, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "it", - "token_id": 15674, + "token_id": 15658, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15675, + "token_id": 15659, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "looks", - "token_id": 15676, + "token_id": 15660, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15677, + "token_id": 15661, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "like", - "token_id": 15678, + "token_id": 15662, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15679, + "token_id": 15663, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15680, + "token_id": 15664, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15681, + "token_id": 15665, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "3", - "token_id": 15682, + "token_id": 15666, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15683, + "token_id": 15667, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "will", - "token_id": 15684, + "token_id": 15668, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15685, + "token_id": 15669, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "be", - "token_id": 15686, + "token_id": 15670, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15687, + "token_id": 15671, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "using", - "token_id": 15688, + "token_id": 15672, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15689, + "token_id": 15673, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "nintendos", - "token_id": 15690, + "token_id": 15674, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15691, + "token_id": 15675, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "in", - "token_id": 15692, + "token_id": 15676, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15693, + "token_id": 15677, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "house", - "token_id": 15694, + "token_id": 15678, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15695, + "token_id": 15679, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "server", - "token_id": 15696, + "token_id": 15680, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15697, + "token_id": 15681, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "system", - "token_id": 15698, + "token_id": 15682, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15699, + "token_id": 15683, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142802,7 +142619,7 @@ }, { "str": "access", - "token_id": 15700, + "token_id": 15684, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142811,14 +142628,14 @@ }, { "str": "-", - "token_id": 15701, + "token_id": 15685, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "date", - "token_id": 15702, + "token_id": 15686, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142827,7 +142644,7 @@ }, { "str": "=", - "token_id": 15703, + "token_id": 15687, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142836,7 +142653,7 @@ }, { "str": "2022", - "token_id": 15704, + "token_id": 15688, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142845,7 +142662,7 @@ }, { "str": "-", - "token_id": 15705, + "token_id": 15689, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142854,7 +142671,7 @@ }, { "str": "10", - "token_id": 15706, + "token_id": 15690, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142863,7 +142680,7 @@ }, { "str": "-", - "token_id": 15707, + "token_id": 15691, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142872,7 +142689,7 @@ }, { "str": "13", - "token_id": 15708, + "token_id": 15692, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142881,21 +142698,21 @@ }, { "str": "|", - "token_id": 15709, + "token_id": 15693, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "website", - "token_id": 15710, + "token_id": 15694, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15711, + "token_id": 15695, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142904,14 +142721,14 @@ }, { "str": "nintendo", - "token_id": 15712, + "token_id": 15696, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "life", - "token_id": 15713, + "token_id": 15697, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142920,7 +142737,7 @@ }, { "str": "|", - "token_id": 15714, + "token_id": 15698, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142929,7 +142746,7 @@ }, { "str": "language", - "token_id": 15715, + "token_id": 15699, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142938,14 +142755,14 @@ }, { "str": "=", - "token_id": 15716, + "token_id": 15700, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "en", - "token_id": 15717, + "token_id": 15701, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142954,14 +142771,14 @@ }, { "str": "-", - "token_id": 15718, + "token_id": 15702, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "gb", - "token_id": 15719, + "token_id": 15703, "o_rev_id": 1115748853, "in": [], "out": [ @@ -142970,42 +142787,42 @@ }, { "str": "}}", - "token_id": 15720, + "token_id": 15704, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "<", - "token_id": 15721, + "token_id": 15705, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15722, + "token_id": 15706, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "ref", - "token_id": 15723, + "token_id": 15707, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ">", - "token_id": 15724, + "token_id": 15708, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "aren", - "token_id": 15725, + "token_id": 15709, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143014,7 +142831,7 @@ }, { "str": "somthing", - "token_id": 15726, + "token_id": 15710, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143023,7 +142840,7 @@ }, { "str": "\"", - "token_id": 15727, + "token_id": 15711, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143032,7 +142849,7 @@ }, { "str": "called", - "token_id": 15728, + "token_id": 15712, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143041,7 +142858,7 @@ }, { "str": "the", - "token_id": 15729, + "token_id": 15713, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143050,58 +142867,60 @@ }, { "str": "'", - "token_id": 15730, + "token_id": 15714, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 15731, + "token_id": 15715, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "[[", - "token_id": 15732, + "token_id": 15716, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "kotaku", - "token_id": 15733, + "token_id": 15717, "o_rev_id": 1115748853, "in": [], - "out": [ - 1334176815 - ] + "out": [] }, { "str": "]]", - "token_id": 15734, + "token_id": 15718, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "'", - "token_id": 15735, + "token_id": 15719, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "'", - "token_id": 15736, + "token_id": 15720, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "<", - "token_id": 15737, + "token_id": 15721, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143110,7 +142929,7 @@ }, { "str": "nowiki", - "token_id": 15738, + "token_id": 15722, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143119,7 +142938,7 @@ }, { "str": "/", - "token_id": 15739, + "token_id": 15723, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143128,7 +142947,7 @@ }, { "str": ">", - "token_id": 15740, + "token_id": 15724, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143137,42 +142956,42 @@ }, { "str": "'", - "token_id": 15741, + "token_id": 15725, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "s", - "token_id": 15742, + "token_id": 15726, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "patricia", - "token_id": 15743, + "token_id": 15727, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "hernandez", - "token_id": 15744, + "token_id": 15728, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "lamented", - "token_id": 15745, + "token_id": 15729, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "the", - "token_id": 15746, + "token_id": 15730, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143181,7 +143000,7 @@ }, { "str": "amount", - "token_id": 15747, + "token_id": 15731, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143190,7 +143009,7 @@ }, { "str": "of", - "token_id": 15748, + "token_id": 15732, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143199,7 +143018,7 @@ }, { "str": "disconnections", - "token_id": 15749, + "token_id": 15733, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143208,7 +143027,7 @@ }, { "str": "while", - "token_id": 15750, + "token_id": 15734, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143217,7 +143036,7 @@ }, { "str": "playing", - "token_id": 15751, + "token_id": 15735, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143226,7 +143045,7 @@ }, { "str": "online", - "token_id": 15752, + "token_id": 15736, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143235,7 +143054,7 @@ }, { "str": ",", - "token_id": 15753, + "token_id": 15737, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143244,7 +143063,7 @@ }, { "str": "saying", - "token_id": 15754, + "token_id": 15738, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143253,7 +143072,7 @@ }, { "str": "that", - "token_id": 15755, + "token_id": 15739, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143262,7 +143081,7 @@ }, { "str": "it", - "token_id": 15756, + "token_id": 15740, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143271,7 +143090,7 @@ }, { "str": "is", - "token_id": 15757, + "token_id": 15741, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143280,7 +143099,7 @@ }, { "str": "\"", - "token_id": 15758, + "token_id": 15742, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143289,7 +143108,7 @@ }, { "str": "inexcusable", - "token_id": 15759, + "token_id": 15743, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143298,7 +143117,7 @@ }, { "str": "\"", - "token_id": 15760, + "token_id": 15744, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143307,7 +143126,7 @@ }, { "str": ".", - "token_id": 15761, + "token_id": 15745, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143316,133 +143135,133 @@ }, { "str": "<", - "token_id": 15762, + "token_id": 15746, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "ref", - "token_id": 15763, + "token_id": 15747, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ">", - "token_id": 15764, + "token_id": 15748, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "{{", - "token_id": 15765, + "token_id": 15749, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "cite", - "token_id": 15766, + "token_id": 15750, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "web", - "token_id": 15767, + "token_id": 15751, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15768, + "token_id": 15752, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "last", - "token_id": 15769, + "token_id": 15753, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15770, + "token_id": 15754, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "hernandez", - "token_id": 15771, + "token_id": 15755, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15772, + "token_id": 15756, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "first", - "token_id": 15773, + "token_id": 15757, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15774, + "token_id": 15758, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "patricia", - "token_id": 15775, + "token_id": 15759, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15776, + "token_id": 15760, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "date", - "token_id": 15777, + "token_id": 15761, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15778, + "token_id": 15762, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "2022", - "token_id": 15779, + "token_id": 15763, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15780, + "token_id": 15764, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143451,7 +143270,7 @@ }, { "str": "09", - "token_id": 15781, + "token_id": 15765, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143460,315 +143279,315 @@ }, { "str": "-", - "token_id": 15782, + "token_id": 15766, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "15", - "token_id": 15783, + "token_id": 15767, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15784, + "token_id": 15768, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "title", - "token_id": 15785, + "token_id": 15769, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15786, + "token_id": 15770, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15787, + "token_id": 15771, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "3", - "token_id": 15788, + "token_id": 15772, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "'", - "token_id": 15789, + "token_id": 15773, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "s", - "token_id": 15790, + "token_id": 15774, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "terrible", - "token_id": 15791, + "token_id": 15775, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "online", - "token_id": 15792, + "token_id": 15776, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "is", - "token_id": 15793, + "token_id": 15777, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "inexcusable", - "token_id": 15794, + "token_id": 15778, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "at", - "token_id": 15795, + "token_id": 15779, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "this", - "token_id": 15796, + "token_id": 15780, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "point", - "token_id": 15797, + "token_id": 15781, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15798, + "token_id": 15782, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "url", - "token_id": 15799, + "token_id": 15783, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15800, + "token_id": 15784, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "https", - "token_id": 15801, + "token_id": 15785, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ":", - "token_id": 15802, + "token_id": 15786, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15803, + "token_id": 15787, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15804, + "token_id": 15788, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "kotaku", - "token_id": 15805, + "token_id": 15789, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ".", - "token_id": 15806, + "token_id": 15790, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "com", - "token_id": 15807, + "token_id": 15791, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15808, + "token_id": 15792, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15809, + "token_id": 15793, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15810, + "token_id": 15794, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "3", - "token_id": 15811, + "token_id": 15795, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15812, + "token_id": 15796, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "online", - "token_id": 15813, + "token_id": 15797, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15814, + "token_id": 15798, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 15815, + "token_id": 15799, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15816, + "token_id": 15800, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "switch", - "token_id": 15817, + "token_id": 15801, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15818, + "token_id": 15802, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "turf", - "token_id": 15819, + "token_id": 15803, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15820, + "token_id": 15804, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "wars", - "token_id": 15821, + "token_id": 15805, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15822, + "token_id": 15806, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "connection", - "token_id": 15823, + "token_id": 15807, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15824, + "token_id": 15808, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "1849536980", - "token_id": 15825, + "token_id": 15809, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15826, + "token_id": 15810, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143777,7 +143596,7 @@ }, { "str": "access", - "token_id": 15827, + "token_id": 15811, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143786,14 +143605,16 @@ }, { "str": "-", - "token_id": 15828, + "token_id": 15812, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 15829, + "token_id": 15813, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143802,7 +143623,7 @@ }, { "str": "=", - "token_id": 15830, + "token_id": 15814, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143811,23 +143632,21 @@ }, { "str": "2022", - "token_id": 15831, + "token_id": 15815, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "-", - "token_id": 15832, + "token_id": 15816, "o_rev_id": 1115748853, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "10", - "token_id": 15833, + "token_id": 15817, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143836,7 +143655,7 @@ }, { "str": "-", - "token_id": 15834, + "token_id": 15818, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143845,7 +143664,7 @@ }, { "str": "13", - "token_id": 15835, + "token_id": 15819, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143854,14 +143673,14 @@ }, { "str": "|", - "token_id": 15836, + "token_id": 15820, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "website", - "token_id": 15837, + "token_id": 15821, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143870,7 +143689,7 @@ }, { "str": "=", - "token_id": 15838, + "token_id": 15822, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143879,14 +143698,14 @@ }, { "str": "kotaku", - "token_id": 15839, + "token_id": 15823, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "|", - "token_id": 15840, + "token_id": 15824, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143895,7 +143714,7 @@ }, { "str": "language", - "token_id": 15841, + "token_id": 15825, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143904,14 +143723,14 @@ }, { "str": "=", - "token_id": 15842, + "token_id": 15826, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "en", - "token_id": 15843, + "token_id": 15827, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143920,42 +143739,42 @@ }, { "str": "}}", - "token_id": 15844, + "token_id": 15828, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "<", - "token_id": 15845, + "token_id": 15829, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "/", - "token_id": 15846, + "token_id": 15830, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "ref", - "token_id": 15847, + "token_id": 15831, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": ">", - "token_id": 15848, + "token_id": 15832, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "brian", - "token_id": 15849, + "token_id": 15833, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143964,7 +143783,7 @@ }, { "str": "shea", - "token_id": 15850, + "token_id": 15834, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143973,7 +143792,7 @@ }, { "str": "of", - "token_id": 15851, + "token_id": 15835, "o_rev_id": 1115748853, "in": [], "out": [ @@ -143982,28 +143801,34 @@ }, { "str": "'", - "token_id": 15852, + "token_id": 15836, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 15853, + "token_id": 15837, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "[[", - "token_id": 15854, + "token_id": 15838, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "game", - "token_id": 15855, + "token_id": 15839, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144012,7 +143837,7 @@ }, { "str": "informer", - "token_id": 15856, + "token_id": 15840, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144021,28 +143846,34 @@ }, { "str": "]]", - "token_id": 15857, + "token_id": 15841, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 15858, + "token_id": 15842, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "'", - "token_id": 15859, + "token_id": 15843, "o_rev_id": 1115748853, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "praised", - "token_id": 15860, + "token_id": 15844, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144051,7 +143882,7 @@ }, { "str": "the", - "token_id": 15861, + "token_id": 15845, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144060,7 +143891,7 @@ }, { "str": "larger", - "token_id": 15862, + "token_id": 15846, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144069,7 +143900,7 @@ }, { "str": "amount", - "token_id": 15863, + "token_id": 15847, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144078,7 +143909,7 @@ }, { "str": "of", - "token_id": 15864, + "token_id": 15848, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144087,7 +143918,7 @@ }, { "str": "content", - "token_id": 15865, + "token_id": 15849, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144096,7 +143927,7 @@ }, { "str": "availible", - "token_id": 15866, + "token_id": 15850, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144105,7 +143936,7 @@ }, { "str": "at", - "token_id": 15867, + "token_id": 15851, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144114,7 +143945,7 @@ }, { "str": "launch", - "token_id": 15868, + "token_id": 15852, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144123,7 +143954,7 @@ }, { "str": "compares", - "token_id": 15869, + "token_id": 15853, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144132,28 +143963,28 @@ }, { "str": "to", - "token_id": 15870, + "token_id": 15854, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "previous", - "token_id": 15871, + "token_id": 15855, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "entries", - "token_id": 15872, + "token_id": 15856, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "in", - "token_id": 15873, + "token_id": 15857, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144162,7 +143993,7 @@ }, { "str": "the", - "token_id": 15874, + "token_id": 15858, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144171,7 +144002,7 @@ }, { "str": "series", - "token_id": 15875, + "token_id": 15859, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144180,7 +144011,7 @@ }, { "str": ",", - "token_id": 15876, + "token_id": 15860, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144189,7 +144020,7 @@ }, { "str": "as", - "token_id": 15877, + "token_id": 15861, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144198,7 +144029,7 @@ }, { "str": "well", - "token_id": 15878, + "token_id": 15862, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144207,7 +144038,7 @@ }, { "str": "as", - "token_id": 15879, + "token_id": 15863, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144216,7 +144047,7 @@ }, { "str": "how", - "token_id": 15880, + "token_id": 15864, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144225,7 +144056,7 @@ }, { "str": "the", - "token_id": 15881, + "token_id": 15865, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144234,7 +144065,7 @@ }, { "str": "game", - "token_id": 15882, + "token_id": 15866, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144243,7 +144074,7 @@ }, { "str": "blended", - "token_id": 15883, + "token_id": 15867, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144252,7 +144083,7 @@ }, { "str": "new", - "token_id": 15884, + "token_id": 15868, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144261,7 +144092,7 @@ }, { "str": "and", - "token_id": 15885, + "token_id": 15869, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144270,7 +144101,7 @@ }, { "str": "returning", - "token_id": 15886, + "token_id": 15870, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144279,7 +144110,7 @@ }, { "str": "content", - "token_id": 15887, + "token_id": 15871, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144288,7 +144119,7 @@ }, { "str": ",", - "token_id": 15888, + "token_id": 15872, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144297,7 +144128,7 @@ }, { "str": "calling", - "token_id": 15889, + "token_id": 15873, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144306,7 +144137,7 @@ }, { "str": "it", - "token_id": 15890, + "token_id": 15874, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144315,7 +144146,7 @@ }, { "str": "the", - "token_id": 15891, + "token_id": 15875, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144324,7 +144155,7 @@ }, { "str": "series", - "token_id": 15892, + "token_id": 15876, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144333,7 +144164,7 @@ }, { "str": "'", - "token_id": 15893, + "token_id": 15877, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144342,7 +144173,7 @@ }, { "str": "s", - "token_id": 15894, + "token_id": 15878, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144351,7 +144182,7 @@ }, { "str": "\"", - "token_id": 15895, + "token_id": 15879, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144360,7 +144191,7 @@ }, { "str": "best", - "token_id": 15896, + "token_id": 15880, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144369,7 +144200,7 @@ }, { "str": "entry", - "token_id": 15897, + "token_id": 15881, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144378,7 +144209,7 @@ }, { "str": "to", - "token_id": 15898, + "token_id": 15882, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144387,7 +144218,7 @@ }, { "str": "date", - "token_id": 15899, + "token_id": 15883, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144396,7 +144227,7 @@ }, { "str": "\"", - "token_id": 15900, + "token_id": 15884, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144405,7 +144236,7 @@ }, { "str": ".", - "token_id": 15901, + "token_id": 15885, "o_rev_id": 1115748853, "in": [], "out": [ @@ -144414,49 +144245,49 @@ }, { "str": "<", - "token_id": 15902, + "token_id": 15886, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "ref", - "token_id": 15903, + "token_id": 15887, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "name", - "token_id": 15904, + "token_id": 15888, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "=", - "token_id": 15905, + "token_id": 15889, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "\"", - "token_id": 15906, + "token_id": 15890, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "gi", - "token_id": 15907, + "token_id": 15891, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "\"", - "token_id": 15908, + "token_id": 15892, "o_rev_id": 1115748853, "in": [ 1117591128 @@ -144467,7 +144298,7 @@ }, { "str": "/", - "token_id": 15909, + "token_id": 15893, "o_rev_id": 1115748853, "in": [ 1117591128 @@ -144478,84 +144309,84 @@ }, { "str": ">", - "token_id": 15910, + "token_id": 15894, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "increased", - "token_id": 15911, + "token_id": 15895, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "by", - "token_id": 15912, + "token_id": 15896, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "largest", - "token_id": 15913, + "token_id": 15897, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "increase", - "token_id": 15914, + "token_id": 15898, "o_rev_id": 1115748853, "in": [], "out": [] }, { "str": "during", - "token_id": 15915, + "token_id": 15899, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 15916, + "token_id": 15900, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "live", - "token_id": 15917, + "token_id": 15901, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 15918, + "token_id": 15902, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "on", - "token_id": 15919, + "token_id": 15903, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "9", - "token_id": 15920, + "token_id": 15904, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "october", - "token_id": 15921, + "token_id": 15905, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -144566,39 +144397,35 @@ }, { "str": ",", - "token_id": 15922, + "token_id": 15906, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "a", - "token_id": 15923, + "token_id": 15907, "o_rev_id": 1115751729, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "'", - "token_id": 15924, + "token_id": 15908, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 15925, + "token_id": 15909, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15926, + "token_id": 15910, "o_rev_id": 1115751729, "in": [ 1216768014 @@ -144609,214 +144436,210 @@ }, { "str": "3", - "token_id": 15927, + "token_id": 15911, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 15928, + "token_id": 15912, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 15929, + "token_id": 15913, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "concert", - "token_id": 15930, + "token_id": 15914, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "was", - "token_id": 15931, + "token_id": 15915, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "held", - "token_id": 15932, + "token_id": 15916, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "starring", - "token_id": 15933, + "token_id": 15917, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "deep", - "token_id": 15934, + "token_id": 15918, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "cut", - "token_id": 15935, + "token_id": 15919, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 15936, + "token_id": 15920, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 15937, + "token_id": 15921, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 15938, + "token_id": 15922, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 15939, + "token_id": 15923, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "{{", - "token_id": 15940, + "token_id": 15924, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "cite", - "token_id": 15941, + "token_id": 15925, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "web", - "token_id": 15942, + "token_id": 15926, "o_rev_id": 1115751729, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "|", - "token_id": 15943, + "token_id": 15927, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "last", - "token_id": 15944, + "token_id": 15928, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 15945, + "token_id": 15929, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "norman", - "token_id": 15946, + "token_id": 15930, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 15947, + "token_id": 15931, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "first", - "token_id": 15948, + "token_id": 15932, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 15949, + "token_id": 15933, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "jim", - "token_id": 15950, + "token_id": 15934, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 15951, + "token_id": 15935, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 15952, + "token_id": 15936, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 15953, + "token_id": 15937, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 15954, + "token_id": 15938, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 15955, + "token_id": 15939, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "09", - "token_id": 15956, + "token_id": 15940, "o_rev_id": 1115751729, "in": [], "out": [ @@ -144825,7 +144648,7 @@ }, { "str": "-", - "token_id": 15957, + "token_id": 15941, "o_rev_id": 1115751729, "in": [], "out": [ @@ -144834,7 +144657,7 @@ }, { "str": "01", - "token_id": 15958, + "token_id": 15942, "o_rev_id": 1115751729, "in": [], "out": [ @@ -144843,385 +144666,385 @@ }, { "str": "|", - "token_id": 15959, + "token_id": 15943, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "title", - "token_id": 15960, + "token_id": 15944, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 15961, + "token_id": 15945, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "animal", - "token_id": 15962, + "token_id": 15946, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "crossing", - "token_id": 15963, + "token_id": 15947, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "and", - "token_id": 15964, + "token_id": 15948, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15965, + "token_id": 15949, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 15966, + "token_id": 15950, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "concerts", - "token_id": 15967, + "token_id": 15951, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "to", - "token_id": 15968, + "token_id": 15952, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "headline", - "token_id": 15969, + "token_id": 15953, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 15970, + "token_id": 15954, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "live", - "token_id": 15971, + "token_id": 15955, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 15972, + "token_id": 15956, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 15973, + "token_id": 15957, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "url", - "token_id": 15974, + "token_id": 15958, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 15975, + "token_id": 15959, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "https", - "token_id": 15976, + "token_id": 15960, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 15977, + "token_id": 15961, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 15978, + "token_id": 15962, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 15979, + "token_id": 15963, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "www", - "token_id": 15980, + "token_id": 15964, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 15981, + "token_id": 15965, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 15982, + "token_id": 15966, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 15983, + "token_id": 15967, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "com", - "token_id": 15984, + "token_id": 15968, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 15985, + "token_id": 15969, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "news", - "token_id": 15986, + "token_id": 15970, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 15987, + "token_id": 15971, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 15988, + "token_id": 15972, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 15989, + "token_id": 15973, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "09", - "token_id": 15990, + "token_id": 15974, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 15991, + "token_id": 15975, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "animal", - "token_id": 15992, + "token_id": 15976, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 15993, + "token_id": 15977, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "crossing", - "token_id": 15994, + "token_id": 15978, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 15995, + "token_id": 15979, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "and", - "token_id": 15996, + "token_id": 15980, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 15997, + "token_id": 15981, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 15998, + "token_id": 15982, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 15999, + "token_id": 15983, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16000, + "token_id": 15984, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16001, + "token_id": 15985, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "concerts", - "token_id": 16002, + "token_id": 15986, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16003, + "token_id": 15987, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "to", - "token_id": 16004, + "token_id": 15988, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16005, + "token_id": 15989, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "headline", - "token_id": 16006, + "token_id": 15990, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16007, + "token_id": 15991, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16008, + "token_id": 15992, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16009, + "token_id": 15993, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "live", - "token_id": 16010, + "token_id": 15994, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16011, + "token_id": 15995, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16012, + "token_id": 15996, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16013, + "token_id": 15997, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145230,28 +145053,28 @@ }, { "str": "access", - "token_id": 16014, + "token_id": 15998, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16015, + "token_id": 15999, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 16016, + "token_id": 16000, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16017, + "token_id": 16001, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145260,21 +145083,21 @@ }, { "str": "2022", - "token_id": 16018, + "token_id": 16002, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16019, + "token_id": 16003, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "10", - "token_id": 16020, + "token_id": 16004, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145283,14 +145106,14 @@ }, { "str": "-", - "token_id": 16021, + "token_id": 16005, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "13", - "token_id": 16022, + "token_id": 16006, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145299,14 +145122,14 @@ }, { "str": "|", - "token_id": 16023, + "token_id": 16007, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "website", - "token_id": 16024, + "token_id": 16008, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145315,14 +145138,14 @@ }, { "str": "=", - "token_id": 16025, + "token_id": 16009, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16026, + "token_id": 16010, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145331,28 +145154,28 @@ }, { "str": "life", - "token_id": 16027, + "token_id": 16011, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16028, + "token_id": 16012, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "language", - "token_id": 16029, + "token_id": 16013, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16030, + "token_id": 16014, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145361,21 +145184,21 @@ }, { "str": "en", - "token_id": 16031, + "token_id": 16015, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16032, + "token_id": 16016, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "gb", - "token_id": 16033, + "token_id": 16017, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145384,56 +145207,56 @@ }, { "str": "}}", - "token_id": 16034, + "token_id": 16018, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16035, + "token_id": 16019, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16036, + "token_id": 16020, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16037, + "token_id": 16021, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16038, + "token_id": 16022, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 16039, + "token_id": 16023, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 16040, + "token_id": 16024, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16041, + "token_id": 16025, "o_rev_id": 1115751729, "in": [ 1216768014 @@ -145444,182 +145267,182 @@ }, { "str": "3", - "token_id": 16042, + "token_id": 16026, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 16043, + "token_id": 16027, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 16044, + "token_id": 16028, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "debuted", - "token_id": 16045, + "token_id": 16029, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "at", - "token_id": 16046, + "token_id": 16030, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "the", - "token_id": 16047, + "token_id": 16031, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "top", - "token_id": 16048, + "token_id": 16032, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "spot", - "token_id": 16049, + "token_id": 16033, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "on", - "token_id": 16050, + "token_id": 16034, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "the", - "token_id": 16051, + "token_id": 16035, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "uk", - "token_id": 16052, + "token_id": 16036, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "boxed", - "token_id": 16053, + "token_id": 16037, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16054, + "token_id": 16038, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ",", - "token_id": 16055, + "token_id": 16039, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16056, + "token_id": 16040, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16057, + "token_id": 16041, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16058, + "token_id": 16042, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "{{", - "token_id": 16059, + "token_id": 16043, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "cite", - "token_id": 16060, + "token_id": 16044, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "web", - "token_id": 16061, + "token_id": 16045, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16062, + "token_id": 16046, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "last", - "token_id": 16063, + "token_id": 16047, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16064, + "token_id": 16048, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "norman", - "token_id": 16065, + "token_id": 16049, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16066, + "token_id": 16050, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "first", - "token_id": 16067, + "token_id": 16051, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -145630,49 +145453,53 @@ }, { "str": "=", - "token_id": 16068, + "token_id": 16052, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "jim", - "token_id": 16069, + "token_id": 16053, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16070, + "token_id": 16054, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 16071, + "token_id": 16055, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16072, + "token_id": 16056, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16073, + "token_id": 16057, "o_rev_id": 1115751729, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 16074, + "token_id": 16058, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145681,7 +145508,7 @@ }, { "str": "09", - "token_id": 16075, + "token_id": 16059, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145690,7 +145517,7 @@ }, { "str": "-", - "token_id": 16076, + "token_id": 16060, "o_rev_id": 1115751729, "in": [], "out": [ @@ -145699,14 +145526,14 @@ }, { "str": "12", - "token_id": 16077, + "token_id": 16061, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16078, + "token_id": 16062, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -145717,14 +145544,18 @@ }, { "str": "title", - "token_id": 16079, + "token_id": 16063, "o_rev_id": 1115751729, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 16080, + "token_id": 16064, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -145735,424 +145566,422 @@ }, { "str": "uk", - "token_id": 16081, + "token_id": 16065, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16082, + "token_id": 16066, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 16083, + "token_id": 16067, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16084, + "token_id": 16068, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16085, + "token_id": 16069, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "inks", - "token_id": 16086, + "token_id": 16070, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "its", - "token_id": 16087, + "token_id": 16071, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "way", - "token_id": 16088, + "token_id": 16072, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "to", - "token_id": 16089, + "token_id": 16073, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "the", - "token_id": 16090, + "token_id": 16074, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "top", - "token_id": 16091, + "token_id": 16075, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "spot", - "token_id": 16092, + "token_id": 16076, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16093, + "token_id": 16077, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "url", - "token_id": 16094, + "token_id": 16078, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16095, + "token_id": 16079, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "https", - "token_id": 16096, + "token_id": 16080, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 16097, + "token_id": 16081, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16098, + "token_id": 16082, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16099, + "token_id": 16083, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "www", - "token_id": 16100, + "token_id": 16084, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16101, + "token_id": 16085, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 16102, + "token_id": 16086, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16103, + "token_id": 16087, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "com", - "token_id": 16104, + "token_id": 16088, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16105, + "token_id": 16089, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "news", - "token_id": 16106, + "token_id": 16090, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16107, + "token_id": 16091, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16108, + "token_id": 16092, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16109, + "token_id": 16093, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "09", - "token_id": 16110, + "token_id": 16094, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16111, + "token_id": 16095, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "uk", - "token_id": 16112, + "token_id": 16096, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16113, + "token_id": 16097, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16114, + "token_id": 16098, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16115, + "token_id": 16099, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16116, + "token_id": 16100, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16117, + "token_id": 16101, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16118, + "token_id": 16102, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16119, + "token_id": 16103, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "inks", - "token_id": 16120, + "token_id": 16104, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16121, + "token_id": 16105, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "its", - "token_id": 16122, + "token_id": 16106, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16123, + "token_id": 16107, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "way", - "token_id": 16124, + "token_id": 16108, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16125, + "token_id": 16109, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "to", - "token_id": 16126, + "token_id": 16110, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16127, + "token_id": 16111, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "the", - "token_id": 16128, + "token_id": 16112, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16129, + "token_id": 16113, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "top", - "token_id": 16130, + "token_id": 16114, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16131, + "token_id": 16115, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "spot", - "token_id": 16132, + "token_id": 16116, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16133, + "token_id": 16117, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "access", - "token_id": 16134, + "token_id": 16118, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16135, + "token_id": 16119, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 16136, + "token_id": 16120, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16137, + "token_id": 16121, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16138, + "token_id": 16122, "o_rev_id": 1115751729, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552 + 1140535097 ] }, { "str": "-", - "token_id": 16139, + "token_id": 16123, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "10", - "token_id": 16140, + "token_id": 16124, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146161,14 +145990,14 @@ }, { "str": "-", - "token_id": 16141, + "token_id": 16125, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "13", - "token_id": 16142, + "token_id": 16126, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146177,14 +146006,14 @@ }, { "str": "|", - "token_id": 16143, + "token_id": 16127, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "website", - "token_id": 16144, + "token_id": 16128, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146193,21 +146022,21 @@ }, { "str": "=", - "token_id": 16145, + "token_id": 16129, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16146, + "token_id": 16130, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "life", - "token_id": 16147, + "token_id": 16131, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146216,42 +146045,42 @@ }, { "str": "|", - "token_id": 16148, + "token_id": 16132, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "language", - "token_id": 16149, + "token_id": 16133, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16150, + "token_id": 16134, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "en", - "token_id": 16151, + "token_id": 16135, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16152, + "token_id": 16136, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "gb", - "token_id": 16153, + "token_id": 16137, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146260,219 +146089,217 @@ }, { "str": "}}", - "token_id": 16154, + "token_id": 16138, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16155, + "token_id": 16139, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16156, + "token_id": 16140, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16157, + "token_id": 16141, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16158, + "token_id": 16142, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "where", - "token_id": 16159, + "token_id": 16143, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "it", - "token_id": 16160, + "token_id": 16144, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "remained", - "token_id": 16161, + "token_id": 16145, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "for", - "token_id": 16162, + "token_id": 16146, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "three", - "token_id": 16163, + "token_id": 16147, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "weeks", - "token_id": 16164, + "token_id": 16148, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16165, + "token_id": 16149, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16166, + "token_id": 16150, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16167, + "token_id": 16151, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "{{", - "token_id": 16168, + "token_id": 16152, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "cite", - "token_id": 16169, + "token_id": 16153, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "web", - "token_id": 16170, + "token_id": 16154, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16171, + "token_id": 16155, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "last", - "token_id": 16172, + "token_id": 16156, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16173, + "token_id": 16157, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "reynolds", - "token_id": 16174, + "token_id": 16158, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16175, + "token_id": 16159, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "first", - "token_id": 16176, + "token_id": 16160, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16177, + "token_id": 16161, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ollie", - "token_id": 16178, + "token_id": 16162, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16179, + "token_id": 16163, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 16180, + "token_id": 16164, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16181, + "token_id": 16165, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16182, + "token_id": 16166, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16183, + "token_id": 16167, "o_rev_id": 1115751729, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "09", - "token_id": 16184, + "token_id": 16168, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146481,7 +146308,7 @@ }, { "str": "-", - "token_id": 16185, + "token_id": 16169, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146490,427 +146317,427 @@ }, { "str": "19", - "token_id": 16186, + "token_id": 16170, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16187, + "token_id": 16171, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "title", - "token_id": 16188, + "token_id": 16172, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16189, + "token_id": 16173, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "uk", - "token_id": 16190, + "token_id": 16174, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16191, + "token_id": 16175, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 16192, + "token_id": 16176, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16193, + "token_id": 16177, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16194, + "token_id": 16178, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "holds", - "token_id": 16195, + "token_id": 16179, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "firm", - "token_id": 16196, + "token_id": 16180, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "in", - "token_id": 16197, + "token_id": 16181, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "another", - "token_id": 16198, + "token_id": 16182, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "strong", - "token_id": 16199, + "token_id": 16183, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "week", - "token_id": 16200, + "token_id": 16184, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "for", - "token_id": 16201, + "token_id": 16185, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16202, + "token_id": 16186, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16203, + "token_id": 16187, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "url", - "token_id": 16204, + "token_id": 16188, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16205, + "token_id": 16189, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "https", - "token_id": 16206, + "token_id": 16190, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 16207, + "token_id": 16191, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16208, + "token_id": 16192, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16209, + "token_id": 16193, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "www", - "token_id": 16210, + "token_id": 16194, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16211, + "token_id": 16195, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 16212, + "token_id": 16196, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16213, + "token_id": 16197, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "com", - "token_id": 16214, + "token_id": 16198, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16215, + "token_id": 16199, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "news", - "token_id": 16216, + "token_id": 16200, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16217, + "token_id": 16201, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16218, + "token_id": 16202, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16219, + "token_id": 16203, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "09", - "token_id": 16220, + "token_id": 16204, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16221, + "token_id": 16205, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "uk", - "token_id": 16222, + "token_id": 16206, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16223, + "token_id": 16207, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16224, + "token_id": 16208, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16225, + "token_id": 16209, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16226, + "token_id": 16210, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16227, + "token_id": 16211, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16228, + "token_id": 16212, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16229, + "token_id": 16213, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "holds", - "token_id": 16230, + "token_id": 16214, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16231, + "token_id": 16215, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "firm", - "token_id": 16232, + "token_id": 16216, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16233, + "token_id": 16217, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "in", - "token_id": 16234, + "token_id": 16218, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16235, + "token_id": 16219, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "another", - "token_id": 16236, + "token_id": 16220, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16237, + "token_id": 16221, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "strong", - "token_id": 16238, + "token_id": 16222, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16239, + "token_id": 16223, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "week", - "token_id": 16240, + "token_id": 16224, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16241, + "token_id": 16225, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "for", - "token_id": 16242, + "token_id": 16226, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16243, + "token_id": 16227, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16244, + "token_id": 16228, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16245, + "token_id": 16229, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "access", - "token_id": 16246, + "token_id": 16230, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146919,42 +146746,42 @@ }, { "str": "-", - "token_id": 16247, + "token_id": 16231, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 16248, + "token_id": 16232, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16249, + "token_id": 16233, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16250, + "token_id": 16234, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16251, + "token_id": 16235, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "10", - "token_id": 16252, + "token_id": 16236, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146963,14 +146790,14 @@ }, { "str": "-", - "token_id": 16253, + "token_id": 16237, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "13", - "token_id": 16254, + "token_id": 16238, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146979,14 +146806,14 @@ }, { "str": "|", - "token_id": 16255, + "token_id": 16239, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "website", - "token_id": 16256, + "token_id": 16240, "o_rev_id": 1115751729, "in": [], "out": [ @@ -146995,14 +146822,14 @@ }, { "str": "=", - "token_id": 16257, + "token_id": 16241, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16258, + "token_id": 16242, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -147013,7 +146840,7 @@ }, { "str": "life", - "token_id": 16259, + "token_id": 16243, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147022,14 +146849,14 @@ }, { "str": "|", - "token_id": 16260, + "token_id": 16244, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "language", - "token_id": 16261, + "token_id": 16245, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147038,14 +146865,14 @@ }, { "str": "=", - "token_id": 16262, + "token_id": 16246, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "en", - "token_id": 16263, + "token_id": 16247, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147054,14 +146881,14 @@ }, { "str": "-", - "token_id": 16264, + "token_id": 16248, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "gb", - "token_id": 16265, + "token_id": 16249, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147070,140 +146897,140 @@ }, { "str": "}}", - "token_id": 16266, + "token_id": 16250, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16267, + "token_id": 16251, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16268, + "token_id": 16252, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16269, + "token_id": 16253, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16270, + "token_id": 16254, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16271, + "token_id": 16255, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16272, + "token_id": 16256, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16273, + "token_id": 16257, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "{{", - "token_id": 16274, + "token_id": 16258, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "cite", - "token_id": 16275, + "token_id": 16259, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "web", - "token_id": 16276, + "token_id": 16260, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16277, + "token_id": 16261, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "last", - "token_id": 16278, + "token_id": 16262, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16279, + "token_id": 16263, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "reynolds", - "token_id": 16280, + "token_id": 16264, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16281, + "token_id": 16265, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "first", - "token_id": 16282, + "token_id": 16266, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16283, + "token_id": 16267, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ollie", - "token_id": 16284, + "token_id": 16268, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16285, + "token_id": 16269, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -147214,14 +147041,14 @@ }, { "str": "date", - "token_id": 16286, + "token_id": 16270, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16287, + "token_id": 16271, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -147232,21 +147059,21 @@ }, { "str": "2022", - "token_id": 16288, + "token_id": 16272, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16289, + "token_id": 16273, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "09", - "token_id": 16290, + "token_id": 16274, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147255,7 +147082,7 @@ }, { "str": "-", - "token_id": 16291, + "token_id": 16275, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147264,448 +147091,448 @@ }, { "str": "26", - "token_id": 16292, + "token_id": 16276, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16293, + "token_id": 16277, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "title", - "token_id": 16294, + "token_id": 16278, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16295, + "token_id": 16279, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "uk", - "token_id": 16296, + "token_id": 16280, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16297, + "token_id": 16281, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 16298, + "token_id": 16282, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "mario", - "token_id": 16299, + "token_id": 16283, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "kart", - "token_id": 16300, + "token_id": 16284, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "8", - "token_id": 16301, + "token_id": 16285, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "gains", - "token_id": 16302, + "token_id": 16286, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ground", - "token_id": 16303, + "token_id": 16287, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "as", - "token_id": 16304, + "token_id": 16288, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16305, + "token_id": 16289, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16306, + "token_id": 16290, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "continues", - "token_id": 16307, + "token_id": 16291, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "to", - "token_id": 16308, + "token_id": 16292, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "dominate", - "token_id": 16309, + "token_id": 16293, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16310, + "token_id": 16294, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "url", - "token_id": 16311, + "token_id": 16295, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16312, + "token_id": 16296, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "https", - "token_id": 16313, + "token_id": 16297, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 16314, + "token_id": 16298, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16315, + "token_id": 16299, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16316, + "token_id": 16300, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "www", - "token_id": 16317, + "token_id": 16301, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16318, + "token_id": 16302, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 16319, + "token_id": 16303, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16320, + "token_id": 16304, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "com", - "token_id": 16321, + "token_id": 16305, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16322, + "token_id": 16306, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "news", - "token_id": 16323, + "token_id": 16307, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16324, + "token_id": 16308, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16325, + "token_id": 16309, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16326, + "token_id": 16310, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "09", - "token_id": 16327, + "token_id": 16311, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16328, + "token_id": 16312, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "uk", - "token_id": 16329, + "token_id": 16313, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16330, + "token_id": 16314, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16331, + "token_id": 16315, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16332, + "token_id": 16316, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "mario", - "token_id": 16333, + "token_id": 16317, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16334, + "token_id": 16318, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "kart", - "token_id": 16335, + "token_id": 16319, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16336, + "token_id": 16320, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "8", - "token_id": 16337, + "token_id": 16321, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16338, + "token_id": 16322, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "gains", - "token_id": 16339, + "token_id": 16323, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16340, + "token_id": 16324, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ground", - "token_id": 16341, + "token_id": 16325, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16342, + "token_id": 16326, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "as", - "token_id": 16343, + "token_id": 16327, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16344, + "token_id": 16328, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16345, + "token_id": 16329, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16346, + "token_id": 16330, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16347, + "token_id": 16331, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16348, + "token_id": 16332, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "continues", - "token_id": 16349, + "token_id": 16333, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16350, + "token_id": 16334, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "to", - "token_id": 16351, + "token_id": 16335, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16352, + "token_id": 16336, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "dominate", - "token_id": 16353, + "token_id": 16337, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16354, + "token_id": 16338, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "access", - "token_id": 16355, + "token_id": 16339, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147714,28 +147541,28 @@ }, { "str": "-", - "token_id": 16356, + "token_id": 16340, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 16357, + "token_id": 16341, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16358, + "token_id": 16342, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16359, + "token_id": 16343, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147744,14 +147571,14 @@ }, { "str": "-", - "token_id": 16360, + "token_id": 16344, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "10", - "token_id": 16361, + "token_id": 16345, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147760,49 +147587,49 @@ }, { "str": "-", - "token_id": 16362, + "token_id": 16346, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "13", - "token_id": 16363, + "token_id": 16347, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16364, + "token_id": 16348, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "website", - "token_id": 16365, + "token_id": 16349, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16366, + "token_id": 16350, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16367, + "token_id": 16351, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "life", - "token_id": 16368, + "token_id": 16352, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147811,14 +147638,14 @@ }, { "str": "|", - "token_id": 16369, + "token_id": 16353, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "language", - "token_id": 16370, + "token_id": 16354, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147827,14 +147654,14 @@ }, { "str": "=", - "token_id": 16371, + "token_id": 16355, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "en", - "token_id": 16372, + "token_id": 16356, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147843,14 +147670,14 @@ }, { "str": "-", - "token_id": 16373, + "token_id": 16357, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "gb", - "token_id": 16374, + "token_id": 16358, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147859,49 +147686,49 @@ }, { "str": "}}", - "token_id": 16375, + "token_id": 16359, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16376, + "token_id": 16360, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16377, + "token_id": 16361, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16378, + "token_id": 16362, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16379, + "token_id": 16363, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "until", - "token_id": 16380, + "token_id": 16364, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "it", - "token_id": 16381, + "token_id": 16365, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147910,7 +147737,7 @@ }, { "str": "was", - "token_id": 16382, + "token_id": 16366, "o_rev_id": 1115751729, "in": [], "out": [ @@ -147919,231 +147746,231 @@ }, { "str": "pushed", - "token_id": 16383, + "token_id": 16367, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "to", - "token_id": 16384, + "token_id": 16368, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "second", - "token_id": 16385, + "token_id": 16369, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "place", - "token_id": 16386, + "token_id": 16370, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "by", - "token_id": 16387, + "token_id": 16371, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 16388, + "token_id": 16372, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 16389, + "token_id": 16373, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "[[", - "token_id": 16390, + "token_id": 16374, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "fifa", - "token_id": 16391, + "token_id": 16375, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "23", - "token_id": 16392, + "token_id": 16376, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "]]", - "token_id": 16393, + "token_id": 16377, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 16394, + "token_id": 16378, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "'", - "token_id": 16395, + "token_id": 16379, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16396, + "token_id": 16380, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16397, + "token_id": 16381, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16398, + "token_id": 16382, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16399, + "token_id": 16383, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "{{", - "token_id": 16400, + "token_id": 16384, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "cite", - "token_id": 16401, + "token_id": 16385, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "web", - "token_id": 16402, + "token_id": 16386, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16403, + "token_id": 16387, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "last", - "token_id": 16404, + "token_id": 16388, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16405, + "token_id": 16389, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "norman", - "token_id": 16406, + "token_id": 16390, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16407, + "token_id": 16391, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "first", - "token_id": 16408, + "token_id": 16392, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16409, + "token_id": 16393, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "jim", - "token_id": 16410, + "token_id": 16394, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16411, + "token_id": 16395, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 16412, + "token_id": 16396, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16413, + "token_id": 16397, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16414, + "token_id": 16398, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16415, + "token_id": 16399, "o_rev_id": 1115751729, "in": [], "out": [ @@ -148152,7 +147979,7 @@ }, { "str": "10", - "token_id": 16416, + "token_id": 16400, "o_rev_id": 1115751729, "in": [], "out": [ @@ -148161,7 +147988,7 @@ }, { "str": "-", - "token_id": 16417, + "token_id": 16401, "o_rev_id": 1115751729, "in": [], "out": [ @@ -148170,7 +147997,7 @@ }, { "str": "05", - "token_id": 16418, + "token_id": 16402, "o_rev_id": 1115751729, "in": [], "out": [ @@ -148179,7 +148006,7 @@ }, { "str": "|", - "token_id": 16419, + "token_id": 16403, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -148190,14 +148017,18 @@ }, { "str": "title", - "token_id": 16420, + "token_id": 16404, "o_rev_id": 1115751729, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 16421, + "token_id": 16405, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -148208,420 +148039,420 @@ }, { "str": "uk", - "token_id": 16422, + "token_id": 16406, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16423, + "token_id": 16407, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 16424, + "token_id": 16408, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "fifa", - "token_id": 16425, + "token_id": 16409, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "23", - "token_id": 16426, + "token_id": 16410, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "knocks", - "token_id": 16427, + "token_id": 16411, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16428, + "token_id": 16412, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16429, + "token_id": 16413, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "off", - "token_id": 16430, + "token_id": 16414, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "the", - "token_id": 16431, + "token_id": 16415, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "top", - "token_id": 16432, + "token_id": 16416, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "spot", - "token_id": 16433, + "token_id": 16417, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16434, + "token_id": 16418, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "url", - "token_id": 16435, + "token_id": 16419, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16436, + "token_id": 16420, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "https", - "token_id": 16437, + "token_id": 16421, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ":", - "token_id": 16438, + "token_id": 16422, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16439, + "token_id": 16423, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16440, + "token_id": 16424, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "www", - "token_id": 16441, + "token_id": 16425, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16442, + "token_id": 16426, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 16443, + "token_id": 16427, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ".", - "token_id": 16444, + "token_id": 16428, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "com", - "token_id": 16445, + "token_id": 16429, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16446, + "token_id": 16430, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "news", - "token_id": 16447, + "token_id": 16431, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16448, + "token_id": 16432, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16449, + "token_id": 16433, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16450, + "token_id": 16434, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "10", - "token_id": 16451, + "token_id": 16435, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16452, + "token_id": 16436, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "uk", - "token_id": 16453, + "token_id": 16437, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16454, + "token_id": 16438, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "charts", - "token_id": 16455, + "token_id": 16439, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16456, + "token_id": 16440, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "fifa", - "token_id": 16457, + "token_id": 16441, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16458, + "token_id": 16442, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "23", - "token_id": 16459, + "token_id": 16443, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16460, + "token_id": 16444, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "knocks", - "token_id": 16461, + "token_id": 16445, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16462, + "token_id": 16446, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16463, + "token_id": 16447, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16464, + "token_id": 16448, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "3", - "token_id": 16465, + "token_id": 16449, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16466, + "token_id": 16450, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "off", - "token_id": 16467, + "token_id": 16451, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16468, + "token_id": 16452, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "the", - "token_id": 16469, + "token_id": 16453, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16470, + "token_id": 16454, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "top", - "token_id": 16471, + "token_id": 16455, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16472, + "token_id": 16456, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "spot", - "token_id": 16473, + "token_id": 16457, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16474, + "token_id": 16458, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "access", - "token_id": 16475, + "token_id": 16459, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16476, + "token_id": 16460, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "date", - "token_id": 16477, + "token_id": 16461, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16478, + "token_id": 16462, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "2022", - "token_id": 16479, + "token_id": 16463, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16480, + "token_id": 16464, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "10", - "token_id": 16481, + "token_id": 16465, "o_rev_id": 1115751729, "in": [], "out": [ @@ -148630,42 +148461,42 @@ }, { "str": "-", - "token_id": 16482, + "token_id": 16466, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "13", - "token_id": 16483, + "token_id": 16467, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16484, + "token_id": 16468, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "website", - "token_id": 16485, + "token_id": 16469, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16486, + "token_id": 16470, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16487, + "token_id": 16471, "o_rev_id": 1115751729, "in": [], "out": [ @@ -148674,42 +148505,42 @@ }, { "str": "life", - "token_id": 16488, + "token_id": 16472, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "|", - "token_id": 16489, + "token_id": 16473, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "language", - "token_id": 16490, + "token_id": 16474, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "=", - "token_id": 16491, + "token_id": 16475, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "en", - "token_id": 16492, + "token_id": 16476, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "-", - "token_id": 16493, + "token_id": 16477, "o_rev_id": 1115751729, "in": [], "out": [ @@ -148718,7 +148549,7 @@ }, { "str": "gb", - "token_id": 16494, + "token_id": 16478, "o_rev_id": 1115751729, "in": [ 1202097960 @@ -148729,175 +148560,183 @@ }, { "str": "}}", - "token_id": 16495, + "token_id": 16479, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "<", - "token_id": 16496, + "token_id": 16480, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "/", - "token_id": 16497, + "token_id": 16481, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": "ref", - "token_id": 16498, + "token_id": 16482, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ">", - "token_id": 16499, + "token_id": 16483, "o_rev_id": 1115751729, "in": [], "out": [] }, { "str": ",", - "token_id": 16500, + "token_id": 16484, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "<", - "token_id": 16501, + "token_id": 16485, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "ref", - "token_id": 16502, + "token_id": 16486, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": ">", - "token_id": 16503, + "token_id": 16487, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "{{", - "token_id": 16504, + "token_id": 16488, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "cite", - "token_id": 16505, + "token_id": 16489, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "web", - "token_id": 16506, + "token_id": 16490, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "|", - "token_id": 16507, + "token_id": 16491, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "last", - "token_id": 16508, + "token_id": 16492, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "=", - "token_id": 16509, + "token_id": 16493, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "hagues", - "token_id": 16510, + "token_id": 16494, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "|", - "token_id": 16511, + "token_id": 16495, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "first", - "token_id": 16512, + "token_id": 16496, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "=", - "token_id": 16513, + "token_id": 16497, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "alana", - "token_id": 16514, + "token_id": 16498, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "|", - "token_id": 16515, + "token_id": 16499, "o_rev_id": 1115779250, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "date", - "token_id": 16516, + "token_id": 16500, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "=", - "token_id": 16517, + "token_id": 16501, "o_rev_id": 1115779250, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "2022", - "token_id": 16518, + "token_id": 16502, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16519, + "token_id": 16503, "o_rev_id": 1115779250, "in": [], "out": [ @@ -148906,7 +148745,7 @@ }, { "str": "08", - "token_id": 16520, + "token_id": 16504, "o_rev_id": 1115779250, "in": [], "out": [ @@ -148915,16 +148754,14 @@ }, { "str": "-", - "token_id": 16521, + "token_id": 16505, "o_rev_id": 1115779250, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "10", - "token_id": 16522, + "token_id": 16506, "o_rev_id": 1115779250, "in": [], "out": [ @@ -148933,7 +148770,7 @@ }, { "str": "|", - "token_id": 16523, + "token_id": 16507, "o_rev_id": 1115779250, "in": [ 1202097960 @@ -148944,14 +148781,18 @@ }, { "str": "title", - "token_id": 16524, + "token_id": 16508, "o_rev_id": 1115779250, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 16525, + "token_id": 16509, "o_rev_id": 1115779250, "in": [ 1202097960 @@ -148962,21 +148803,21 @@ }, { "str": "splatoon", - "token_id": 16526, + "token_id": 16510, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "3", - "token_id": 16527, + "token_id": 16511, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "'", - "token_id": 16528, + "token_id": 16512, "o_rev_id": 1115779250, "in": [ 1202097960 @@ -148987,21 +148828,21 @@ }, { "str": "s", - "token_id": 16529, + "token_id": 16513, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "first", - "token_id": 16530, + "token_id": 16514, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 16531, + "token_id": 16515, "o_rev_id": 1115779250, "in": [ 1202097960 @@ -149012,70 +148853,70 @@ }, { "str": "will", - "token_id": 16532, + "token_id": 16516, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "be", - "token_id": 16533, + "token_id": 16517, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "playable", - "token_id": 16534, + "token_id": 16518, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "later", - "token_id": 16535, + "token_id": 16519, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "this", - "token_id": 16536, + "token_id": 16520, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "month", - "token_id": 16537, + "token_id": 16521, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "in", - "token_id": 16538, + "token_id": 16522, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "free", - "token_id": 16539, + "token_id": 16523, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "demo", - "token_id": 16540, + "token_id": 16524, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "|", - "token_id": 16541, + "token_id": 16525, "o_rev_id": 1115779250, "in": [ 1202097960 @@ -149086,14 +148927,14 @@ }, { "str": "url", - "token_id": 16542, + "token_id": 16526, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "=", - "token_id": 16543, + "token_id": 16527, "o_rev_id": 1115779250, "in": [ 1202097960 @@ -149104,294 +148945,294 @@ }, { "str": "https", - "token_id": 16544, + "token_id": 16528, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": ":", - "token_id": 16545, + "token_id": 16529, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "/", - "token_id": 16546, + "token_id": 16530, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "/", - "token_id": 16547, + "token_id": 16531, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "www", - "token_id": 16548, + "token_id": 16532, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": ".", - "token_id": 16549, + "token_id": 16533, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 16550, + "token_id": 16534, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": ".", - "token_id": 16551, + "token_id": 16535, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "com", - "token_id": 16552, + "token_id": 16536, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "/", - "token_id": 16553, + "token_id": 16537, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "news", - "token_id": 16554, + "token_id": 16538, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "/", - "token_id": 16555, + "token_id": 16539, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "2022", - "token_id": 16556, + "token_id": 16540, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "/", - "token_id": 16557, + "token_id": 16541, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "08", - "token_id": 16558, + "token_id": 16542, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "/", - "token_id": 16559, + "token_id": 16543, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16560, + "token_id": 16544, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16561, + "token_id": 16545, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "3s", - "token_id": 16562, + "token_id": 16546, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16563, + "token_id": 16547, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "first", - "token_id": 16564, + "token_id": 16548, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16565, + "token_id": 16549, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 16566, + "token_id": 16550, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16567, + "token_id": 16551, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "will", - "token_id": 16568, + "token_id": 16552, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16569, + "token_id": 16553, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "be", - "token_id": 16570, + "token_id": 16554, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16571, + "token_id": 16555, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "playable", - "token_id": 16572, + "token_id": 16556, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16573, + "token_id": 16557, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "later", - "token_id": 16574, + "token_id": 16558, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16575, + "token_id": 16559, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "this", - "token_id": 16576, + "token_id": 16560, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16577, + "token_id": 16561, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "month", - "token_id": 16578, + "token_id": 16562, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16579, + "token_id": 16563, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "in", - "token_id": 16580, + "token_id": 16564, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16581, + "token_id": 16565, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "free", - "token_id": 16582, + "token_id": 16566, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "-", - "token_id": 16583, + "token_id": 16567, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "demo", - "token_id": 16584, + "token_id": 16568, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "|", - "token_id": 16585, + "token_id": 16569, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149400,7 +149241,7 @@ }, { "str": "access", - "token_id": 16586, + "token_id": 16570, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149409,7 +149250,7 @@ }, { "str": "-", - "token_id": 16587, + "token_id": 16571, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149418,7 +149259,7 @@ }, { "str": "date", - "token_id": 16588, + "token_id": 16572, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149427,7 +149268,7 @@ }, { "str": "=", - "token_id": 16589, + "token_id": 16573, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149436,7 +149277,7 @@ }, { "str": "2022", - "token_id": 16590, + "token_id": 16574, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149445,7 +149286,7 @@ }, { "str": "-", - "token_id": 16591, + "token_id": 16575, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149454,7 +149295,7 @@ }, { "str": "10", - "token_id": 16592, + "token_id": 16576, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149463,16 +149304,14 @@ }, { "str": "-", - "token_id": 16593, + "token_id": 16577, "o_rev_id": 1115779250, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "13", - "token_id": 16594, + "token_id": 16578, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149481,7 +149320,7 @@ }, { "str": "|", - "token_id": 16595, + "token_id": 16579, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149490,7 +149329,7 @@ }, { "str": "website", - "token_id": 16596, + "token_id": 16580, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149499,7 +149338,7 @@ }, { "str": "=", - "token_id": 16597, + "token_id": 16581, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149508,21 +149347,21 @@ }, { "str": "nintendo", - "token_id": 16598, + "token_id": 16582, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "life", - "token_id": 16599, + "token_id": 16583, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "|", - "token_id": 16600, + "token_id": 16584, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149531,7 +149370,7 @@ }, { "str": "language", - "token_id": 16601, + "token_id": 16585, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149540,7 +149379,7 @@ }, { "str": "=", - "token_id": 16602, + "token_id": 16586, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149549,7 +149388,7 @@ }, { "str": "en", - "token_id": 16603, + "token_id": 16587, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149558,21 +149397,21 @@ }, { "str": "-", - "token_id": 16604, + "token_id": 16588, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "gb", - "token_id": 16605, + "token_id": 16589, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "}}", - "token_id": 16606, + "token_id": 16590, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149581,7 +149420,7 @@ }, { "str": "<", - "token_id": 16607, + "token_id": 16591, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149590,14 +149429,14 @@ }, { "str": "/", - "token_id": 16608, + "token_id": 16592, "o_rev_id": 1115779250, "in": [], "out": [] }, { "str": "ref", - "token_id": 16609, + "token_id": 16593, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149606,7 +149445,7 @@ }, { "str": ">", - "token_id": 16610, + "token_id": 16594, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149615,7 +149454,7 @@ }, { "str": "with", - "token_id": 16611, + "token_id": 16595, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149624,7 +149463,7 @@ }, { "str": "team", - "token_id": 16612, + "token_id": 16596, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149633,7 +149472,7 @@ }, { "str": "rock", - "token_id": 16613, + "token_id": 16597, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149642,7 +149481,7 @@ }, { "str": "being", - "token_id": 16614, + "token_id": 16598, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149651,7 +149490,7 @@ }, { "str": "the", - "token_id": 16615, + "token_id": 16599, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149660,7 +149499,7 @@ }, { "str": "winner", - "token_id": 16616, + "token_id": 16600, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149669,7 +149508,7 @@ }, { "str": "in", - "token_id": 16617, + "token_id": 16601, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149678,7 +149517,7 @@ }, { "str": "all", - "token_id": 16618, + "token_id": 16602, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149687,7 +149526,7 @@ }, { "str": "regions", - "token_id": 16619, + "token_id": 16603, "o_rev_id": 1115779250, "in": [], "out": [ @@ -149696,7 +149535,7 @@ }, { "str": "in", - "token_id": 16620, + "token_id": 16604, "o_rev_id": 1115779504, "in": [], "out": [ @@ -149705,7 +149544,7 @@ }, { "str": "japan", - "token_id": 16621, + "token_id": 16605, "o_rev_id": 1115779504, "in": [], "out": [ @@ -149714,196 +149553,196 @@ }, { "str": ",", - "token_id": 16622, + "token_id": 16606, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "as", - "token_id": 16623, + "token_id": 16607, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "well", - "token_id": 16624, + "token_id": 16608, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "as", - "token_id": 16625, + "token_id": 16609, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "one", - "token_id": 16626, + "token_id": 16610, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "of", - "token_id": 16627, + "token_id": 16611, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "the", - "token_id": 16628, + "token_id": 16612, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "[[", - "token_id": 16629, + "token_id": 16613, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "list", - "token_id": 16630, + "token_id": 16614, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "of", - "token_id": 16631, + "token_id": 16615, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "best", - "token_id": 16632, + "token_id": 16616, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "-", - "token_id": 16633, + "token_id": 16617, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "selling", - "token_id": 16634, + "token_id": 16618, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16635, + "token_id": 16619, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "switch", - "token_id": 16636, + "token_id": 16620, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "video", - "token_id": 16637, + "token_id": 16621, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "games", - "token_id": 16638, + "token_id": 16622, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "|", - "token_id": 16639, + "token_id": 16623, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "best", - "token_id": 16640, + "token_id": 16624, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "-", - "token_id": 16641, + "token_id": 16625, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "selling", - "token_id": 16642, + "token_id": 16626, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "games", - "token_id": 16643, + "token_id": 16627, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "on", - "token_id": 16644, + "token_id": 16628, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "the", - "token_id": 16645, + "token_id": 16629, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 16646, + "token_id": 16630, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "switch", - "token_id": 16647, + "token_id": 16631, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "]]", - "token_id": 16648, + "token_id": 16632, "o_rev_id": 1115779504, "in": [], "out": [] }, { "str": "in", - "token_id": 16649, + "token_id": 16633, "o_rev_id": 1116104022, "in": [], "out": [ @@ -149912,7 +149751,7 @@ }, { "str": "a", - "token_id": 16650, + "token_id": 16634, "o_rev_id": 1116104022, "in": [], "out": [ @@ -149921,7 +149760,7 @@ }, { "str": ":", - "token_id": 16651, + "token_id": 16635, "o_rev_id": 1116104022, "in": [], "out": [ @@ -149930,7 +149769,7 @@ }, { "str": "1", - "token_id": 16652, + "token_id": 16636, "o_rev_id": 1116104022, "in": [], "out": [ @@ -149939,7 +149778,7 @@ }, { "str": "\"", - "token_id": 16653, + "token_id": 16637, "o_rev_id": 1116104022, "in": [ 1202097960 @@ -149950,14 +149789,14 @@ }, { "str": ">", - "token_id": 16654, + "token_id": 16638, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "{{", - "token_id": 16655, + "token_id": 16639, "o_rev_id": 1116104022, "in": [], "out": [ @@ -149966,14 +149805,14 @@ }, { "str": "cite", - "token_id": 16656, + "token_id": 16640, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "news", - "token_id": 16657, + "token_id": 16641, "o_rev_id": 1116104022, "in": [], "out": [ @@ -149982,7 +149821,7 @@ }, { "str": "|", - "token_id": 16658, + "token_id": 16642, "o_rev_id": 1116104022, "in": [], "out": [ @@ -149991,14 +149830,14 @@ }, { "str": "last", - "token_id": 16659, + "token_id": 16643, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "=", - "token_id": 16660, + "token_id": 16644, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150007,14 +149846,14 @@ }, { "str": "mccarter", - "token_id": 16661, + "token_id": 16645, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "|", - "token_id": 16662, + "token_id": 16646, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150023,14 +149862,14 @@ }, { "str": "first", - "token_id": 16663, + "token_id": 16647, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "=", - "token_id": 16664, + "token_id": 16648, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150039,14 +149878,14 @@ }, { "str": "reid", - "token_id": 16665, + "token_id": 16649, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "|", - "token_id": 16666, + "token_id": 16650, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150055,14 +149894,14 @@ }, { "str": "date", - "token_id": 16667, + "token_id": 16651, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "=", - "token_id": 16668, + "token_id": 16652, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150071,14 +149910,14 @@ }, { "str": "2022", - "token_id": 16669, + "token_id": 16653, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "-", - "token_id": 16670, + "token_id": 16654, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150087,7 +149926,7 @@ }, { "str": "09", - "token_id": 16671, + "token_id": 16655, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150096,23 +149935,21 @@ }, { "str": "-", - "token_id": 16672, + "token_id": 16656, "o_rev_id": 1116104022, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "21", - "token_id": 16673, + "token_id": 16657, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "|", - "token_id": 16674, + "token_id": 16658, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150121,14 +149958,14 @@ }, { "str": "title", - "token_id": 16675, + "token_id": 16659, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "=", - "token_id": 16676, + "token_id": 16660, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150137,92 +149974,84 @@ }, { "str": "'", - "token_id": 16677, + "token_id": 16661, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16678, + "token_id": 16662, "o_rev_id": 1116104022, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "3", - "token_id": 16679, + "token_id": 16663, "o_rev_id": 1116104022, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "'", - "token_id": 16680, + "token_id": 16664, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "takes", - "token_id": 16681, + "token_id": 16665, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "shooting", - "token_id": 16682, + "token_id": 16666, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "games", - "token_id": 16683, + "token_id": 16667, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "a", - "token_id": 16684, + "token_id": 16668, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "little", - "token_id": 16685, + "token_id": 16669, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "less", - "token_id": 16686, + "token_id": 16670, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "seriously", - "token_id": 16687, + "token_id": 16671, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "|", - "token_id": 16688, + "token_id": 16672, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150231,7 +150060,7 @@ }, { "str": "language", - "token_id": 16689, + "token_id": 16673, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150242,7 +150071,7 @@ }, { "str": "=", - "token_id": 16690, + "token_id": 16674, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150251,7 +150080,7 @@ }, { "str": "en", - "token_id": 16691, + "token_id": 16675, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150262,7 +150091,7 @@ }, { "str": "-", - "token_id": 16692, + "token_id": 16676, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150273,7 +150102,7 @@ }, { "str": "us", - "token_id": 16693, + "token_id": 16677, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150284,7 +150113,7 @@ }, { "str": "|", - "token_id": 16694, + "token_id": 16678, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150293,7 +150122,7 @@ }, { "str": "work", - "token_id": 16695, + "token_id": 16679, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150302,7 +150131,7 @@ }, { "str": "=", - "token_id": 16696, + "token_id": 16680, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150311,63 +150140,63 @@ }, { "str": "[[", - "token_id": 16697, + "token_id": 16681, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "wired", - "token_id": 16698, + "token_id": 16682, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "(", - "token_id": 16699, + "token_id": 16683, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "magazine", - "token_id": 16700, + "token_id": 16684, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": ")", - "token_id": 16701, + "token_id": 16685, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "|", - "token_id": 16702, + "token_id": 16686, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "wired", - "token_id": 16703, + "token_id": 16687, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "]]", - "token_id": 16704, + "token_id": 16688, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "|", - "token_id": 16705, + "token_id": 16689, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150376,7 +150205,7 @@ }, { "str": "publisher", - "token_id": 16706, + "token_id": 16690, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150385,7 +150214,7 @@ }, { "str": "=", - "token_id": 16707, + "token_id": 16691, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150394,7 +150223,7 @@ }, { "str": "[[", - "token_id": 16708, + "token_id": 16692, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150403,7 +150232,7 @@ }, { "str": "condé", - "token_id": 16709, + "token_id": 16693, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150412,7 +150241,7 @@ }, { "str": "nast", - "token_id": 16710, + "token_id": 16694, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150421,7 +150250,7 @@ }, { "str": "publications", - "token_id": 16711, + "token_id": 16695, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150430,7 +150259,7 @@ }, { "str": "]]", - "token_id": 16712, + "token_id": 16696, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150439,7 +150268,7 @@ }, { "str": "|", - "token_id": 16713, + "token_id": 16697, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150448,7 +150277,7 @@ }, { "str": "url", - "token_id": 16714, + "token_id": 16698, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150459,7 +150288,7 @@ }, { "str": "=", - "token_id": 16715, + "token_id": 16699, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150468,133 +150297,133 @@ }, { "str": "https", - "token_id": 16716, + "token_id": 16700, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": ":", - "token_id": 16717, + "token_id": 16701, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "/", - "token_id": 16718, + "token_id": 16702, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "/", - "token_id": 16719, + "token_id": 16703, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "www", - "token_id": 16720, + "token_id": 16704, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": ".", - "token_id": 16721, + "token_id": 16705, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "wired", - "token_id": 16722, + "token_id": 16706, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": ".", - "token_id": 16723, + "token_id": 16707, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "com", - "token_id": 16724, + "token_id": 16708, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "/", - "token_id": 16725, + "token_id": 16709, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "story", - "token_id": 16726, + "token_id": 16710, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "/", - "token_id": 16727, + "token_id": 16711, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 16728, + "token_id": 16712, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "-", - "token_id": 16729, + "token_id": 16713, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "3", - "token_id": 16730, + "token_id": 16714, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "-", - "token_id": 16731, + "token_id": 16715, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "review", - "token_id": 16732, + "token_id": 16716, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "/", - "token_id": 16733, + "token_id": 16717, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "|", - "token_id": 16734, + "token_id": 16718, "o_rev_id": 1116104022, "in": [ 1202097960 @@ -150605,7 +150434,7 @@ }, { "str": "access", - "token_id": 16735, + "token_id": 16719, "o_rev_id": 1116104022, "in": [ 1202097960 @@ -150616,7 +150445,7 @@ }, { "str": "-", - "token_id": 16736, + "token_id": 16720, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150625,14 +150454,14 @@ }, { "str": "date", - "token_id": 16737, + "token_id": 16721, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "=", - "token_id": 16738, + "token_id": 16722, "o_rev_id": 1116104022, "in": [ 1202097960 @@ -150643,37 +150472,39 @@ }, { "str": "2022", - "token_id": 16739, + "token_id": 16723, "o_rev_id": 1116104022, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 16740, + "token_id": 16724, "o_rev_id": 1116104022, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "10", - "token_id": 16741, + "token_id": 16725, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "-", - "token_id": 16742, + "token_id": 16726, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "14", - "token_id": 16743, + "token_id": 16727, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150682,7 +150513,7 @@ }, { "str": "|", - "token_id": 16744, + "token_id": 16728, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150693,7 +150524,7 @@ }, { "str": "issn", - "token_id": 16745, + "token_id": 16729, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150705,7 +150536,7 @@ }, { "str": "=", - "token_id": 16746, + "token_id": 16730, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150716,7 +150547,7 @@ }, { "str": "1059", - "token_id": 16747, + "token_id": 16731, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150728,7 +150559,7 @@ }, { "str": "-", - "token_id": 16748, + "token_id": 16732, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150739,7 +150570,7 @@ }, { "str": "1028", - "token_id": 16749, + "token_id": 16733, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150751,28 +150582,36 @@ }, { "str": "}}", - "token_id": 16750, + "token_id": 16734, "o_rev_id": 1116104022, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "<", - "token_id": 16751, + "token_id": 16735, "o_rev_id": 1116104022, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "/", - "token_id": 16752, + "token_id": 16736, "o_rev_id": 1116104022, - "in": [], - "out": [] + "in": [ + 1180622889 + ], + "out": [ + 1180622793 + ] }, { "str": "ref", - "token_id": 16753, + "token_id": 16737, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150781,18 +150620,19 @@ }, { "str": ">", - "token_id": 16754, + "token_id": 16738, "o_rev_id": 1116104022, "in": [ 1117591128 ], "out": [ - 1117588531 + 1117588531, + 1140535097 ] }, { "str": "<", - "token_id": 16755, + "token_id": 16739, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150804,7 +150644,7 @@ }, { "str": "ref", - "token_id": 16756, + "token_id": 16740, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150816,7 +150656,7 @@ }, { "str": "name", - "token_id": 16757, + "token_id": 16741, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150828,7 +150668,7 @@ }, { "str": "=", - "token_id": 16758, + "token_id": 16742, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150840,7 +150680,7 @@ }, { "str": "\"", - "token_id": 16759, + "token_id": 16743, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150852,7 +150692,7 @@ }, { "str": ",", - "token_id": 16760, + "token_id": 16744, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -150863,7 +150703,7 @@ }, { "str": "\"", - "token_id": 16761, + "token_id": 16745, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150872,7 +150712,7 @@ }, { "str": "/", - "token_id": 16762, + "token_id": 16746, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150881,7 +150721,7 @@ }, { "str": ">", - "token_id": 16763, + "token_id": 16747, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150890,91 +150730,91 @@ }, { "str": "'", - "token_id": 16764, + "token_id": 16748, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "'", - "token_id": 16765, + "token_id": 16749, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "[[", - "token_id": 16766, + "token_id": 16750, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "wired", - "token_id": 16767, + "token_id": 16751, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "(", - "token_id": 16768, + "token_id": 16752, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "magazine", - "token_id": 16769, + "token_id": 16753, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": ")", - "token_id": 16770, + "token_id": 16754, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "|", - "token_id": 16771, + "token_id": 16755, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "wired", - "token_id": 16772, + "token_id": 16756, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "]]", - "token_id": 16773, + "token_id": 16757, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "'", - "token_id": 16774, + "token_id": 16758, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "'", - "token_id": 16775, + "token_id": 16759, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "<", - "token_id": 16776, + "token_id": 16760, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150983,7 +150823,7 @@ }, { "str": "nowiki", - "token_id": 16777, + "token_id": 16761, "o_rev_id": 1116104022, "in": [], "out": [ @@ -150992,7 +150832,7 @@ }, { "str": "/", - "token_id": 16778, + "token_id": 16762, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151001,7 +150841,7 @@ }, { "str": ">", - "token_id": 16779, + "token_id": 16763, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151010,35 +150850,35 @@ }, { "str": "'", - "token_id": 16780, + "token_id": 16764, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "s", - "token_id": 16781, + "token_id": 16765, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "reid", - "token_id": 16782, + "token_id": 16766, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "mccarter", - "token_id": 16783, + "token_id": 16767, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "praised", - "token_id": 16784, + "token_id": 16768, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151047,7 +150887,7 @@ }, { "str": "'", - "token_id": 16785, + "token_id": 16769, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151056,7 +150896,7 @@ }, { "str": "'", - "token_id": 16786, + "token_id": 16770, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151065,7 +150905,7 @@ }, { "str": "splatoon", - "token_id": 16787, + "token_id": 16771, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151074,7 +150914,7 @@ }, { "str": "3", - "token_id": 16788, + "token_id": 16772, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151083,7 +150923,7 @@ }, { "str": "'", - "token_id": 16789, + "token_id": 16773, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151092,7 +150932,7 @@ }, { "str": "'", - "token_id": 16790, + "token_id": 16774, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151101,7 +150941,7 @@ }, { "str": "<", - "token_id": 16791, + "token_id": 16775, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151110,7 +150950,7 @@ }, { "str": "nowiki", - "token_id": 16792, + "token_id": 16776, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151119,7 +150959,7 @@ }, { "str": "/", - "token_id": 16793, + "token_id": 16777, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151128,7 +150968,7 @@ }, { "str": ">", - "token_id": 16794, + "token_id": 16778, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151137,7 +150977,7 @@ }, { "str": "'", - "token_id": 16795, + "token_id": 16779, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151146,7 +150986,7 @@ }, { "str": "s", - "token_id": 16796, + "token_id": 16780, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151155,70 +150995,70 @@ }, { "str": "praised", - "token_id": 16797, + "token_id": 16781, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "the", - "token_id": 16798, + "token_id": 16782, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "game", - "token_id": 16799, + "token_id": 16783, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "'", - "token_id": 16800, + "token_id": 16784, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "s", - "token_id": 16801, + "token_id": 16785, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "original", - "token_id": 16802, + "token_id": 16786, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": ",", - "token_id": 16803, + "token_id": 16787, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "cartoony", - "token_id": 16804, + "token_id": 16788, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "characters", - "token_id": 16805, + "token_id": 16789, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "rather", - "token_id": 16806, + "token_id": 16790, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151227,7 +151067,7 @@ }, { "str": "than", - "token_id": 16807, + "token_id": 16791, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151236,7 +151076,7 @@ }, { "str": "brand", - "token_id": 16808, + "token_id": 16792, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151245,7 +151085,7 @@ }, { "str": "crossovers", - "token_id": 16809, + "token_id": 16793, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151254,7 +151094,7 @@ }, { "str": "and", - "token_id": 16810, + "token_id": 16794, "o_rev_id": 1116104022, "in": [], "out": [ @@ -151263,28 +151103,28 @@ }, { "str": "realistic", - "token_id": 16811, + "token_id": 16795, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "graphics", - "token_id": 16812, + "token_id": 16796, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": ".", - "token_id": 16813, + "token_id": 16797, "o_rev_id": 1116104022, "in": [], "out": [] }, { "str": "<", - "token_id": 16814, + "token_id": 16798, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -151295,7 +151135,7 @@ }, { "str": "ref", - "token_id": 16815, + "token_id": 16799, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -151306,7 +151146,7 @@ }, { "str": "name", - "token_id": 16816, + "token_id": 16800, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -151317,7 +151157,7 @@ }, { "str": "=", - "token_id": 16817, + "token_id": 16801, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -151328,7 +151168,7 @@ }, { "str": "\"", - "token_id": 16818, + "token_id": 16802, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -151339,7 +151179,7 @@ }, { "str": ":", - "token_id": 16819, + "token_id": 16803, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -151351,7 +151191,7 @@ }, { "str": "1", - "token_id": 16820, + "token_id": 16804, "o_rev_id": 1116104022, "in": [ 1117591128 @@ -151363,7 +151203,7 @@ }, { "str": "|", - "token_id": 16821, + "token_id": 16805, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151376,7 +151216,7 @@ }, { "str": "date", - "token_id": 16822, + "token_id": 16806, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151389,7 +151229,7 @@ }, { "str": "=", - "token_id": 16823, + "token_id": 16807, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151402,7 +151242,7 @@ }, { "str": "2021", - "token_id": 16824, + "token_id": 16808, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151415,7 +151255,7 @@ }, { "str": "-", - "token_id": 16825, + "token_id": 16809, "o_rev_id": 1116105230, "in": [ 1144952513 @@ -151427,7 +151267,7 @@ }, { "str": "09", - "token_id": 16826, + "token_id": 16810, "o_rev_id": 1116105230, "in": [ 1144952513 @@ -151439,7 +151279,7 @@ }, { "str": "-", - "token_id": 16827, + "token_id": 16811, "o_rev_id": 1116105230, "in": [ 1144952513 @@ -151451,7 +151291,7 @@ }, { "str": "23", - "token_id": 16828, + "token_id": 16812, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151464,7 +151304,7 @@ }, { "str": "|", - "token_id": 16829, + "token_id": 16813, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151477,7 +151317,7 @@ }, { "str": "url", - "token_id": 16830, + "token_id": 16814, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151490,7 +151330,7 @@ }, { "str": "status", - "token_id": 16831, + "token_id": 16815, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151503,7 +151343,7 @@ }, { "str": "=", - "token_id": 16832, + "token_id": 16816, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151516,7 +151356,7 @@ }, { "str": "live", - "token_id": 16833, + "token_id": 16817, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151531,7 +151371,7 @@ }, { "str": "|", - "token_id": 16834, + "token_id": 16818, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151544,7 +151384,7 @@ }, { "str": "publisher", - "token_id": 16835, + "token_id": 16819, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151557,7 +151397,7 @@ }, { "str": "=", - "token_id": 16836, + "token_id": 16820, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151570,7 +151410,7 @@ }, { "str": "[[", - "token_id": 16837, + "token_id": 16821, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151583,7 +151423,7 @@ }, { "str": "gamestop", - "token_id": 16838, + "token_id": 16822, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151596,7 +151436,7 @@ }, { "str": "]]", - "token_id": 16839, + "token_id": 16823, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151609,7 +151449,7 @@ }, { "str": "|", - "token_id": 16840, + "token_id": 16824, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151622,7 +151462,7 @@ }, { "str": "archive", - "token_id": 16841, + "token_id": 16825, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151635,7 +151475,7 @@ }, { "str": "date", - "token_id": 16842, + "token_id": 16826, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151650,7 +151490,7 @@ }, { "str": "=", - "token_id": 16843, + "token_id": 16827, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151663,7 +151503,7 @@ }, { "str": "24", - "token_id": 16844, + "token_id": 16828, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151676,20 +151516,20 @@ }, { "str": "september", - "token_id": 16845, + "token_id": 16829, "o_rev_id": 1116105230, "in": [ 1144952513, - 1180622889 + 1178773007 ], "out": [ 1144896380, - 1180622793 + 1178772974 ] }, { "str": "2021", - "token_id": 16846, + "token_id": 16830, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151702,7 +151542,7 @@ }, { "str": "|", - "token_id": 16847, + "token_id": 16831, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151715,7 +151555,7 @@ }, { "str": "access", - "token_id": 16848, + "token_id": 16832, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151728,22 +151568,20 @@ }, { "str": "-", - "token_id": 16849, + "token_id": 16833, "o_rev_id": 1116105230, "in": [ 1144952513, - 1178773007, - 1202097960 + 1178773007 ], "out": [ 1144896380, - 1178772974, - 1202071552 + 1178772974 ] }, { "str": "date", - "token_id": 16850, + "token_id": 16834, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151756,7 +151594,7 @@ }, { "str": "=", - "token_id": 16851, + "token_id": 16835, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151769,7 +151607,7 @@ }, { "str": "2021", - "token_id": 16852, + "token_id": 16836, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151782,7 +151620,7 @@ }, { "str": "-", - "token_id": 16853, + "token_id": 16837, "o_rev_id": 1116105230, "in": [ 1144952513 @@ -151794,7 +151632,7 @@ }, { "str": "09", - "token_id": 16854, + "token_id": 16838, "o_rev_id": 1116105230, "in": [ 1144952513 @@ -151806,7 +151644,7 @@ }, { "str": "-", - "token_id": 16855, + "token_id": 16839, "o_rev_id": 1116105230, "in": [ 1144952513 @@ -151818,7 +151656,7 @@ }, { "str": "30", - "token_id": 16856, + "token_id": 16840, "o_rev_id": 1116105230, "in": [ 1144952513, @@ -151831,7 +151669,7 @@ }, { "str": "|", - "token_id": 16857, + "token_id": 16841, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151842,7 +151680,7 @@ }, { "str": "last", - "token_id": 16858, + "token_id": 16842, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151853,7 +151691,7 @@ }, { "str": "=", - "token_id": 16859, + "token_id": 16843, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151864,7 +151702,7 @@ }, { "str": "mcferren", - "token_id": 16860, + "token_id": 16844, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151875,7 +151713,7 @@ }, { "str": "|", - "token_id": 16861, + "token_id": 16845, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151886,7 +151724,7 @@ }, { "str": "first", - "token_id": 16862, + "token_id": 16846, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151897,7 +151735,7 @@ }, { "str": "=", - "token_id": 16863, + "token_id": 16847, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151908,7 +151746,7 @@ }, { "str": "damien", - "token_id": 16864, + "token_id": 16848, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151919,7 +151757,7 @@ }, { "str": "|", - "token_id": 16865, + "token_id": 16849, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151930,7 +151768,7 @@ }, { "str": "date", - "token_id": 16866, + "token_id": 16850, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151941,7 +151779,7 @@ }, { "str": "=", - "token_id": 16867, + "token_id": 16851, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151952,7 +151790,7 @@ }, { "str": "february", - "token_id": 16868, + "token_id": 16852, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151963,7 +151801,7 @@ }, { "str": "18", - "token_id": 16869, + "token_id": 16853, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151974,7 +151812,7 @@ }, { "str": ",", - "token_id": 16870, + "token_id": 16854, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151985,7 +151823,7 @@ }, { "str": "2021", - "token_id": 16871, + "token_id": 16855, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -151996,7 +151834,7 @@ }, { "str": "|", - "token_id": 16872, + "token_id": 16856, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152007,7 +151845,7 @@ }, { "str": "title", - "token_id": 16873, + "token_id": 16857, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152018,7 +151856,7 @@ }, { "str": "=", - "token_id": 16874, + "token_id": 16858, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152029,14 +151867,14 @@ }, { "str": "nintendo", - "token_id": 16875, + "token_id": 16859, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "reveals", - "token_id": 16876, + "token_id": 16860, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152047,7 +151885,7 @@ }, { "str": "splatoon", - "token_id": 16877, + "token_id": 16861, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152058,7 +151896,7 @@ }, { "str": "3", - "token_id": 16878, + "token_id": 16862, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152069,7 +151907,7 @@ }, { "str": ",", - "token_id": 16879, + "token_id": 16863, "o_rev_id": 1116105230, "in": [ 1202071552 @@ -152081,7 +151919,7 @@ }, { "str": "coming", - "token_id": 16880, + "token_id": 16864, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152092,7 +151930,7 @@ }, { "str": "to", - "token_id": 16881, + "token_id": 16865, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152103,14 +151941,14 @@ }, { "str": "switch", - "token_id": 16882, + "token_id": 16866, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "in", - "token_id": 16883, + "token_id": 16867, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152121,7 +151959,7 @@ }, { "str": "2021", - "token_id": 16884, + "token_id": 16868, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152132,7 +151970,7 @@ }, { "str": "|", - "token_id": 16885, + "token_id": 16869, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152143,7 +151981,7 @@ }, { "str": "url", - "token_id": 16886, + "token_id": 16870, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152154,7 +151992,7 @@ }, { "str": "status", - "token_id": 16887, + "token_id": 16871, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152165,7 +152003,7 @@ }, { "str": "=", - "token_id": 16888, + "token_id": 16872, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152176,7 +152014,7 @@ }, { "str": "live", - "token_id": 16889, + "token_id": 16873, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152187,7 +152025,7 @@ }, { "str": "|", - "token_id": 16890, + "token_id": 16874, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152198,7 +152036,7 @@ }, { "str": "archive", - "token_id": 16891, + "token_id": 16875, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152209,7 +152047,7 @@ }, { "str": "date", - "token_id": 16892, + "token_id": 16876, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152220,7 +152058,7 @@ }, { "str": "=", - "token_id": 16893, + "token_id": 16877, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152231,7 +152069,7 @@ }, { "str": "30", - "token_id": 16894, + "token_id": 16878, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152242,7 +152080,7 @@ }, { "str": "september", - "token_id": 16895, + "token_id": 16879, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152253,7 +152091,7 @@ }, { "str": "2021", - "token_id": 16896, + "token_id": 16880, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152264,7 +152102,7 @@ }, { "str": "|", - "token_id": 16897, + "token_id": 16881, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152275,7 +152113,7 @@ }, { "str": "access", - "token_id": 16898, + "token_id": 16882, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152286,7 +152124,7 @@ }, { "str": "-", - "token_id": 16899, + "token_id": 16883, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152297,7 +152135,7 @@ }, { "str": "date", - "token_id": 16900, + "token_id": 16884, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152308,7 +152146,7 @@ }, { "str": "=", - "token_id": 16901, + "token_id": 16885, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152319,7 +152157,7 @@ }, { "str": "february", - "token_id": 16902, + "token_id": 16886, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152330,7 +152168,7 @@ }, { "str": "19", - "token_id": 16903, + "token_id": 16887, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152341,7 +152179,7 @@ }, { "str": ",", - "token_id": 16904, + "token_id": 16888, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152350,7 +152188,7 @@ }, { "str": "2021", - "token_id": 16905, + "token_id": 16889, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152361,7 +152199,7 @@ }, { "str": "|", - "token_id": 16906, + "token_id": 16890, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152372,7 +152210,7 @@ }, { "str": "work", - "token_id": 16907, + "token_id": 16891, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152383,7 +152221,7 @@ }, { "str": "=", - "token_id": 16908, + "token_id": 16892, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152394,7 +152232,7 @@ }, { "str": "[[", - "token_id": 16909, + "token_id": 16893, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152405,7 +152243,7 @@ }, { "str": "nintendo", - "token_id": 16910, + "token_id": 16894, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152416,7 +152254,7 @@ }, { "str": "life", - "token_id": 16911, + "token_id": 16895, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152427,7 +152265,7 @@ }, { "str": "]]", - "token_id": 16912, + "token_id": 16896, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152438,7 +152276,7 @@ }, { "str": "|", - "token_id": 16913, + "token_id": 16897, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152447,7 +152285,7 @@ }, { "str": "publisher", - "token_id": 16914, + "token_id": 16898, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152456,7 +152294,7 @@ }, { "str": "=", - "token_id": 16915, + "token_id": 16899, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152465,7 +152303,7 @@ }, { "str": "hookshot", - "token_id": 16916, + "token_id": 16900, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152474,7 +152312,7 @@ }, { "str": "media", - "token_id": 16917, + "token_id": 16901, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152483,7 +152321,7 @@ }, { "str": "[[", - "token_id": 16918, + "token_id": 16902, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152494,7 +152332,7 @@ }, { "str": "]]", - "token_id": 16919, + "token_id": 16903, "o_rev_id": 1116105230, "in": [ 1178773007 @@ -152505,7 +152343,7 @@ }, { "str": "|", - "token_id": 16920, + "token_id": 16904, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152514,7 +152352,7 @@ }, { "str": "publisher", - "token_id": 16921, + "token_id": 16905, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152523,14 +152361,14 @@ }, { "str": "=", - "token_id": 16922, + "token_id": 16906, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "hookshot", - "token_id": 16923, + "token_id": 16907, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152539,7 +152377,7 @@ }, { "str": "media", - "token_id": 16924, + "token_id": 16908, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152548,7 +152386,7 @@ }, { "str": "[[", - "token_id": 16925, + "token_id": 16909, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152559,7 +152397,7 @@ }, { "str": "]]", - "token_id": 16926, + "token_id": 16910, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152570,7 +152408,7 @@ }, { "str": "|", - "token_id": 16927, + "token_id": 16911, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152582,7 +152420,7 @@ }, { "str": "publisher", - "token_id": 16928, + "token_id": 16912, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152594,7 +152432,7 @@ }, { "str": "=", - "token_id": 16929, + "token_id": 16913, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152606,7 +152444,7 @@ }, { "str": "[[", - "token_id": 16930, + "token_id": 16914, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152617,7 +152455,7 @@ }, { "str": "gamurs", - "token_id": 16931, + "token_id": 16915, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152628,7 +152466,7 @@ }, { "str": "]]", - "token_id": 16932, + "token_id": 16916, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152639,7 +152477,7 @@ }, { "str": "[[", - "token_id": 16933, + "token_id": 16917, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152651,7 +152489,7 @@ }, { "str": "(", - "token_id": 16934, + "token_id": 16918, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152663,7 +152501,7 @@ }, { "str": "website", - "token_id": 16935, + "token_id": 16919, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152675,7 +152513,7 @@ }, { "str": ")", - "token_id": 16936, + "token_id": 16920, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152687,7 +152525,7 @@ }, { "str": "|", - "token_id": 16937, + "token_id": 16921, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152699,7 +152537,7 @@ }, { "str": "polygon", - "token_id": 16938, + "token_id": 16922, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152711,7 +152549,7 @@ }, { "str": "]]", - "token_id": 16939, + "token_id": 16923, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152723,7 +152561,7 @@ }, { "str": "|", - "token_id": 16940, + "token_id": 16924, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152735,7 +152573,7 @@ }, { "str": "publisher", - "token_id": 16941, + "token_id": 16925, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152747,7 +152585,7 @@ }, { "str": "=", - "token_id": 16942, + "token_id": 16926, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152759,7 +152597,7 @@ }, { "str": "[[", - "token_id": 16943, + "token_id": 16927, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152771,7 +152609,7 @@ }, { "str": "vox", - "token_id": 16944, + "token_id": 16928, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152783,7 +152621,7 @@ }, { "str": "media", - "token_id": 16945, + "token_id": 16929, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152795,7 +152633,7 @@ }, { "str": "]]", - "token_id": 16946, + "token_id": 16930, "o_rev_id": 1116105230, "in": [ 1117591128 @@ -152807,7 +152645,7 @@ }, { "str": "[[", - "token_id": 16947, + "token_id": 16931, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152816,14 +152654,14 @@ }, { "str": "news", - "token_id": 16948, + "token_id": 16932, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "]]", - "token_id": 16949, + "token_id": 16933, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152832,28 +152670,28 @@ }, { "str": "|", - "token_id": 16950, + "token_id": 16934, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "publisher", - "token_id": 16951, + "token_id": 16935, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "=", - "token_id": 16952, + "token_id": 16936, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "[[", - "token_id": 16953, + "token_id": 16937, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152862,7 +152700,7 @@ }, { "str": "bloomberg", - "token_id": 16954, + "token_id": 16938, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152871,7 +152709,7 @@ }, { "str": "l", - "token_id": 16955, + "token_id": 16939, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152880,14 +152718,14 @@ }, { "str": ".", - "token_id": 16956, + "token_id": 16940, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "p", - "token_id": 16957, + "token_id": 16941, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152896,14 +152734,14 @@ }, { "str": ".", - "token_id": 16958, + "token_id": 16942, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "]]", - "token_id": 16959, + "token_id": 16943, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152912,7 +152750,7 @@ }, { "str": "[[", - "token_id": 16960, + "token_id": 16944, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152921,7 +152759,7 @@ }, { "str": "]]", - "token_id": 16961, + "token_id": 16945, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152930,28 +152768,28 @@ }, { "str": "|", - "token_id": 16962, + "token_id": 16946, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "publisher", - "token_id": 16963, + "token_id": 16947, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "=", - "token_id": 16964, + "token_id": 16948, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "hookshot", - "token_id": 16965, + "token_id": 16949, "o_rev_id": 1116105230, "in": [], "out": [ @@ -152960,14 +152798,14 @@ }, { "str": "media", - "token_id": 16966, + "token_id": 16950, "o_rev_id": 1116105230, "in": [], "out": [] }, { "str": "=", - "token_id": 16967, + "token_id": 16951, "o_rev_id": 1116108166, "in": [], "out": [ @@ -152976,7 +152814,7 @@ }, { "str": "=", - "token_id": 16968, + "token_id": 16952, "o_rev_id": 1116108166, "in": [], "out": [ @@ -152985,7 +152823,7 @@ }, { "str": "=", - "token_id": 16969, + "token_id": 16953, "o_rev_id": 1116108166, "in": [], "out": [ @@ -152994,7 +152832,7 @@ }, { "str": "controversy", - "token_id": 16970, + "token_id": 16954, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153003,7 +152841,7 @@ }, { "str": "=", - "token_id": 16971, + "token_id": 16955, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153012,7 +152850,7 @@ }, { "str": "=", - "token_id": 16972, + "token_id": 16956, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153021,7 +152859,7 @@ }, { "str": "=", - "token_id": 16973, + "token_id": 16957, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153030,7 +152868,7 @@ }, { "str": "on", - "token_id": 16974, + "token_id": 16958, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153039,7 +152877,7 @@ }, { "str": "8", - "token_id": 16975, + "token_id": 16959, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153048,7 +152886,7 @@ }, { "str": "october", - "token_id": 16976, + "token_id": 16960, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153057,7 +152895,7 @@ }, { "str": "2022", - "token_id": 16977, + "token_id": 16961, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153066,7 +152904,7 @@ }, { "str": ",", - "token_id": 16978, + "token_id": 16962, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153075,7 +152913,7 @@ }, { "str": "reports", - "token_id": 16979, + "token_id": 16963, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153084,7 +152922,7 @@ }, { "str": "emerged", - "token_id": 16980, + "token_id": 16964, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153093,7 +152931,7 @@ }, { "str": "that", - "token_id": 16981, + "token_id": 16965, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153102,7 +152940,7 @@ }, { "str": "the", - "token_id": 16982, + "token_id": 16966, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153111,7 +152949,7 @@ }, { "str": "japanese", - "token_id": 16983, + "token_id": 16967, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153120,7 +152958,7 @@ }, { "str": "[[", - "token_id": 16984, + "token_id": 16968, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153129,7 +152967,7 @@ }, { "str": "vtuber", - "token_id": 16985, + "token_id": 16969, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153138,7 +152976,7 @@ }, { "str": "]]", - "token_id": 16986, + "token_id": 16970, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153147,7 +152985,7 @@ }, { "str": "group", - "token_id": 16987, + "token_id": 16971, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153156,7 +152994,7 @@ }, { "str": "sinsogumi", - "token_id": 16988, + "token_id": 16972, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153165,7 +153003,7 @@ }, { "str": "were", - "token_id": 16989, + "token_id": 16973, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153174,7 +153012,7 @@ }, { "str": "broadcasting", - "token_id": 16990, + "token_id": 16974, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153183,7 +153021,7 @@ }, { "str": "[[", - "token_id": 16991, + "token_id": 16975, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153192,7 +153030,7 @@ }, { "str": "pornography", - "token_id": 16992, + "token_id": 16976, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153201,7 +153039,7 @@ }, { "str": "]]", - "token_id": 16993, + "token_id": 16977, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153210,7 +153048,7 @@ }, { "str": "by", - "token_id": 16994, + "token_id": 16978, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153219,7 +153057,7 @@ }, { "str": "[[", - "token_id": 16995, + "token_id": 16979, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153228,7 +153066,7 @@ }, { "str": "chroma", - "token_id": 16996, + "token_id": 16980, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153237,7 +153075,7 @@ }, { "str": "key", - "token_id": 16997, + "token_id": 16981, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153246,7 +153084,7 @@ }, { "str": "|", - "token_id": 16998, + "token_id": 16982, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153255,7 +153093,7 @@ }, { "str": "chroma", - "token_id": 16999, + "token_id": 16983, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153264,7 +153102,7 @@ }, { "str": "keying", - "token_id": 17000, + "token_id": 16984, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153273,7 +153111,7 @@ }, { "str": "]]", - "token_id": 17001, + "token_id": 16985, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153282,7 +153120,7 @@ }, { "str": "ink", - "token_id": 17002, + "token_id": 16986, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153291,7 +153129,7 @@ }, { "str": "in", - "token_id": 17003, + "token_id": 16987, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153300,7 +153138,7 @@ }, { "str": "'", - "token_id": 17004, + "token_id": 16988, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153309,7 +153147,7 @@ }, { "str": "'", - "token_id": 17005, + "token_id": 16989, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153318,7 +153156,7 @@ }, { "str": "splatoon", - "token_id": 17006, + "token_id": 16990, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153327,7 +153165,7 @@ }, { "str": "3", - "token_id": 17007, + "token_id": 16991, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153336,7 +153174,7 @@ }, { "str": "'", - "token_id": 17008, + "token_id": 16992, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153345,7 +153183,7 @@ }, { "str": "'", - "token_id": 17009, + "token_id": 16993, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153354,7 +153192,7 @@ }, { "str": "in", - "token_id": 17010, + "token_id": 16994, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153363,7 +153201,7 @@ }, { "str": "a", - "token_id": 17011, + "token_id": 16995, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153372,7 +153210,7 @@ }, { "str": "competition", - "token_id": 17012, + "token_id": 16996, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153381,7 +153219,7 @@ }, { "str": "to", - "token_id": 17013, + "token_id": 16997, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153390,7 +153228,7 @@ }, { "str": "not", - "token_id": 17014, + "token_id": 16998, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153399,7 +153237,7 @@ }, { "str": "be", - "token_id": 17015, + "token_id": 16999, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153408,7 +153246,7 @@ }, { "str": "banned", - "token_id": 17016, + "token_id": 17000, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153417,7 +153255,7 @@ }, { "str": "from", - "token_id": 17017, + "token_id": 17001, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153426,7 +153264,7 @@ }, { "str": "[[", - "token_id": 17018, + "token_id": 17002, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153435,7 +153273,7 @@ }, { "str": "youtube", - "token_id": 17019, + "token_id": 17003, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153444,7 +153282,7 @@ }, { "str": "]]", - "token_id": 17020, + "token_id": 17004, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153453,7 +153291,7 @@ }, { "str": ".", - "token_id": 17021, + "token_id": 17005, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153462,7 +153300,7 @@ }, { "str": "in", - "token_id": 17022, + "token_id": 17006, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153471,7 +153309,7 @@ }, { "str": "response", - "token_id": 17023, + "token_id": 17007, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153480,7 +153318,7 @@ }, { "str": ",", - "token_id": 17024, + "token_id": 17008, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153489,7 +153327,7 @@ }, { "str": "nintendo", - "token_id": 17025, + "token_id": 17009, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153498,7 +153336,7 @@ }, { "str": "issued", - "token_id": 17026, + "token_id": 17010, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153507,7 +153345,7 @@ }, { "str": "[[", - "token_id": 17027, + "token_id": 17011, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153516,7 +153354,7 @@ }, { "str": "youtube", - "token_id": 17028, + "token_id": 17012, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153525,7 +153363,7 @@ }, { "str": "copyright", - "token_id": 17029, + "token_id": 17013, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153534,7 +153372,7 @@ }, { "str": "strike", - "token_id": 17030, + "token_id": 17014, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153543,7 +153381,7 @@ }, { "str": "|", - "token_id": 17031, + "token_id": 17015, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153552,7 +153390,7 @@ }, { "str": "copyright", - "token_id": 17032, + "token_id": 17016, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153561,7 +153399,7 @@ }, { "str": "strikes", - "token_id": 17033, + "token_id": 17017, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153570,7 +153408,7 @@ }, { "str": "]]", - "token_id": 17034, + "token_id": 17018, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153579,7 +153417,7 @@ }, { "str": "to", - "token_id": 17035, + "token_id": 17019, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153588,7 +153426,7 @@ }, { "str": "the", - "token_id": 17036, + "token_id": 17020, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153597,7 +153435,7 @@ }, { "str": "videos", - "token_id": 17037, + "token_id": 17021, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153606,7 +153444,7 @@ }, { "str": ",", - "token_id": 17038, + "token_id": 17022, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153615,7 +153453,7 @@ }, { "str": "and", - "token_id": 17039, + "token_id": 17023, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153624,7 +153462,7 @@ }, { "str": "the", - "token_id": 17040, + "token_id": 17024, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153633,7 +153471,7 @@ }, { "str": "channels", - "token_id": 17041, + "token_id": 17025, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153642,7 +153480,7 @@ }, { "str": "were", - "token_id": 17042, + "token_id": 17026, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153651,7 +153489,7 @@ }, { "str": "subsequently", - "token_id": 17043, + "token_id": 17027, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153660,7 +153498,7 @@ }, { "str": "terminated", - "token_id": 17044, + "token_id": 17028, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153669,7 +153507,7 @@ }, { "str": ".", - "token_id": 17045, + "token_id": 17029, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153678,7 +153516,7 @@ }, { "str": "members", - "token_id": 17046, + "token_id": 17030, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153687,7 +153525,7 @@ }, { "str": "of", - "token_id": 17047, + "token_id": 17031, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153696,7 +153534,7 @@ }, { "str": "sinsogumi", - "token_id": 17048, + "token_id": 17032, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153705,7 +153543,7 @@ }, { "str": "later", - "token_id": 17049, + "token_id": 17033, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153714,7 +153552,7 @@ }, { "str": "apologized", - "token_id": 17050, + "token_id": 17034, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153723,7 +153561,7 @@ }, { "str": ",", - "token_id": 17051, + "token_id": 17035, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153732,7 +153570,7 @@ }, { "str": "with", - "token_id": 17052, + "token_id": 17036, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153741,7 +153579,7 @@ }, { "str": "the", - "token_id": 17053, + "token_id": 17037, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153750,7 +153588,7 @@ }, { "str": "group", - "token_id": 17054, + "token_id": 17038, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153759,7 +153597,7 @@ }, { "str": "'", - "token_id": 17055, + "token_id": 17039, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153768,7 +153606,7 @@ }, { "str": "s", - "token_id": 17056, + "token_id": 17040, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153777,7 +153615,7 @@ }, { "str": "leader", - "token_id": 17057, + "token_id": 17041, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153786,7 +153624,7 @@ }, { "str": ",", - "token_id": 17058, + "token_id": 17042, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153795,7 +153633,7 @@ }, { "str": "ikinone", - "token_id": 17059, + "token_id": 17043, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153804,7 +153642,7 @@ }, { "str": "tomeru", - "token_id": 17060, + "token_id": 17044, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153813,7 +153651,7 @@ }, { "str": ",", - "token_id": 17061, + "token_id": 17045, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153822,7 +153660,7 @@ }, { "str": "doing", - "token_id": 17062, + "token_id": 17046, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153831,7 +153669,7 @@ }, { "str": "so", - "token_id": 17063, + "token_id": 17047, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153840,7 +153678,7 @@ }, { "str": "in", - "token_id": 17064, + "token_id": 17048, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153849,7 +153687,7 @@ }, { "str": "a", - "token_id": 17065, + "token_id": 17049, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153858,7 +153696,7 @@ }, { "str": "[[", - "token_id": 17066, + "token_id": 17050, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153867,7 +153705,7 @@ }, { "str": "dinosaur", - "token_id": 17067, + "token_id": 17051, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153876,7 +153714,7 @@ }, { "str": "]]", - "token_id": 17068, + "token_id": 17052, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153885,7 +153723,7 @@ }, { "str": "costume", - "token_id": 17069, + "token_id": 17053, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153894,7 +153732,7 @@ }, { "str": ".", - "token_id": 17070, + "token_id": 17054, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153903,7 +153741,7 @@ }, { "str": "<", - "token_id": 17071, + "token_id": 17055, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153912,7 +153750,7 @@ }, { "str": "ref", - "token_id": 17072, + "token_id": 17056, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153921,7 +153759,7 @@ }, { "str": ">", - "token_id": 17073, + "token_id": 17057, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153930,7 +153768,7 @@ }, { "str": "{{", - "token_id": 17074, + "token_id": 17058, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153939,7 +153777,7 @@ }, { "str": "cite", - "token_id": 17075, + "token_id": 17059, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153948,7 +153786,7 @@ }, { "str": "web", - "token_id": 17076, + "token_id": 17060, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153957,7 +153795,7 @@ }, { "str": "|", - "token_id": 17077, + "token_id": 17061, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153966,7 +153804,7 @@ }, { "str": "last", - "token_id": 17078, + "token_id": 17062, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153975,7 +153813,7 @@ }, { "str": "=", - "token_id": 17079, + "token_id": 17063, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153984,7 +153822,7 @@ }, { "str": "jiang", - "token_id": 17080, + "token_id": 17064, "o_rev_id": 1116108166, "in": [], "out": [ @@ -153993,7 +153831,7 @@ }, { "str": "|", - "token_id": 17081, + "token_id": 17065, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154002,7 +153840,7 @@ }, { "str": "first", - "token_id": 17082, + "token_id": 17066, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154011,7 +153849,7 @@ }, { "str": "=", - "token_id": 17083, + "token_id": 17067, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154020,7 +153858,7 @@ }, { "str": "sisi", - "token_id": 17084, + "token_id": 17068, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154029,7 +153867,7 @@ }, { "str": "|", - "token_id": 17085, + "token_id": 17069, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154038,7 +153876,7 @@ }, { "str": "date", - "token_id": 17086, + "token_id": 17070, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154047,7 +153885,7 @@ }, { "str": "=", - "token_id": 17087, + "token_id": 17071, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154056,7 +153894,7 @@ }, { "str": "2022", - "token_id": 17088, + "token_id": 17072, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154065,7 +153903,7 @@ }, { "str": "-", - "token_id": 17089, + "token_id": 17073, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154074,7 +153912,7 @@ }, { "str": "10", - "token_id": 17090, + "token_id": 17074, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154083,7 +153921,7 @@ }, { "str": "-", - "token_id": 17091, + "token_id": 17075, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154092,7 +153930,7 @@ }, { "str": "12", - "token_id": 17092, + "token_id": 17076, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154101,7 +153939,7 @@ }, { "str": "|", - "token_id": 17093, + "token_id": 17077, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154110,7 +153948,7 @@ }, { "str": "title", - "token_id": 17094, + "token_id": 17078, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154119,7 +153957,7 @@ }, { "str": "=", - "token_id": 17095, + "token_id": 17079, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154128,7 +153966,7 @@ }, { "str": "vtubers", - "token_id": 17096, + "token_id": 17080, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154137,7 +153975,7 @@ }, { "str": "banned", - "token_id": 17097, + "token_id": 17081, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154146,7 +153984,7 @@ }, { "str": "from", - "token_id": 17098, + "token_id": 17082, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154155,7 +153993,7 @@ }, { "str": "youtube", - "token_id": 17099, + "token_id": 17083, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154164,7 +154002,7 @@ }, { "str": "after", - "token_id": 17100, + "token_id": 17084, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154173,7 +154011,7 @@ }, { "str": "streaming", - "token_id": 17101, + "token_id": 17085, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154182,7 +154020,7 @@ }, { "str": "splatoon", - "token_id": 17102, + "token_id": 17086, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154191,7 +154029,7 @@ }, { "str": "3", - "token_id": 17103, + "token_id": 17087, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154200,7 +154038,7 @@ }, { "str": "porn", - "token_id": 17104, + "token_id": 17088, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154209,7 +154047,7 @@ }, { "str": "[", - "token_id": 17105, + "token_id": 17089, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154218,7 +154056,7 @@ }, { "str": "update", - "token_id": 17106, + "token_id": 17090, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154227,7 +154065,7 @@ }, { "str": "]", - "token_id": 17107, + "token_id": 17091, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154236,7 +154074,7 @@ }, { "str": "|", - "token_id": 17108, + "token_id": 17092, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154245,7 +154083,7 @@ }, { "str": "url", - "token_id": 17109, + "token_id": 17093, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154254,7 +154092,7 @@ }, { "str": "=", - "token_id": 17110, + "token_id": 17094, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154263,7 +154101,7 @@ }, { "str": "https", - "token_id": 17111, + "token_id": 17095, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154272,7 +154110,7 @@ }, { "str": ":", - "token_id": 17112, + "token_id": 17096, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154281,7 +154119,7 @@ }, { "str": "/", - "token_id": 17113, + "token_id": 17097, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154290,7 +154128,7 @@ }, { "str": "/", - "token_id": 17114, + "token_id": 17098, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154299,7 +154137,7 @@ }, { "str": "kotaku", - "token_id": 17115, + "token_id": 17099, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154308,7 +154146,7 @@ }, { "str": ".", - "token_id": 17116, + "token_id": 17100, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154317,7 +154155,7 @@ }, { "str": "com", - "token_id": 17117, + "token_id": 17101, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154326,7 +154164,7 @@ }, { "str": "/", - "token_id": 17118, + "token_id": 17102, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154335,7 +154173,7 @@ }, { "str": "splatoon", - "token_id": 17119, + "token_id": 17103, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154344,7 +154182,7 @@ }, { "str": "-", - "token_id": 17120, + "token_id": 17104, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154353,7 +154191,7 @@ }, { "str": "3", - "token_id": 17121, + "token_id": 17105, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154362,7 +154200,7 @@ }, { "str": "-", - "token_id": 17122, + "token_id": 17106, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154371,7 +154209,7 @@ }, { "str": "porn", - "token_id": 17123, + "token_id": 17107, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154380,7 +154218,7 @@ }, { "str": "-", - "token_id": 17124, + "token_id": 17108, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154389,7 +154227,7 @@ }, { "str": "stream", - "token_id": 17125, + "token_id": 17109, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154398,7 +154236,7 @@ }, { "str": "-", - "token_id": 17126, + "token_id": 17110, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154407,7 +154245,7 @@ }, { "str": "nintendo", - "token_id": 17127, + "token_id": 17111, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154416,7 +154254,7 @@ }, { "str": "-", - "token_id": 17128, + "token_id": 17112, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154425,7 +154263,7 @@ }, { "str": "vtuber", - "token_id": 17129, + "token_id": 17113, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154434,7 +154272,7 @@ }, { "str": "-", - "token_id": 17130, + "token_id": 17114, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154443,7 +154281,7 @@ }, { "str": "switch", - "token_id": 17131, + "token_id": 17115, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154452,7 +154290,7 @@ }, { "str": "-", - "token_id": 17132, + "token_id": 17116, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154461,7 +154299,7 @@ }, { "str": "1849645153", - "token_id": 17133, + "token_id": 17117, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154470,7 +154308,7 @@ }, { "str": "|", - "token_id": 17134, + "token_id": 17118, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154479,7 +154317,7 @@ }, { "str": "access", - "token_id": 17135, + "token_id": 17119, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154488,7 +154326,7 @@ }, { "str": "-", - "token_id": 17136, + "token_id": 17120, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154497,7 +154335,7 @@ }, { "str": "date", - "token_id": 17137, + "token_id": 17121, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154506,7 +154344,7 @@ }, { "str": "=", - "token_id": 17138, + "token_id": 17122, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154515,7 +154353,7 @@ }, { "str": "2022", - "token_id": 17139, + "token_id": 17123, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154524,7 +154362,7 @@ }, { "str": "-", - "token_id": 17140, + "token_id": 17124, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154533,7 +154371,7 @@ }, { "str": "10", - "token_id": 17141, + "token_id": 17125, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154542,7 +154380,7 @@ }, { "str": "-", - "token_id": 17142, + "token_id": 17126, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154551,7 +154389,7 @@ }, { "str": "14", - "token_id": 17143, + "token_id": 17127, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154560,7 +154398,7 @@ }, { "str": "|", - "token_id": 17144, + "token_id": 17128, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154569,7 +154407,7 @@ }, { "str": "website", - "token_id": 17145, + "token_id": 17129, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154578,7 +154416,7 @@ }, { "str": "=", - "token_id": 17146, + "token_id": 17130, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154587,7 +154425,7 @@ }, { "str": "[[", - "token_id": 17147, + "token_id": 17131, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154596,7 +154434,7 @@ }, { "str": "kotaku", - "token_id": 17148, + "token_id": 17132, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154605,7 +154443,7 @@ }, { "str": "]]", - "token_id": 17149, + "token_id": 17133, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154614,7 +154452,7 @@ }, { "str": "|", - "token_id": 17150, + "token_id": 17134, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154623,7 +154461,7 @@ }, { "str": "language", - "token_id": 17151, + "token_id": 17135, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154632,7 +154470,7 @@ }, { "str": "=", - "token_id": 17152, + "token_id": 17136, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154641,7 +154479,7 @@ }, { "str": "en", - "token_id": 17153, + "token_id": 17137, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154650,7 +154488,7 @@ }, { "str": "}}", - "token_id": 17154, + "token_id": 17138, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154659,7 +154497,7 @@ }, { "str": "<", - "token_id": 17155, + "token_id": 17139, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154668,7 +154506,7 @@ }, { "str": "/", - "token_id": 17156, + "token_id": 17140, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154677,7 +154515,7 @@ }, { "str": "ref", - "token_id": 17157, + "token_id": 17141, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154686,7 +154524,7 @@ }, { "str": ">", - "token_id": 17158, + "token_id": 17142, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154695,7 +154533,7 @@ }, { "str": "<", - "token_id": 17159, + "token_id": 17143, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154704,7 +154542,7 @@ }, { "str": "ref", - "token_id": 17160, + "token_id": 17144, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154713,7 +154551,7 @@ }, { "str": ">", - "token_id": 17161, + "token_id": 17145, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154722,7 +154560,7 @@ }, { "str": "{{", - "token_id": 17162, + "token_id": 17146, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154731,7 +154569,7 @@ }, { "str": "cite", - "token_id": 17163, + "token_id": 17147, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154740,7 +154578,7 @@ }, { "str": "web", - "token_id": 17164, + "token_id": 17148, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154749,7 +154587,7 @@ }, { "str": "|", - "token_id": 17165, + "token_id": 17149, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154758,7 +154596,7 @@ }, { "str": "last", - "token_id": 17166, + "token_id": 17150, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154767,7 +154605,7 @@ }, { "str": "=", - "token_id": 17167, + "token_id": 17151, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154776,7 +154614,7 @@ }, { "str": "reynolds", - "token_id": 17168, + "token_id": 17152, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154785,7 +154623,7 @@ }, { "str": "|", - "token_id": 17169, + "token_id": 17153, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154794,7 +154632,7 @@ }, { "str": "first", - "token_id": 17170, + "token_id": 17154, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154803,7 +154641,7 @@ }, { "str": "=", - "token_id": 17171, + "token_id": 17155, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154812,7 +154650,7 @@ }, { "str": "ollie", - "token_id": 17172, + "token_id": 17156, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154821,7 +154659,7 @@ }, { "str": "|", - "token_id": 17173, + "token_id": 17157, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154830,7 +154668,7 @@ }, { "str": "date", - "token_id": 17174, + "token_id": 17158, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154839,7 +154677,7 @@ }, { "str": "=", - "token_id": 17175, + "token_id": 17159, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154848,7 +154686,7 @@ }, { "str": "2022", - "token_id": 17176, + "token_id": 17160, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154857,7 +154695,7 @@ }, { "str": "-", - "token_id": 17177, + "token_id": 17161, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154866,7 +154704,7 @@ }, { "str": "10", - "token_id": 17178, + "token_id": 17162, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154875,7 +154713,7 @@ }, { "str": "-", - "token_id": 17179, + "token_id": 17163, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154884,7 +154722,7 @@ }, { "str": "11", - "token_id": 17180, + "token_id": 17164, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154893,7 +154731,7 @@ }, { "str": "|", - "token_id": 17181, + "token_id": 17165, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154902,7 +154740,7 @@ }, { "str": "title", - "token_id": 17182, + "token_id": 17166, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154911,7 +154749,7 @@ }, { "str": "=", - "token_id": 17183, + "token_id": 17167, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154920,7 +154758,7 @@ }, { "str": "random", - "token_id": 17184, + "token_id": 17168, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154929,7 +154767,7 @@ }, { "str": ":", - "token_id": 17185, + "token_id": 17169, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154938,7 +154776,7 @@ }, { "str": "splatoon", - "token_id": 17186, + "token_id": 17170, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154947,7 +154785,7 @@ }, { "str": "3", - "token_id": 17187, + "token_id": 17171, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154956,7 +154794,7 @@ }, { "str": "streamers", - "token_id": 17188, + "token_id": 17172, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154965,7 +154803,7 @@ }, { "str": "sneak", - "token_id": 17189, + "token_id": 17173, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154974,7 +154812,7 @@ }, { "str": "adult", - "token_id": 17190, + "token_id": 17174, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154983,7 +154821,7 @@ }, { "str": "content", - "token_id": 17191, + "token_id": 17175, "o_rev_id": 1116108166, "in": [], "out": [ @@ -154992,7 +154830,7 @@ }, { "str": "into", - "token_id": 17192, + "token_id": 17176, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155001,7 +154839,7 @@ }, { "str": "online", - "token_id": 17193, + "token_id": 17177, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155010,7 +154848,7 @@ }, { "str": "matches", - "token_id": 17194, + "token_id": 17178, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155019,7 +154857,7 @@ }, { "str": "|", - "token_id": 17195, + "token_id": 17179, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155028,7 +154866,7 @@ }, { "str": "url", - "token_id": 17196, + "token_id": 17180, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155037,7 +154875,7 @@ }, { "str": "=", - "token_id": 17197, + "token_id": 17181, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155046,7 +154884,7 @@ }, { "str": "https", - "token_id": 17198, + "token_id": 17182, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155055,7 +154893,7 @@ }, { "str": ":", - "token_id": 17199, + "token_id": 17183, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155064,7 +154902,7 @@ }, { "str": "/", - "token_id": 17200, + "token_id": 17184, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155073,7 +154911,7 @@ }, { "str": "/", - "token_id": 17201, + "token_id": 17185, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155082,7 +154920,7 @@ }, { "str": "www", - "token_id": 17202, + "token_id": 17186, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155091,7 +154929,7 @@ }, { "str": ".", - "token_id": 17203, + "token_id": 17187, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155100,7 +154938,7 @@ }, { "str": "nintendolife", - "token_id": 17204, + "token_id": 17188, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155109,7 +154947,7 @@ }, { "str": ".", - "token_id": 17205, + "token_id": 17189, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155118,7 +154956,7 @@ }, { "str": "com", - "token_id": 17206, + "token_id": 17190, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155127,7 +154965,7 @@ }, { "str": "/", - "token_id": 17207, + "token_id": 17191, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155136,7 +154974,7 @@ }, { "str": "news", - "token_id": 17208, + "token_id": 17192, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155145,7 +154983,7 @@ }, { "str": "/", - "token_id": 17209, + "token_id": 17193, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155154,7 +154992,7 @@ }, { "str": "2022", - "token_id": 17210, + "token_id": 17194, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155163,7 +155001,7 @@ }, { "str": "/", - "token_id": 17211, + "token_id": 17195, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155172,7 +155010,7 @@ }, { "str": "10", - "token_id": 17212, + "token_id": 17196, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155181,7 +155019,7 @@ }, { "str": "/", - "token_id": 17213, + "token_id": 17197, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155190,7 +155028,7 @@ }, { "str": "random", - "token_id": 17214, + "token_id": 17198, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155199,7 +155037,7 @@ }, { "str": "-", - "token_id": 17215, + "token_id": 17199, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155208,7 +155046,7 @@ }, { "str": "splatoon", - "token_id": 17216, + "token_id": 17200, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155217,7 +155055,7 @@ }, { "str": "-", - "token_id": 17217, + "token_id": 17201, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155226,7 +155064,7 @@ }, { "str": "3", - "token_id": 17218, + "token_id": 17202, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155235,7 +155073,7 @@ }, { "str": "-", - "token_id": 17219, + "token_id": 17203, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155244,7 +155082,7 @@ }, { "str": "streamers", - "token_id": 17220, + "token_id": 17204, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155253,7 +155091,7 @@ }, { "str": "-", - "token_id": 17221, + "token_id": 17205, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155262,7 +155100,7 @@ }, { "str": "sneak", - "token_id": 17222, + "token_id": 17206, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155271,7 +155109,7 @@ }, { "str": "-", - "token_id": 17223, + "token_id": 17207, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155280,7 +155118,7 @@ }, { "str": "adult", - "token_id": 17224, + "token_id": 17208, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155289,7 +155127,7 @@ }, { "str": "-", - "token_id": 17225, + "token_id": 17209, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155298,7 +155136,7 @@ }, { "str": "content", - "token_id": 17226, + "token_id": 17210, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155307,7 +155145,7 @@ }, { "str": "-", - "token_id": 17227, + "token_id": 17211, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155316,7 +155154,7 @@ }, { "str": "into", - "token_id": 17228, + "token_id": 17212, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155325,7 +155163,7 @@ }, { "str": "-", - "token_id": 17229, + "token_id": 17213, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155334,7 +155172,7 @@ }, { "str": "online", - "token_id": 17230, + "token_id": 17214, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155343,7 +155181,7 @@ }, { "str": "-", - "token_id": 17231, + "token_id": 17215, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155352,7 +155190,7 @@ }, { "str": "matches", - "token_id": 17232, + "token_id": 17216, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155361,7 +155199,7 @@ }, { "str": "|", - "token_id": 17233, + "token_id": 17217, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155370,7 +155208,7 @@ }, { "str": "access", - "token_id": 17234, + "token_id": 17218, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155379,7 +155217,7 @@ }, { "str": "-", - "token_id": 17235, + "token_id": 17219, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155388,7 +155226,7 @@ }, { "str": "date", - "token_id": 17236, + "token_id": 17220, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155397,7 +155235,7 @@ }, { "str": "=", - "token_id": 17237, + "token_id": 17221, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155406,7 +155244,7 @@ }, { "str": "2022", - "token_id": 17238, + "token_id": 17222, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155415,7 +155253,7 @@ }, { "str": "-", - "token_id": 17239, + "token_id": 17223, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155424,7 +155262,7 @@ }, { "str": "10", - "token_id": 17240, + "token_id": 17224, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155433,7 +155271,7 @@ }, { "str": "-", - "token_id": 17241, + "token_id": 17225, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155442,7 +155280,7 @@ }, { "str": "14", - "token_id": 17242, + "token_id": 17226, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155451,7 +155289,7 @@ }, { "str": "|", - "token_id": 17243, + "token_id": 17227, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155460,7 +155298,7 @@ }, { "str": "website", - "token_id": 17244, + "token_id": 17228, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155469,7 +155307,7 @@ }, { "str": "=", - "token_id": 17245, + "token_id": 17229, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155478,7 +155316,7 @@ }, { "str": "[[", - "token_id": 17246, + "token_id": 17230, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155487,7 +155325,7 @@ }, { "str": "nintendo", - "token_id": 17247, + "token_id": 17231, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155496,7 +155334,7 @@ }, { "str": "life", - "token_id": 17248, + "token_id": 17232, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155505,7 +155343,7 @@ }, { "str": "]]", - "token_id": 17249, + "token_id": 17233, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155514,7 +155352,7 @@ }, { "str": "|", - "token_id": 17250, + "token_id": 17234, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155523,7 +155361,7 @@ }, { "str": "publisher", - "token_id": 17251, + "token_id": 17235, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155532,7 +155370,7 @@ }, { "str": "=", - "token_id": 17252, + "token_id": 17236, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155541,7 +155379,7 @@ }, { "str": "hookshot", - "token_id": 17253, + "token_id": 17237, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155550,7 +155388,7 @@ }, { "str": "media", - "token_id": 17254, + "token_id": 17238, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155559,7 +155397,7 @@ }, { "str": "|", - "token_id": 17255, + "token_id": 17239, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155568,7 +155406,7 @@ }, { "str": "language", - "token_id": 17256, + "token_id": 17240, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155577,7 +155415,7 @@ }, { "str": "=", - "token_id": 17257, + "token_id": 17241, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155586,7 +155424,7 @@ }, { "str": "en", - "token_id": 17258, + "token_id": 17242, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155595,7 +155433,7 @@ }, { "str": "-", - "token_id": 17259, + "token_id": 17243, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155604,7 +155442,7 @@ }, { "str": "gb", - "token_id": 17260, + "token_id": 17244, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155613,7 +155451,7 @@ }, { "str": "}}", - "token_id": 17261, + "token_id": 17245, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155622,7 +155460,7 @@ }, { "str": "<", - "token_id": 17262, + "token_id": 17246, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155631,7 +155469,7 @@ }, { "str": "/", - "token_id": 17263, + "token_id": 17247, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155640,7 +155478,7 @@ }, { "str": "ref", - "token_id": 17264, + "token_id": 17248, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155649,7 +155487,7 @@ }, { "str": ">", - "token_id": 17265, + "token_id": 17249, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155658,7 +155496,7 @@ }, { "str": "<", - "token_id": 17266, + "token_id": 17250, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155667,7 +155505,7 @@ }, { "str": "ref", - "token_id": 17267, + "token_id": 17251, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155676,7 +155514,7 @@ }, { "str": ">", - "token_id": 17268, + "token_id": 17252, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155685,7 +155523,7 @@ }, { "str": "{{", - "token_id": 17269, + "token_id": 17253, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155694,7 +155532,7 @@ }, { "str": "cite", - "token_id": 17270, + "token_id": 17254, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155703,7 +155541,7 @@ }, { "str": "web", - "token_id": 17271, + "token_id": 17255, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155712,7 +155550,7 @@ }, { "str": "|", - "token_id": 17272, + "token_id": 17256, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155721,7 +155559,7 @@ }, { "str": "last", - "token_id": 17273, + "token_id": 17257, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155730,7 +155568,7 @@ }, { "str": "=", - "token_id": 17274, + "token_id": 17258, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155739,7 +155577,7 @@ }, { "str": "bailey", - "token_id": 17275, + "token_id": 17259, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155748,7 +155586,7 @@ }, { "str": "|", - "token_id": 17276, + "token_id": 17260, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155757,7 +155595,7 @@ }, { "str": "first", - "token_id": 17277, + "token_id": 17261, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155766,7 +155604,7 @@ }, { "str": "=", - "token_id": 17278, + "token_id": 17262, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155775,7 +155613,7 @@ }, { "str": "dustin", - "token_id": 17279, + "token_id": 17263, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155784,7 +155622,7 @@ }, { "str": "|", - "token_id": 17280, + "token_id": 17264, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155793,7 +155631,7 @@ }, { "str": "date", - "token_id": 17281, + "token_id": 17265, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155802,7 +155640,7 @@ }, { "str": "=", - "token_id": 17282, + "token_id": 17266, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155811,7 +155649,7 @@ }, { "str": "2022", - "token_id": 17283, + "token_id": 17267, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155820,7 +155658,7 @@ }, { "str": "-", - "token_id": 17284, + "token_id": 17268, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155829,7 +155667,7 @@ }, { "str": "10", - "token_id": 17285, + "token_id": 17269, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155838,7 +155676,7 @@ }, { "str": "-", - "token_id": 17286, + "token_id": 17270, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155847,7 +155685,7 @@ }, { "str": "11", - "token_id": 17287, + "token_id": 17271, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155856,7 +155694,7 @@ }, { "str": "|", - "token_id": 17288, + "token_id": 17272, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155865,7 +155703,7 @@ }, { "str": "title", - "token_id": 17289, + "token_id": 17273, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155874,7 +155712,7 @@ }, { "str": "=", - "token_id": 17290, + "token_id": 17274, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155883,7 +155721,7 @@ }, { "str": "vtubers", - "token_id": 17291, + "token_id": 17275, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155892,7 +155730,7 @@ }, { "str": "play", - "token_id": 17292, + "token_id": 17276, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155901,7 +155739,7 @@ }, { "str": "porn", - "token_id": 17293, + "token_id": 17277, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155910,7 +155748,7 @@ }, { "str": "through", - "token_id": 17294, + "token_id": 17278, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155919,7 +155757,7 @@ }, { "str": "splatoon", - "token_id": 17295, + "token_id": 17279, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155928,7 +155766,7 @@ }, { "str": "3", - "token_id": 17296, + "token_id": 17280, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155937,7 +155775,7 @@ }, { "str": ",", - "token_id": 17297, + "token_id": 17281, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155946,7 +155784,7 @@ }, { "str": "nintendo", - "token_id": 17298, + "token_id": 17282, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155955,7 +155793,7 @@ }, { "str": "says", - "token_id": 17299, + "token_id": 17283, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155964,7 +155802,7 @@ }, { "str": "please", - "token_id": 17300, + "token_id": 17284, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155973,7 +155811,7 @@ }, { "str": "don", - "token_id": 17301, + "token_id": 17285, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155982,7 +155820,7 @@ }, { "str": "'", - "token_id": 17302, + "token_id": 17286, "o_rev_id": 1116108166, "in": [], "out": [ @@ -155991,7 +155829,7 @@ }, { "str": "t", - "token_id": 17303, + "token_id": 17287, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156000,7 +155838,7 @@ }, { "str": "do", - "token_id": 17304, + "token_id": 17288, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156009,7 +155847,7 @@ }, { "str": "that", - "token_id": 17305, + "token_id": 17289, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156018,7 +155856,7 @@ }, { "str": "|", - "token_id": 17306, + "token_id": 17290, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156027,7 +155865,7 @@ }, { "str": "url", - "token_id": 17307, + "token_id": 17291, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156036,7 +155874,7 @@ }, { "str": "=", - "token_id": 17308, + "token_id": 17292, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156045,7 +155883,7 @@ }, { "str": "https", - "token_id": 17309, + "token_id": 17293, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156054,7 +155892,7 @@ }, { "str": ":", - "token_id": 17310, + "token_id": 17294, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156063,7 +155901,7 @@ }, { "str": "/", - "token_id": 17311, + "token_id": 17295, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156072,7 +155910,7 @@ }, { "str": "/", - "token_id": 17312, + "token_id": 17296, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156081,7 +155919,7 @@ }, { "str": "www", - "token_id": 17313, + "token_id": 17297, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156090,7 +155928,7 @@ }, { "str": ".", - "token_id": 17314, + "token_id": 17298, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156099,7 +155937,7 @@ }, { "str": "gamesradar", - "token_id": 17315, + "token_id": 17299, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156108,7 +155946,7 @@ }, { "str": ".", - "token_id": 17316, + "token_id": 17300, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156117,7 +155955,7 @@ }, { "str": "com", - "token_id": 17317, + "token_id": 17301, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156126,7 +155964,7 @@ }, { "str": "/", - "token_id": 17318, + "token_id": 17302, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156135,7 +155973,7 @@ }, { "str": "vtubers", - "token_id": 17319, + "token_id": 17303, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156144,7 +155982,7 @@ }, { "str": "-", - "token_id": 17320, + "token_id": 17304, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156153,7 +155991,7 @@ }, { "str": "play", - "token_id": 17321, + "token_id": 17305, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156162,7 +156000,7 @@ }, { "str": "-", - "token_id": 17322, + "token_id": 17306, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156171,7 +156009,7 @@ }, { "str": "porn", - "token_id": 17323, + "token_id": 17307, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156180,7 +156018,7 @@ }, { "str": "-", - "token_id": 17324, + "token_id": 17308, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156189,7 +156027,7 @@ }, { "str": "through", - "token_id": 17325, + "token_id": 17309, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156198,7 +156036,7 @@ }, { "str": "-", - "token_id": 17326, + "token_id": 17310, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156207,7 +156045,7 @@ }, { "str": "splatoon", - "token_id": 17327, + "token_id": 17311, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156216,7 +156054,7 @@ }, { "str": "-", - "token_id": 17328, + "token_id": 17312, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156225,7 +156063,7 @@ }, { "str": "3", - "token_id": 17329, + "token_id": 17313, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156234,7 +156072,7 @@ }, { "str": "-", - "token_id": 17330, + "token_id": 17314, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156243,7 +156081,7 @@ }, { "str": "nintendo", - "token_id": 17331, + "token_id": 17315, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156252,7 +156090,7 @@ }, { "str": "-", - "token_id": 17332, + "token_id": 17316, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156261,7 +156099,7 @@ }, { "str": "says", - "token_id": 17333, + "token_id": 17317, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156270,7 +156108,7 @@ }, { "str": "-", - "token_id": 17334, + "token_id": 17318, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156279,7 +156117,7 @@ }, { "str": "please", - "token_id": 17335, + "token_id": 17319, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156288,7 +156126,7 @@ }, { "str": "-", - "token_id": 17336, + "token_id": 17320, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156297,7 +156135,7 @@ }, { "str": "dont", - "token_id": 17337, + "token_id": 17321, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156306,7 +156144,7 @@ }, { "str": "-", - "token_id": 17338, + "token_id": 17322, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156315,7 +156153,7 @@ }, { "str": "do", - "token_id": 17339, + "token_id": 17323, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156324,7 +156162,7 @@ }, { "str": "-", - "token_id": 17340, + "token_id": 17324, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156333,7 +156171,7 @@ }, { "str": "that", - "token_id": 17341, + "token_id": 17325, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156342,7 +156180,7 @@ }, { "str": "/", - "token_id": 17342, + "token_id": 17326, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156351,7 +156189,7 @@ }, { "str": "|", - "token_id": 17343, + "token_id": 17327, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156360,7 +156198,7 @@ }, { "str": "access", - "token_id": 17344, + "token_id": 17328, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156369,7 +156207,7 @@ }, { "str": "-", - "token_id": 17345, + "token_id": 17329, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156378,7 +156216,7 @@ }, { "str": "date", - "token_id": 17346, + "token_id": 17330, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156387,7 +156225,7 @@ }, { "str": "=", - "token_id": 17347, + "token_id": 17331, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156396,7 +156234,7 @@ }, { "str": "2022", - "token_id": 17348, + "token_id": 17332, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156405,7 +156243,7 @@ }, { "str": "-", - "token_id": 17349, + "token_id": 17333, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156414,7 +156252,7 @@ }, { "str": "10", - "token_id": 17350, + "token_id": 17334, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156423,7 +156261,7 @@ }, { "str": "-", - "token_id": 17351, + "token_id": 17335, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156432,7 +156270,7 @@ }, { "str": "14", - "token_id": 17352, + "token_id": 17336, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156441,7 +156279,7 @@ }, { "str": "|", - "token_id": 17353, + "token_id": 17337, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156450,7 +156288,7 @@ }, { "str": "website", - "token_id": 17354, + "token_id": 17338, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156459,7 +156297,7 @@ }, { "str": "=", - "token_id": 17355, + "token_id": 17339, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156468,7 +156306,7 @@ }, { "str": "[[", - "token_id": 17356, + "token_id": 17340, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156477,7 +156315,7 @@ }, { "str": "gamesradar", - "token_id": 17357, + "token_id": 17341, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156486,7 +156324,7 @@ }, { "str": "+", - "token_id": 17358, + "token_id": 17342, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156495,7 +156333,7 @@ }, { "str": "]]", - "token_id": 17359, + "token_id": 17343, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156504,7 +156342,7 @@ }, { "str": "|", - "token_id": 17360, + "token_id": 17344, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156513,7 +156351,7 @@ }, { "str": "language", - "token_id": 17361, + "token_id": 17345, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156522,7 +156360,7 @@ }, { "str": "=", - "token_id": 17362, + "token_id": 17346, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156531,7 +156369,7 @@ }, { "str": "en", - "token_id": 17363, + "token_id": 17347, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156540,7 +156378,7 @@ }, { "str": "}}", - "token_id": 17364, + "token_id": 17348, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156549,7 +156387,7 @@ }, { "str": "<", - "token_id": 17365, + "token_id": 17349, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156558,7 +156396,7 @@ }, { "str": "/", - "token_id": 17366, + "token_id": 17350, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156567,7 +156405,7 @@ }, { "str": "ref", - "token_id": 17367, + "token_id": 17351, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156576,7 +156414,7 @@ }, { "str": ">", - "token_id": 17368, + "token_id": 17352, "o_rev_id": 1116108166, "in": [], "out": [ @@ -156585,7 +156423,7 @@ }, { "str": "{{", - "token_id": 17369, + "token_id": 17353, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156597,7 +156435,7 @@ }, { "str": "efn", - "token_id": 17370, + "token_id": 17354, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156609,7 +156447,7 @@ }, { "str": "|", - "token_id": 17371, + "token_id": 17355, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156621,7 +156459,7 @@ }, { "str": "the", - "token_id": 17372, + "token_id": 17356, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156633,7 +156471,7 @@ }, { "str": "exact", - "token_id": 17373, + "token_id": 17357, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156645,7 +156483,7 @@ }, { "str": "cause", - "token_id": 17374, + "token_id": 17358, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156657,7 +156495,7 @@ }, { "str": "of", - "token_id": 17375, + "token_id": 17359, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156669,7 +156507,7 @@ }, { "str": "humanity", - "token_id": 17376, + "token_id": 17360, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156681,7 +156519,7 @@ }, { "str": "'", - "token_id": 17377, + "token_id": 17361, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156693,7 +156531,7 @@ }, { "str": "s", - "token_id": 17378, + "token_id": 17362, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156705,7 +156543,7 @@ }, { "str": "extinction", - "token_id": 17379, + "token_id": 17363, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156717,7 +156555,7 @@ }, { "str": "is", - "token_id": 17380, + "token_id": 17364, "o_rev_id": 1116133865, "in": [], "out": [ @@ -156726,7 +156564,7 @@ }, { "str": "inconclusive", - "token_id": 17381, + "token_id": 17365, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156738,7 +156576,7 @@ }, { "str": ";", - "token_id": 17382, + "token_id": 17366, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156750,7 +156588,7 @@ }, { "str": "some", - "token_id": 17383, + "token_id": 17367, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156762,7 +156600,7 @@ }, { "str": "sources", - "token_id": 17384, + "token_id": 17368, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156774,7 +156612,7 @@ }, { "str": "suggest", - "token_id": 17385, + "token_id": 17369, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156786,7 +156624,7 @@ }, { "str": "that", - "token_id": 17386, + "token_id": 17370, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156798,7 +156636,7 @@ }, { "str": "it", - "token_id": 17387, + "token_id": 17371, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156810,7 +156648,7 @@ }, { "str": "was", - "token_id": 17388, + "token_id": 17372, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156822,7 +156660,7 @@ }, { "str": "due", - "token_id": 17389, + "token_id": 17373, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156833,7 +156671,7 @@ }, { "str": "to", - "token_id": 17390, + "token_id": 17374, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156844,7 +156682,7 @@ }, { "str": "[[", - "token_id": 17391, + "token_id": 17375, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156855,7 +156693,7 @@ }, { "str": "climate", - "token_id": 17392, + "token_id": 17376, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156866,7 +156704,7 @@ }, { "str": "change", - "token_id": 17393, + "token_id": 17377, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156877,7 +156715,7 @@ }, { "str": "]]", - "token_id": 17394, + "token_id": 17378, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156888,7 +156726,7 @@ }, { "str": ",", - "token_id": 17395, + "token_id": 17379, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156899,7 +156737,7 @@ }, { "str": "<", - "token_id": 17396, + "token_id": 17380, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156910,7 +156748,7 @@ }, { "str": "ref", - "token_id": 17397, + "token_id": 17381, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156921,7 +156759,7 @@ }, { "str": ">", - "token_id": 17398, + "token_id": 17382, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156932,7 +156770,7 @@ }, { "str": "{{", - "token_id": 17399, + "token_id": 17383, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156943,7 +156781,7 @@ }, { "str": "cite", - "token_id": 17400, + "token_id": 17384, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156954,7 +156792,7 @@ }, { "str": "web", - "token_id": 17401, + "token_id": 17385, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156965,7 +156803,7 @@ }, { "str": "|", - "token_id": 17402, + "token_id": 17386, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156976,7 +156814,7 @@ }, { "str": "last", - "token_id": 17403, + "token_id": 17387, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156987,7 +156825,7 @@ }, { "str": "=", - "token_id": 17404, + "token_id": 17388, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -156998,7 +156836,7 @@ }, { "str": "walker", - "token_id": 17405, + "token_id": 17389, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157009,7 +156847,7 @@ }, { "str": "|", - "token_id": 17406, + "token_id": 17390, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157020,7 +156858,7 @@ }, { "str": "first", - "token_id": 17407, + "token_id": 17391, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157031,7 +156869,7 @@ }, { "str": "=", - "token_id": 17408, + "token_id": 17392, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157042,7 +156880,7 @@ }, { "str": "ian", - "token_id": 17409, + "token_id": 17393, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157053,7 +156891,7 @@ }, { "str": "|", - "token_id": 17410, + "token_id": 17394, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157064,7 +156902,7 @@ }, { "str": "date", - "token_id": 17411, + "token_id": 17395, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157075,7 +156913,7 @@ }, { "str": "=", - "token_id": 17412, + "token_id": 17396, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157086,7 +156924,7 @@ }, { "str": "2021", - "token_id": 17413, + "token_id": 17397, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157097,7 +156935,7 @@ }, { "str": "-", - "token_id": 17414, + "token_id": 17398, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157109,7 +156947,7 @@ }, { "str": "02", - "token_id": 17415, + "token_id": 17399, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157121,19 +156959,18 @@ }, { "str": "-", - "token_id": 17416, + "token_id": 17400, "o_rev_id": 1116133865, "in": [ 1117591128 ], "out": [ - 1117588531, - 1168453704 + 1117588531 ] }, { "str": "18", - "token_id": 17417, + "token_id": 17401, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157144,7 +156981,7 @@ }, { "str": "|", - "token_id": 17418, + "token_id": 17402, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157155,7 +156992,7 @@ }, { "str": "title", - "token_id": 17419, + "token_id": 17403, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157166,7 +157003,7 @@ }, { "str": "=", - "token_id": 17420, + "token_id": 17404, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157177,7 +157014,7 @@ }, { "str": "yep", - "token_id": 17421, + "token_id": 17405, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157188,7 +157025,7 @@ }, { "str": ",", - "token_id": 17422, + "token_id": 17406, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157199,7 +157036,7 @@ }, { "str": "splatoon", - "token_id": 17423, + "token_id": 17407, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157210,14 +157047,14 @@ }, { "str": "is", - "token_id": 17424, + "token_id": 17408, "o_rev_id": 1116133865, "in": [], "out": [] }, { "str": "set", - "token_id": 17425, + "token_id": 17409, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157228,7 +157065,7 @@ }, { "str": "after", - "token_id": 17426, + "token_id": 17410, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157239,7 +157076,7 @@ }, { "str": "a", - "token_id": 17427, + "token_id": 17411, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157250,7 +157087,7 @@ }, { "str": "climate", - "token_id": 17428, + "token_id": 17412, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157261,7 +157098,7 @@ }, { "str": "apocalypse", - "token_id": 17429, + "token_id": 17413, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157272,7 +157109,7 @@ }, { "str": "|", - "token_id": 17430, + "token_id": 17414, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157283,7 +157120,7 @@ }, { "str": "url", - "token_id": 17431, + "token_id": 17415, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157294,7 +157131,7 @@ }, { "str": "=", - "token_id": 17432, + "token_id": 17416, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157305,7 +157142,7 @@ }, { "str": "https", - "token_id": 17433, + "token_id": 17417, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157316,7 +157153,7 @@ }, { "str": ":", - "token_id": 17434, + "token_id": 17418, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157327,7 +157164,7 @@ }, { "str": "/", - "token_id": 17435, + "token_id": 17419, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157338,7 +157175,7 @@ }, { "str": "/", - "token_id": 17436, + "token_id": 17420, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157349,7 +157186,7 @@ }, { "str": "kotaku", - "token_id": 17437, + "token_id": 17421, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157360,7 +157197,7 @@ }, { "str": ".", - "token_id": 17438, + "token_id": 17422, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157371,7 +157208,7 @@ }, { "str": "com", - "token_id": 17439, + "token_id": 17423, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157382,7 +157219,7 @@ }, { "str": "/", - "token_id": 17440, + "token_id": 17424, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157393,7 +157230,7 @@ }, { "str": "yes", - "token_id": 17441, + "token_id": 17425, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157404,7 +157241,7 @@ }, { "str": "-", - "token_id": 17442, + "token_id": 17426, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157415,7 +157252,7 @@ }, { "str": "splatoon", - "token_id": 17443, + "token_id": 17427, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157426,7 +157263,7 @@ }, { "str": "-", - "token_id": 17444, + "token_id": 17428, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157437,7 +157274,7 @@ }, { "str": "is", - "token_id": 17445, + "token_id": 17429, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157448,7 +157285,7 @@ }, { "str": "-", - "token_id": 17446, + "token_id": 17430, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157459,7 +157296,7 @@ }, { "str": "set", - "token_id": 17447, + "token_id": 17431, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157470,7 +157307,7 @@ }, { "str": "-", - "token_id": 17448, + "token_id": 17432, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157481,7 +157318,7 @@ }, { "str": "after", - "token_id": 17449, + "token_id": 17433, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157492,7 +157329,7 @@ }, { "str": "-", - "token_id": 17450, + "token_id": 17434, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157503,7 +157340,7 @@ }, { "str": "a", - "token_id": 17451, + "token_id": 17435, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157514,7 +157351,7 @@ }, { "str": "-", - "token_id": 17452, + "token_id": 17436, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157525,7 +157362,7 @@ }, { "str": "climate", - "token_id": 17453, + "token_id": 17437, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157536,7 +157373,7 @@ }, { "str": "-", - "token_id": 17454, + "token_id": 17438, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157547,7 +157384,7 @@ }, { "str": "apocalypse", - "token_id": 17455, + "token_id": 17439, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157558,7 +157395,7 @@ }, { "str": "-", - "token_id": 17456, + "token_id": 17440, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157569,7 +157406,7 @@ }, { "str": "1846301239", - "token_id": 17457, + "token_id": 17441, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157580,7 +157417,7 @@ }, { "str": "|", - "token_id": 17458, + "token_id": 17442, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157591,7 +157428,7 @@ }, { "str": "access", - "token_id": 17459, + "token_id": 17443, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157603,7 +157440,7 @@ }, { "str": "-", - "token_id": 17460, + "token_id": 17444, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157614,7 +157451,7 @@ }, { "str": "date", - "token_id": 17461, + "token_id": 17445, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157625,7 +157462,7 @@ }, { "str": "=", - "token_id": 17462, + "token_id": 17446, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157636,7 +157473,7 @@ }, { "str": "2022", - "token_id": 17463, + "token_id": 17447, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157647,7 +157484,7 @@ }, { "str": "-", - "token_id": 17464, + "token_id": 17448, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157658,7 +157495,7 @@ }, { "str": "10", - "token_id": 17465, + "token_id": 17449, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157670,7 +157507,7 @@ }, { "str": "-", - "token_id": 17466, + "token_id": 17450, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157681,7 +157518,7 @@ }, { "str": "15", - "token_id": 17467, + "token_id": 17451, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157693,7 +157530,7 @@ }, { "str": "|", - "token_id": 17468, + "token_id": 17452, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157704,7 +157541,7 @@ }, { "str": "website", - "token_id": 17469, + "token_id": 17453, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157716,7 +157553,7 @@ }, { "str": "=", - "token_id": 17470, + "token_id": 17454, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157727,7 +157564,7 @@ }, { "str": "[[", - "token_id": 17471, + "token_id": 17455, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157739,7 +157576,7 @@ }, { "str": "kotaku", - "token_id": 17472, + "token_id": 17456, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157751,7 +157588,7 @@ }, { "str": "]]", - "token_id": 17473, + "token_id": 17457, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157763,7 +157600,7 @@ }, { "str": "publisher", - "token_id": 17474, + "token_id": 17458, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157774,7 +157611,7 @@ }, { "str": "=", - "token_id": 17475, + "token_id": 17459, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157786,7 +157623,7 @@ }, { "str": "[[", - "token_id": 17476, + "token_id": 17460, "o_rev_id": 1116133865, "in": [], "out": [ @@ -157795,7 +157632,7 @@ }, { "str": "teliviaunivision", - "token_id": 17477, + "token_id": 17461, "o_rev_id": 1116133865, "in": [], "out": [ @@ -157804,7 +157641,7 @@ }, { "str": "]]", - "token_id": 17478, + "token_id": 17462, "o_rev_id": 1116133865, "in": [], "out": [ @@ -157813,7 +157650,7 @@ }, { "str": "|", - "token_id": 17479, + "token_id": 17463, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157825,7 +157662,7 @@ }, { "str": "language", - "token_id": 17480, + "token_id": 17464, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157837,7 +157674,7 @@ }, { "str": "=", - "token_id": 17481, + "token_id": 17465, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157849,7 +157686,7 @@ }, { "str": "en", - "token_id": 17482, + "token_id": 17466, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157861,7 +157698,7 @@ }, { "str": "}}", - "token_id": 17483, + "token_id": 17467, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157873,7 +157710,7 @@ }, { "str": "<", - "token_id": 17484, + "token_id": 17468, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157885,7 +157722,7 @@ }, { "str": "/", - "token_id": 17485, + "token_id": 17469, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157896,7 +157733,7 @@ }, { "str": "ref", - "token_id": 17486, + "token_id": 17470, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157908,7 +157745,7 @@ }, { "str": ">", - "token_id": 17487, + "token_id": 17471, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157920,7 +157757,7 @@ }, { "str": "<", - "token_id": 17488, + "token_id": 17472, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157931,7 +157768,7 @@ }, { "str": "ref", - "token_id": 17489, + "token_id": 17473, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157942,7 +157779,7 @@ }, { "str": ">", - "token_id": 17490, + "token_id": 17474, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157953,7 +157790,7 @@ }, { "str": "{{", - "token_id": 17491, + "token_id": 17475, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157964,7 +157801,7 @@ }, { "str": "cite", - "token_id": 17492, + "token_id": 17476, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157975,7 +157812,7 @@ }, { "str": "web", - "token_id": 17493, + "token_id": 17477, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157986,7 +157823,7 @@ }, { "str": "|", - "token_id": 17494, + "token_id": 17478, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -157997,7 +157834,7 @@ }, { "str": "last", - "token_id": 17495, + "token_id": 17479, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158008,7 +157845,7 @@ }, { "str": "=", - "token_id": 17496, + "token_id": 17480, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158019,7 +157856,7 @@ }, { "str": "diaz", - "token_id": 17497, + "token_id": 17481, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158030,7 +157867,7 @@ }, { "str": "|", - "token_id": 17498, + "token_id": 17482, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158041,7 +157878,7 @@ }, { "str": "first", - "token_id": 17499, + "token_id": 17483, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158052,7 +157889,7 @@ }, { "str": "=", - "token_id": 17500, + "token_id": 17484, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158063,7 +157900,7 @@ }, { "str": "ana", - "token_id": 17501, + "token_id": 17485, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158074,7 +157911,7 @@ }, { "str": "|", - "token_id": 17502, + "token_id": 17486, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158085,7 +157922,7 @@ }, { "str": "date", - "token_id": 17503, + "token_id": 17487, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158096,7 +157933,7 @@ }, { "str": "=", - "token_id": 17504, + "token_id": 17488, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158107,7 +157944,7 @@ }, { "str": "2022", - "token_id": 17505, + "token_id": 17489, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158118,7 +157955,7 @@ }, { "str": "-", - "token_id": 17506, + "token_id": 17490, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158130,7 +157967,7 @@ }, { "str": "09", - "token_id": 17507, + "token_id": 17491, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158142,7 +157979,7 @@ }, { "str": "-", - "token_id": 17508, + "token_id": 17492, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158154,7 +157991,7 @@ }, { "str": "22", - "token_id": 17509, + "token_id": 17493, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158165,7 +158002,7 @@ }, { "str": "|", - "token_id": 17510, + "token_id": 17494, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158176,7 +158013,7 @@ }, { "str": "title", - "token_id": 17511, + "token_id": 17495, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158187,7 +158024,7 @@ }, { "str": "=", - "token_id": 17512, + "token_id": 17496, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158198,7 +158035,7 @@ }, { "str": "splatoon", - "token_id": 17513, + "token_id": 17497, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158209,7 +158046,7 @@ }, { "str": "3", - "token_id": 17514, + "token_id": 17498, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158220,7 +158057,7 @@ }, { "str": "is", - "token_id": 17515, + "token_id": 17499, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158231,7 +158068,7 @@ }, { "str": "a", - "token_id": 17516, + "token_id": 17500, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158242,7 +158079,7 @@ }, { "str": "world", - "token_id": 17517, + "token_id": 17501, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158253,7 +158090,7 @@ }, { "str": "governed", - "token_id": 17518, + "token_id": 17502, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158264,7 +158101,7 @@ }, { "str": "by", - "token_id": 17519, + "token_id": 17503, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158275,7 +158112,7 @@ }, { "str": "chaos", - "token_id": 17520, + "token_id": 17504, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158286,7 +158123,7 @@ }, { "str": "—", - "token_id": 17521, + "token_id": 17505, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158297,7 +158134,7 @@ }, { "str": "and", - "token_id": 17522, + "token_id": 17506, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158308,7 +158145,7 @@ }, { "str": "that", - "token_id": 17523, + "token_id": 17507, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158319,7 +158156,7 @@ }, { "str": "rules", - "token_id": 17524, + "token_id": 17508, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158330,7 +158167,7 @@ }, { "str": "|", - "token_id": 17525, + "token_id": 17509, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158341,7 +158178,7 @@ }, { "str": "url", - "token_id": 17526, + "token_id": 17510, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158352,7 +158189,7 @@ }, { "str": "=", - "token_id": 17527, + "token_id": 17511, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158363,7 +158200,7 @@ }, { "str": "https", - "token_id": 17528, + "token_id": 17512, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158374,7 +158211,7 @@ }, { "str": ":", - "token_id": 17529, + "token_id": 17513, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158385,7 +158222,7 @@ }, { "str": "/", - "token_id": 17530, + "token_id": 17514, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158396,7 +158233,7 @@ }, { "str": "/", - "token_id": 17531, + "token_id": 17515, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158407,7 +158244,7 @@ }, { "str": "www", - "token_id": 17532, + "token_id": 17516, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158418,7 +158255,7 @@ }, { "str": ".", - "token_id": 17533, + "token_id": 17517, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158429,7 +158266,7 @@ }, { "str": "polygon", - "token_id": 17534, + "token_id": 17518, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158440,7 +158277,7 @@ }, { "str": ".", - "token_id": 17535, + "token_id": 17519, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158451,7 +158288,7 @@ }, { "str": "com", - "token_id": 17536, + "token_id": 17520, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158462,7 +158299,7 @@ }, { "str": "/", - "token_id": 17537, + "token_id": 17521, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158473,7 +158310,7 @@ }, { "str": "23365591", - "token_id": 17538, + "token_id": 17522, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158484,7 +158321,7 @@ }, { "str": "/", - "token_id": 17539, + "token_id": 17523, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158495,7 +158332,7 @@ }, { "str": "splatoon", - "token_id": 17540, + "token_id": 17524, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158506,7 +158343,7 @@ }, { "str": "-", - "token_id": 17541, + "token_id": 17525, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158517,7 +158354,7 @@ }, { "str": "3", - "token_id": 17542, + "token_id": 17526, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158528,7 +158365,7 @@ }, { "str": "-", - "token_id": 17543, + "token_id": 17527, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158539,7 +158376,7 @@ }, { "str": "lore", - "token_id": 17544, + "token_id": 17528, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158550,7 +158387,7 @@ }, { "str": "-", - "token_id": 17545, + "token_id": 17529, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158561,7 +158398,7 @@ }, { "str": "alterna", - "token_id": 17546, + "token_id": 17530, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158572,7 +158409,7 @@ }, { "str": "-", - "token_id": 17547, + "token_id": 17531, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158583,7 +158420,7 @@ }, { "str": "splatfest", - "token_id": 17548, + "token_id": 17532, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158594,7 +158431,7 @@ }, { "str": "-", - "token_id": 17549, + "token_id": 17533, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158605,7 +158442,7 @@ }, { "str": "nintendo", - "token_id": 17550, + "token_id": 17534, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158616,7 +158453,7 @@ }, { "str": "-", - "token_id": 17551, + "token_id": 17535, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158627,7 +158464,7 @@ }, { "str": "switch", - "token_id": 17552, + "token_id": 17536, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158638,7 +158475,7 @@ }, { "str": "|", - "token_id": 17553, + "token_id": 17537, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158650,7 +158487,7 @@ }, { "str": "access", - "token_id": 17554, + "token_id": 17538, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158662,7 +158499,7 @@ }, { "str": "-", - "token_id": 17555, + "token_id": 17539, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158673,7 +158510,7 @@ }, { "str": "date", - "token_id": 17556, + "token_id": 17540, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158685,7 +158522,7 @@ }, { "str": "=", - "token_id": 17557, + "token_id": 17541, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158697,7 +158534,7 @@ }, { "str": "2022", - "token_id": 17558, + "token_id": 17542, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158709,7 +158546,7 @@ }, { "str": "-", - "token_id": 17559, + "token_id": 17543, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158720,7 +158557,7 @@ }, { "str": "10", - "token_id": 17560, + "token_id": 17544, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158732,7 +158569,7 @@ }, { "str": "-", - "token_id": 17561, + "token_id": 17545, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158744,7 +158581,7 @@ }, { "str": "15", - "token_id": 17562, + "token_id": 17546, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158756,7 +158593,7 @@ }, { "str": "|", - "token_id": 17563, + "token_id": 17547, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158768,7 +158605,7 @@ }, { "str": "website", - "token_id": 17564, + "token_id": 17548, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158780,7 +158617,7 @@ }, { "str": "=", - "token_id": 17565, + "token_id": 17549, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158792,7 +158629,7 @@ }, { "str": "[[", - "token_id": 17566, + "token_id": 17550, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158804,7 +158641,7 @@ }, { "str": "polygon", - "token_id": 17567, + "token_id": 17551, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158816,7 +158653,7 @@ }, { "str": "(", - "token_id": 17568, + "token_id": 17552, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158828,7 +158665,7 @@ }, { "str": "website", - "token_id": 17569, + "token_id": 17553, "o_rev_id": 1116133865, "in": [ 1117591128, @@ -158841,7 +158678,7 @@ }, { "str": ")", - "token_id": 17570, + "token_id": 17554, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158853,7 +158690,7 @@ }, { "str": "|", - "token_id": 17571, + "token_id": 17555, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158865,7 +158702,7 @@ }, { "str": "polygon", - "token_id": 17572, + "token_id": 17556, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158877,7 +158714,7 @@ }, { "str": "]]", - "token_id": 17573, + "token_id": 17557, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158889,7 +158726,7 @@ }, { "str": "|", - "token_id": 17574, + "token_id": 17558, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158900,7 +158737,7 @@ }, { "str": "publisher", - "token_id": 17575, + "token_id": 17559, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158912,7 +158749,7 @@ }, { "str": "=", - "token_id": 17576, + "token_id": 17560, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158923,7 +158760,7 @@ }, { "str": "[[", - "token_id": 17577, + "token_id": 17561, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158935,7 +158772,7 @@ }, { "str": "vox", - "token_id": 17578, + "token_id": 17562, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158947,7 +158784,7 @@ }, { "str": "media", - "token_id": 17579, + "token_id": 17563, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158959,7 +158796,7 @@ }, { "str": "]]", - "token_id": 17580, + "token_id": 17564, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158971,18 +158808,20 @@ }, { "str": "|", - "token_id": 17581, + "token_id": 17565, "o_rev_id": 1116133865, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ - 1117588531 + 1117588531, + 1202071552 ] }, { "str": "language", - "token_id": 17582, + "token_id": 17566, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -158993,18 +158832,20 @@ }, { "str": "=", - "token_id": 17583, + "token_id": 17567, "o_rev_id": 1116133865, "in": [ - 1117591128 + 1117591128, + 1202097960 ], "out": [ - 1117588531 + 1117588531, + 1202071552 ] }, { "str": "en", - "token_id": 17584, + "token_id": 17568, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159015,7 +158856,7 @@ }, { "str": "-", - "token_id": 17585, + "token_id": 17569, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159027,7 +158868,7 @@ }, { "str": "us", - "token_id": 17586, + "token_id": 17570, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159038,7 +158879,7 @@ }, { "str": "}}", - "token_id": 17587, + "token_id": 17571, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159049,7 +158890,7 @@ }, { "str": "<", - "token_id": 17588, + "token_id": 17572, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159060,7 +158901,7 @@ }, { "str": "/", - "token_id": 17589, + "token_id": 17573, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159071,7 +158912,7 @@ }, { "str": "ref", - "token_id": 17590, + "token_id": 17574, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159082,7 +158923,7 @@ }, { "str": ">", - "token_id": 17591, + "token_id": 17575, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159093,7 +158934,7 @@ }, { "str": "while", - "token_id": 17592, + "token_id": 17576, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159105,7 +158946,7 @@ }, { "str": "others", - "token_id": 17593, + "token_id": 17577, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159117,7 +158958,7 @@ }, { "str": "suggest", - "token_id": 17594, + "token_id": 17578, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159129,7 +158970,7 @@ }, { "str": "[[", - "token_id": 17595, + "token_id": 17579, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159141,7 +158982,7 @@ }, { "str": "nuclear", - "token_id": 17596, + "token_id": 17580, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159153,7 +158994,7 @@ }, { "str": "war", - "token_id": 17597, + "token_id": 17581, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159165,7 +159006,7 @@ }, { "str": "]]", - "token_id": 17598, + "token_id": 17582, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159177,7 +159018,7 @@ }, { "str": "<", - "token_id": 17599, + "token_id": 17583, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159189,7 +159030,7 @@ }, { "str": "ref", - "token_id": 17600, + "token_id": 17584, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159201,7 +159042,7 @@ }, { "str": ">", - "token_id": 17601, + "token_id": 17585, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159213,7 +159054,7 @@ }, { "str": "{{", - "token_id": 17602, + "token_id": 17586, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159225,7 +159066,7 @@ }, { "str": "cite", - "token_id": 17603, + "token_id": 17587, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159237,7 +159078,7 @@ }, { "str": "web", - "token_id": 17604, + "token_id": 17588, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159249,7 +159090,7 @@ }, { "str": "|", - "token_id": 17605, + "token_id": 17589, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159261,7 +159102,7 @@ }, { "str": "last", - "token_id": 17606, + "token_id": 17590, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159273,7 +159114,7 @@ }, { "str": "=", - "token_id": 17607, + "token_id": 17591, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -159285,6 +159126,198 @@ }, { "str": "theriault", + "token_id": 17592, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "|", + "token_id": 17593, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "first", + "token_id": 17594, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "=", + "token_id": 17595, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "donald", + "token_id": 17596, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "|", + "token_id": 17597, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "title", + "token_id": 17598, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "=", + "token_id": 17599, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "splatoon", + "token_id": 17600, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "3", + "token_id": 17601, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "announced", + "token_id": 17602, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": ":", + "token_id": 17603, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "coming", + "token_id": 17604, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "in", + "token_id": 17605, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "2022", + "token_id": 17606, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "-", + "token_id": 17607, + "o_rev_id": 1116133865, + "in": [ + 1117591128 + ], + "out": [ + 1117588531, + 1136566099 + ] + }, + { + "str": "news", "token_id": 17608, "o_rev_id": 1116133865, "in": [ @@ -159308,7 +159341,7 @@ ] }, { - "str": "first", + "str": "url", "token_id": 17610, "o_rev_id": 1116133865, "in": [ @@ -159332,7 +159365,7 @@ ] }, { - "str": "donald", + "str": "http", "token_id": 17612, "o_rev_id": 1116133865, "in": [ @@ -159344,7 +159377,7 @@ ] }, { - "str": "|", + "str": ":", "token_id": 17613, "o_rev_id": 1116133865, "in": [ @@ -159356,7 +159389,7 @@ ] }, { - "str": "title", + "str": "/", "token_id": 17614, "o_rev_id": 1116133865, "in": [ @@ -159368,7 +159401,7 @@ ] }, { - "str": "=", + "str": "/", "token_id": 17615, "o_rev_id": 1116133865, "in": [ @@ -159380,7 +159413,7 @@ ] }, { - "str": "splatoon", + "str": "www", "token_id": 17616, "o_rev_id": 1116133865, "in": [ @@ -159392,7 +159425,7 @@ ] }, { - "str": "3", + "str": ".", "token_id": 17617, "o_rev_id": 1116133865, "in": [ @@ -159404,7 +159437,7 @@ ] }, { - "str": "announced", + "str": "nintendoworldreport", "token_id": 17618, "o_rev_id": 1116133865, "in": [ @@ -159416,7 +159449,7 @@ ] }, { - "str": ":", + "str": ".", "token_id": 17619, "o_rev_id": 1116133865, "in": [ @@ -159428,7 +159461,7 @@ ] }, { - "str": "coming", + "str": "com", "token_id": 17620, "o_rev_id": 1116133865, "in": [ @@ -159440,7 +159473,7 @@ ] }, { - "str": "in", + "str": "/", "token_id": 17621, "o_rev_id": 1116133865, "in": [ @@ -159452,7 +159485,7 @@ ] }, { - "str": "2022", + "str": "news", "token_id": 17622, "o_rev_id": 1116133865, "in": [ @@ -159464,7 +159497,7 @@ ] }, { - "str": "-", + "str": "/", "token_id": 17623, "o_rev_id": 1116133865, "in": [ @@ -159476,7 +159509,7 @@ ] }, { - "str": "news", + "str": "56283", "token_id": 17624, "o_rev_id": 1116133865, "in": [ @@ -159488,7 +159521,7 @@ ] }, { - "str": "|", + "str": "/", "token_id": 17625, "o_rev_id": 1116133865, "in": [ @@ -159500,7 +159533,7 @@ ] }, { - "str": "url", + "str": "splatoon", "token_id": 17626, "o_rev_id": 1116133865, "in": [ @@ -159512,7 +159545,7 @@ ] }, { - "str": "=", + "str": "-", "token_id": 17627, "o_rev_id": 1116133865, "in": [ @@ -159524,7 +159557,7 @@ ] }, { - "str": "http", + "str": "3", "token_id": 17628, "o_rev_id": 1116133865, "in": [ @@ -159536,7 +159569,7 @@ ] }, { - "str": ":", + "str": "-", "token_id": 17629, "o_rev_id": 1116133865, "in": [ @@ -159548,7 +159581,7 @@ ] }, { - "str": "/", + "str": "announced", "token_id": 17630, "o_rev_id": 1116133865, "in": [ @@ -159560,7 +159593,7 @@ ] }, { - "str": "/", + "str": "-", "token_id": 17631, "o_rev_id": 1116133865, "in": [ @@ -159572,7 +159605,7 @@ ] }, { - "str": "www", + "str": "coming", "token_id": 17632, "o_rev_id": 1116133865, "in": [ @@ -159584,7 +159617,7 @@ ] }, { - "str": ".", + "str": "-", "token_id": 17633, "o_rev_id": 1116133865, "in": [ @@ -159596,7 +159629,7 @@ ] }, { - "str": "nintendoworldreport", + "str": "in", "token_id": 17634, "o_rev_id": 1116133865, "in": [ @@ -159608,7 +159641,7 @@ ] }, { - "str": ".", + "str": "-", "token_id": 17635, "o_rev_id": 1116133865, "in": [ @@ -159620,7 +159653,7 @@ ] }, { - "str": "com", + "str": "2022", "token_id": 17636, "o_rev_id": 1116133865, "in": [ @@ -159632,7 +159665,7 @@ ] }, { - "str": "/", + "str": "|", "token_id": 17637, "o_rev_id": 1116133865, "in": [ @@ -159644,7 +159677,7 @@ ] }, { - "str": "news", + "str": "access", "token_id": 17638, "o_rev_id": 1116133865, "in": [ @@ -159656,7 +159689,7 @@ ] }, { - "str": "/", + "str": "-", "token_id": 17639, "o_rev_id": 1116133865, "in": [ @@ -159668,7 +159701,7 @@ ] }, { - "str": "56283", + "str": "date", "token_id": 17640, "o_rev_id": 1116133865, "in": [ @@ -159680,7 +159713,7 @@ ] }, { - "str": "/", + "str": "=", "token_id": 17641, "o_rev_id": 1116133865, "in": [ @@ -159692,7 +159725,7 @@ ] }, { - "str": "splatoon", + "str": "2022", "token_id": 17642, "o_rev_id": 1116133865, "in": [ @@ -159716,7 +159749,7 @@ ] }, { - "str": "3", + "str": "10", "token_id": 17644, "o_rev_id": 1116133865, "in": [ @@ -159740,7 +159773,7 @@ ] }, { - "str": "announced", + "str": "15", "token_id": 17646, "o_rev_id": 1116133865, "in": [ @@ -159752,7 +159785,7 @@ ] }, { - "str": "-", + "str": "|", "token_id": 17647, "o_rev_id": 1116133865, "in": [ @@ -159764,7 +159797,7 @@ ] }, { - "str": "coming", + "str": "website", "token_id": 17648, "o_rev_id": 1116133865, "in": [ @@ -159776,7 +159809,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 17649, "o_rev_id": 1116133865, "in": [ @@ -159788,7 +159821,7 @@ ] }, { - "str": "in", + "str": "nintendo", "token_id": 17650, "o_rev_id": 1116133865, "in": [ @@ -159800,7 +159833,7 @@ ] }, { - "str": "-", + "str": "world", "token_id": 17651, "o_rev_id": 1116133865, "in": [ @@ -159812,7 +159845,7 @@ ] }, { - "str": "2022", + "str": "report", "token_id": 17652, "o_rev_id": 1116133865, "in": [ @@ -159824,7 +159857,7 @@ ] }, { - "str": "|", + "str": "}}", "token_id": 17653, "o_rev_id": 1116133865, "in": [ @@ -159836,7 +159869,7 @@ ] }, { - "str": "access", + "str": "<", "token_id": 17654, "o_rev_id": 1116133865, "in": [ @@ -159848,7 +159881,7 @@ ] }, { - "str": "-", + "str": "/", "token_id": 17655, "o_rev_id": 1116133865, "in": [ @@ -159860,7 +159893,7 @@ ] }, { - "str": "date", + "str": "ref", "token_id": 17656, "o_rev_id": 1116133865, "in": [ @@ -159872,7 +159905,7 @@ ] }, { - "str": "=", + "str": ">", "token_id": 17657, "o_rev_id": 1116133865, "in": [ @@ -159884,7 +159917,7 @@ ] }, { - "str": "2022", + "str": "<", "token_id": 17658, "o_rev_id": 1116133865, "in": [ @@ -159896,7 +159929,7 @@ ] }, { - "str": "-", + "str": "ref", "token_id": 17659, "o_rev_id": 1116133865, "in": [ @@ -159908,7 +159941,7 @@ ] }, { - "str": "10", + "str": ">", "token_id": 17660, "o_rev_id": 1116133865, "in": [ @@ -159920,7 +159953,7 @@ ] }, { - "str": "-", + "str": "{{", "token_id": 17661, "o_rev_id": 1116133865, "in": [ @@ -159932,7 +159965,7 @@ ] }, { - "str": "15", + "str": "cite", "token_id": 17662, "o_rev_id": 1116133865, "in": [ @@ -159944,7 +159977,7 @@ ] }, { - "str": "|", + "str": "web", "token_id": 17663, "o_rev_id": 1116133865, "in": [ @@ -159956,7 +159989,7 @@ ] }, { - "str": "website", + "str": "|", "token_id": 17664, "o_rev_id": 1116133865, "in": [ @@ -159968,7 +160001,7 @@ ] }, { - "str": "=", + "str": "last", "token_id": 17665, "o_rev_id": 1116133865, "in": [ @@ -159980,7 +160013,7 @@ ] }, { - "str": "nintendo", + "str": "=", "token_id": 17666, "o_rev_id": 1116133865, "in": [ @@ -159992,7 +160025,7 @@ ] }, { - "str": "world", + "str": "hansen", "token_id": 17667, "o_rev_id": 1116133865, "in": [ @@ -160004,7 +160037,7 @@ ] }, { - "str": "report", + "str": "|", "token_id": 17668, "o_rev_id": 1116133865, "in": [ @@ -160016,7 +160049,7 @@ ] }, { - "str": "}}", + "str": "first", "token_id": 17669, "o_rev_id": 1116133865, "in": [ @@ -160028,7 +160061,7 @@ ] }, { - "str": "<", + "str": "=", "token_id": 17670, "o_rev_id": 1116133865, "in": [ @@ -160040,7 +160073,7 @@ ] }, { - "str": "/", + "str": "john", "token_id": 17671, "o_rev_id": 1116133865, "in": [ @@ -160052,7 +160085,7 @@ ] }, { - "str": "ref", + "str": "|", "token_id": 17672, "o_rev_id": 1116133865, "in": [ @@ -160064,7 +160097,7 @@ ] }, { - "str": ">", + "str": "date", "token_id": 17673, "o_rev_id": 1116133865, "in": [ @@ -160076,7 +160109,7 @@ ] }, { - "str": "<", + "str": "=", "token_id": 17674, "o_rev_id": 1116133865, "in": [ @@ -160088,7 +160121,7 @@ ] }, { - "str": "ref", + "str": "2022", "token_id": 17675, "o_rev_id": 1116133865, "in": [ @@ -160100,7 +160133,7 @@ ] }, { - "str": ">", + "str": "-", "token_id": 17676, "o_rev_id": 1116133865, "in": [ @@ -160112,7 +160145,7 @@ ] }, { - "str": "{{", + "str": "09", "token_id": 17677, "o_rev_id": 1116133865, "in": [ @@ -160124,7 +160157,7 @@ ] }, { - "str": "cite", + "str": "-", "token_id": 17678, "o_rev_id": 1116133865, "in": [ @@ -160136,7 +160169,7 @@ ] }, { - "str": "web", + "str": "09", "token_id": 17679, "o_rev_id": 1116133865, "in": [ @@ -160160,7 +160193,7 @@ ] }, { - "str": "last", + "str": "title", "token_id": 17681, "o_rev_id": 1116133865, "in": [ @@ -160184,7 +160217,7 @@ ] }, { - "str": "hansen", + "str": "where", "token_id": 17683, "o_rev_id": 1116133865, "in": [ @@ -160196,7 +160229,7 @@ ] }, { - "str": "|", + "str": "does", "token_id": 17684, "o_rev_id": 1116133865, "in": [ @@ -160208,7 +160241,7 @@ ] }, { - "str": "first", + "str": "splatoon", "token_id": 17685, "o_rev_id": 1116133865, "in": [ @@ -160220,7 +160253,7 @@ ] }, { - "str": "=", + "str": "3", "token_id": 17686, "o_rev_id": 1116133865, "in": [ @@ -160232,7 +160265,7 @@ ] }, { - "str": "john", + "str": "take", "token_id": 17687, "o_rev_id": 1116133865, "in": [ @@ -160244,7 +160277,7 @@ ] }, { - "str": "|", + "str": "place", "token_id": 17688, "o_rev_id": 1116133865, "in": [ @@ -160256,7 +160289,7 @@ ] }, { - "str": "date", + "str": "?", "token_id": 17689, "o_rev_id": 1116133865, "in": [ @@ -160268,7 +160301,7 @@ ] }, { - "str": "=", + "str": "splatlands", "token_id": 17690, "o_rev_id": 1116133865, "in": [ @@ -160280,7 +160313,7 @@ ] }, { - "str": "2022", + "str": "and", "token_id": 17691, "o_rev_id": 1116133865, "in": [ @@ -160292,7 +160325,7 @@ ] }, { - "str": "-", + "str": "alterna", "token_id": 17692, "o_rev_id": 1116133865, "in": [ @@ -160304,7 +160337,7 @@ ] }, { - "str": "09", + "str": "locations", "token_id": 17693, "o_rev_id": 1116133865, "in": [ @@ -160316,7 +160349,7 @@ ] }, { - "str": "-", + "str": "explained", "token_id": 17694, "o_rev_id": 1116133865, "in": [ @@ -160328,7 +160361,7 @@ ] }, { - "str": "09", + "str": "|", "token_id": 17695, "o_rev_id": 1116133865, "in": [ @@ -160340,7 +160373,7 @@ ] }, { - "str": "|", + "str": "url", "token_id": 17696, "o_rev_id": 1116133865, "in": [ @@ -160352,7 +160385,7 @@ ] }, { - "str": "title", + "str": "=", "token_id": 17697, "o_rev_id": 1116133865, "in": [ @@ -160364,7 +160397,7 @@ ] }, { - "str": "=", + "str": "https", "token_id": 17698, "o_rev_id": 1116133865, "in": [ @@ -160376,7 +160409,7 @@ ] }, { - "str": "where", + "str": ":", "token_id": 17699, "o_rev_id": 1116133865, "in": [ @@ -160388,7 +160421,7 @@ ] }, { - "str": "does", + "str": "/", "token_id": 17700, "o_rev_id": 1116133865, "in": [ @@ -160400,7 +160433,7 @@ ] }, { - "str": "splatoon", + "str": "/", "token_id": 17701, "o_rev_id": 1116133865, "in": [ @@ -160412,7 +160445,7 @@ ] }, { - "str": "3", + "str": "www", "token_id": 17702, "o_rev_id": 1116133865, "in": [ @@ -160424,7 +160457,7 @@ ] }, { - "str": "take", + "str": ".", "token_id": 17703, "o_rev_id": 1116133865, "in": [ @@ -160436,7 +160469,7 @@ ] }, { - "str": "place", + "str": "gamepur", "token_id": 17704, "o_rev_id": 1116133865, "in": [ @@ -160448,7 +160481,7 @@ ] }, { - "str": "?", + "str": ".", "token_id": 17705, "o_rev_id": 1116133865, "in": [ @@ -160460,7 +160493,7 @@ ] }, { - "str": "splatlands", + "str": "com", "token_id": 17706, "o_rev_id": 1116133865, "in": [ @@ -160472,7 +160505,7 @@ ] }, { - "str": "and", + "str": "/", "token_id": 17707, "o_rev_id": 1116133865, "in": [ @@ -160484,7 +160517,7 @@ ] }, { - "str": "alterna", + "str": "guides", "token_id": 17708, "o_rev_id": 1116133865, "in": [ @@ -160496,7 +160529,7 @@ ] }, { - "str": "locations", + "str": "/", "token_id": 17709, "o_rev_id": 1116133865, "in": [ @@ -160508,7 +160541,7 @@ ] }, { - "str": "explained", + "str": "where", "token_id": 17710, "o_rev_id": 1116133865, "in": [ @@ -160520,7 +160553,7 @@ ] }, { - "str": "|", + "str": "-", "token_id": 17711, "o_rev_id": 1116133865, "in": [ @@ -160532,7 +160565,7 @@ ] }, { - "str": "url", + "str": "does", "token_id": 17712, "o_rev_id": 1116133865, "in": [ @@ -160544,7 +160577,7 @@ ] }, { - "str": "=", + "str": "-", "token_id": 17713, "o_rev_id": 1116133865, "in": [ @@ -160556,7 +160589,7 @@ ] }, { - "str": "https", + "str": "splatoon", "token_id": 17714, "o_rev_id": 1116133865, "in": [ @@ -160568,7 +160601,7 @@ ] }, { - "str": ":", + "str": "-", "token_id": 17715, "o_rev_id": 1116133865, "in": [ @@ -160580,7 +160613,7 @@ ] }, { - "str": "/", + "str": "3", "token_id": 17716, "o_rev_id": 1116133865, "in": [ @@ -160592,7 +160625,7 @@ ] }, { - "str": "/", + "str": "-", "token_id": 17717, "o_rev_id": 1116133865, "in": [ @@ -160604,7 +160637,7 @@ ] }, { - "str": "www", + "str": "take", "token_id": 17718, "o_rev_id": 1116133865, "in": [ @@ -160616,7 +160649,7 @@ ] }, { - "str": ".", + "str": "-", "token_id": 17719, "o_rev_id": 1116133865, "in": [ @@ -160628,7 +160661,7 @@ ] }, { - "str": "gamepur", + "str": "place", "token_id": 17720, "o_rev_id": 1116133865, "in": [ @@ -160640,7 +160673,7 @@ ] }, { - "str": ".", + "str": "-", "token_id": 17721, "o_rev_id": 1116133865, "in": [ @@ -160652,7 +160685,7 @@ ] }, { - "str": "com", + "str": "splatlands", "token_id": 17722, "o_rev_id": 1116133865, "in": [ @@ -160664,7 +160697,7 @@ ] }, { - "str": "/", + "str": "-", "token_id": 17723, "o_rev_id": 1116133865, "in": [ @@ -160676,7 +160709,7 @@ ] }, { - "str": "guides", + "str": "and", "token_id": 17724, "o_rev_id": 1116133865, "in": [ @@ -160688,7 +160721,7 @@ ] }, { - "str": "/", + "str": "-", "token_id": 17725, "o_rev_id": 1116133865, "in": [ @@ -160700,7 +160733,7 @@ ] }, { - "str": "where", + "str": "alterna", "token_id": 17726, "o_rev_id": 1116133865, "in": [ @@ -160724,7 +160757,7 @@ ] }, { - "str": "does", + "str": "locations", "token_id": 17728, "o_rev_id": 1116133865, "in": [ @@ -160748,7 +160781,7 @@ ] }, { - "str": "splatoon", + "str": "explained", "token_id": 17730, "o_rev_id": 1116133865, "in": [ @@ -160760,7 +160793,7 @@ ] }, { - "str": "-", + "str": "|", "token_id": 17731, "o_rev_id": 1116133865, "in": [ @@ -160772,7 +160805,7 @@ ] }, { - "str": "3", + "str": "access", "token_id": 17732, "o_rev_id": 1116133865, "in": [ @@ -160796,7 +160829,7 @@ ] }, { - "str": "take", + "str": "date", "token_id": 17734, "o_rev_id": 1116133865, "in": [ @@ -160808,7 +160841,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 17735, "o_rev_id": 1116133865, "in": [ @@ -160820,7 +160853,7 @@ ] }, { - "str": "place", + "str": "2022", "token_id": 17736, "o_rev_id": 1116133865, "in": [ @@ -160844,7 +160877,7 @@ ] }, { - "str": "splatlands", + "str": "10", "token_id": 17738, "o_rev_id": 1116133865, "in": [ @@ -160868,7 +160901,7 @@ ] }, { - "str": "and", + "str": "15", "token_id": 17740, "o_rev_id": 1116133865, "in": [ @@ -160880,7 +160913,7 @@ ] }, { - "str": "-", + "str": "|", "token_id": 17741, "o_rev_id": 1116133865, "in": [ @@ -160892,7 +160925,7 @@ ] }, { - "str": "alterna", + "str": "website", "token_id": 17742, "o_rev_id": 1116133865, "in": [ @@ -160904,7 +160937,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 17743, "o_rev_id": 1116133865, "in": [ @@ -160916,7 +160949,7 @@ ] }, { - "str": "locations", + "str": "gamepur", "token_id": 17744, "o_rev_id": 1116133865, "in": [ @@ -160928,7 +160961,7 @@ ] }, { - "str": "-", + "str": "|", "token_id": 17745, "o_rev_id": 1116133865, "in": [ @@ -160940,7 +160973,7 @@ ] }, { - "str": "explained", + "str": "language", "token_id": 17746, "o_rev_id": 1116133865, "in": [ @@ -160952,7 +160985,7 @@ ] }, { - "str": "|", + "str": "=", "token_id": 17747, "o_rev_id": 1116133865, "in": [ @@ -160964,7 +160997,7 @@ ] }, { - "str": "access", + "str": "en", "token_id": 17748, "o_rev_id": 1116133865, "in": [ @@ -160987,201 +161020,9 @@ 1136566099 ] }, - { - "str": "date", - "token_id": 17750, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "=", - "token_id": 17751, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "2022", - "token_id": 17752, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "-", - "token_id": 17753, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "10", - "token_id": 17754, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "-", - "token_id": 17755, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "15", - "token_id": 17756, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "|", - "token_id": 17757, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "website", - "token_id": 17758, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "=", - "token_id": 17759, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "gamepur", - "token_id": 17760, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "|", - "token_id": 17761, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "language", - "token_id": 17762, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "=", - "token_id": 17763, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "en", - "token_id": 17764, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, - { - "str": "-", - "token_id": 17765, - "o_rev_id": 1116133865, - "in": [ - 1117591128 - ], - "out": [ - 1117588531, - 1136566099 - ] - }, { "str": "us", - "token_id": 17766, + "token_id": 17750, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -161193,7 +161034,7 @@ }, { "str": "}}", - "token_id": 17767, + "token_id": 17751, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -161205,7 +161046,7 @@ }, { "str": "<", - "token_id": 17768, + "token_id": 17752, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -161217,7 +161058,7 @@ }, { "str": "/", - "token_id": 17769, + "token_id": 17753, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -161229,7 +161070,7 @@ }, { "str": "ref", - "token_id": 17770, + "token_id": 17754, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -161241,7 +161082,7 @@ }, { "str": ">", - "token_id": 17771, + "token_id": 17755, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -161253,7 +161094,7 @@ }, { "str": "}}", - "token_id": 17772, + "token_id": 17756, "o_rev_id": 1116133865, "in": [ 1117591128 @@ -161265,7 +161106,7 @@ }, { "str": ",", - "token_id": 17773, + "token_id": 17757, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161274,7 +161115,7 @@ }, { "str": "as", - "token_id": 17774, + "token_id": 17758, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161283,7 +161124,7 @@ }, { "str": "well", - "token_id": 17775, + "token_id": 17759, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161292,7 +161133,7 @@ }, { "str": "as", - "token_id": 17776, + "token_id": 17760, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161301,7 +161142,7 @@ }, { "str": "reiterating", - "token_id": 17777, + "token_id": 17761, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161310,7 +161151,7 @@ }, { "str": "their", - "token_id": 17778, + "token_id": 17762, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161319,7 +161160,7 @@ }, { "str": "policy", - "token_id": 17779, + "token_id": 17763, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161328,7 +161169,7 @@ }, { "str": "of", - "token_id": 17780, + "token_id": 17764, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161337,7 +161178,7 @@ }, { "str": "the", - "token_id": 17781, + "token_id": 17765, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161346,7 +161187,7 @@ }, { "str": "use", - "token_id": 17782, + "token_id": 17766, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161355,7 +161196,7 @@ }, { "str": "of", - "token_id": 17783, + "token_id": 17767, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161364,7 +161205,7 @@ }, { "str": "screenshots", - "token_id": 17784, + "token_id": 17768, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161373,7 +161214,7 @@ }, { "str": "or", - "token_id": 17785, + "token_id": 17769, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161382,7 +161223,7 @@ }, { "str": "videos", - "token_id": 17786, + "token_id": 17770, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161391,7 +161232,7 @@ }, { "str": "of", - "token_id": 17787, + "token_id": 17771, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161400,7 +161241,7 @@ }, { "str": "nintendo", - "token_id": 17788, + "token_id": 17772, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161409,7 +161250,7 @@ }, { "str": "games", - "token_id": 17789, + "token_id": 17773, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161418,7 +161259,7 @@ }, { "str": "on", - "token_id": 17790, + "token_id": 17774, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161427,7 +161268,7 @@ }, { "str": "their", - "token_id": 17791, + "token_id": 17775, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161436,7 +161277,7 @@ }, { "str": "corporate", - "token_id": 17792, + "token_id": 17776, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161445,7 +161286,7 @@ }, { "str": "[[", - "token_id": 17793, + "token_id": 17777, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161454,7 +161295,7 @@ }, { "str": "twitter", - "token_id": 17794, + "token_id": 17778, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161463,7 +161304,7 @@ }, { "str": "]]", - "token_id": 17795, + "token_id": 17779, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161472,7 +161313,7 @@ }, { "str": "account", - "token_id": 17796, + "token_id": 17780, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161481,7 +161322,7 @@ }, { "str": "<", - "token_id": 17797, + "token_id": 17781, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161490,7 +161331,7 @@ }, { "str": "ref", - "token_id": 17798, + "token_id": 17782, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161499,7 +161340,7 @@ }, { "str": ">", - "token_id": 17799, + "token_id": 17783, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161508,7 +161349,7 @@ }, { "str": "{{", - "token_id": 17800, + "token_id": 17784, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161517,7 +161358,7 @@ }, { "str": "cite", - "token_id": 17801, + "token_id": 17785, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161526,7 +161367,7 @@ }, { "str": "web", - "token_id": 17802, + "token_id": 17786, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161535,7 +161376,7 @@ }, { "str": "|", - "token_id": 17803, + "token_id": 17787, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161544,7 +161385,7 @@ }, { "str": "last", - "token_id": 17804, + "token_id": 17788, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161553,7 +161394,7 @@ }, { "str": "=", - "token_id": 17805, + "token_id": 17789, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161562,7 +161403,7 @@ }, { "str": "harrison", - "token_id": 17806, + "token_id": 17790, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161571,7 +161412,7 @@ }, { "str": "|", - "token_id": 17807, + "token_id": 17791, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161580,7 +161421,7 @@ }, { "str": "first", - "token_id": 17808, + "token_id": 17792, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161589,7 +161430,7 @@ }, { "str": "=", - "token_id": 17809, + "token_id": 17793, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161598,7 +161439,7 @@ }, { "str": "christian", - "token_id": 17810, + "token_id": 17794, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161607,7 +161448,7 @@ }, { "str": "|", - "token_id": 17811, + "token_id": 17795, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161616,7 +161457,7 @@ }, { "str": "date", - "token_id": 17812, + "token_id": 17796, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161625,7 +161466,7 @@ }, { "str": "=", - "token_id": 17813, + "token_id": 17797, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161634,7 +161475,7 @@ }, { "str": "2022", - "token_id": 17814, + "token_id": 17798, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161643,7 +161484,7 @@ }, { "str": "-", - "token_id": 17815, + "token_id": 17799, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161652,7 +161493,7 @@ }, { "str": "10", - "token_id": 17816, + "token_id": 17800, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161661,7 +161502,7 @@ }, { "str": "-", - "token_id": 17817, + "token_id": 17801, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161670,7 +161511,7 @@ }, { "str": "11", - "token_id": 17818, + "token_id": 17802, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161679,7 +161520,7 @@ }, { "str": "|", - "token_id": 17819, + "token_id": 17803, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161688,7 +161529,7 @@ }, { "str": "title", - "token_id": 17820, + "token_id": 17804, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161697,7 +161538,7 @@ }, { "str": "=", - "token_id": 17821, + "token_id": 17805, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161706,7 +161547,7 @@ }, { "str": "japanese", - "token_id": 17822, + "token_id": 17806, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161715,7 +161556,7 @@ }, { "str": "vtubers", - "token_id": 17823, + "token_id": 17807, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161724,7 +161565,7 @@ }, { "str": "found", - "token_id": 17824, + "token_id": 17808, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161733,7 +161574,7 @@ }, { "str": "a", - "token_id": 17825, + "token_id": 17809, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161742,7 +161583,7 @@ }, { "str": "new", - "token_id": 17826, + "token_id": 17810, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161751,7 +161592,7 @@ }, { "str": "way", - "token_id": 17827, + "token_id": 17811, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161760,7 +161601,7 @@ }, { "str": "to", - "token_id": 17828, + "token_id": 17812, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161769,7 +161610,7 @@ }, { "str": "dodge", - "token_id": 17829, + "token_id": 17813, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161778,7 +161619,7 @@ }, { "str": "porn", - "token_id": 17830, + "token_id": 17814, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161787,7 +161628,7 @@ }, { "str": "bans", - "token_id": 17831, + "token_id": 17815, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161796,7 +161637,7 @@ }, { "str": "while", - "token_id": 17832, + "token_id": 17816, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161805,7 +161646,7 @@ }, { "str": "playing", - "token_id": 17833, + "token_id": 17817, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161814,7 +161655,7 @@ }, { "str": "splatoon", - "token_id": 17834, + "token_id": 17818, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161823,7 +161664,7 @@ }, { "str": "3", - "token_id": 17835, + "token_id": 17819, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161832,7 +161673,7 @@ }, { "str": "|", - "token_id": 17836, + "token_id": 17820, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161841,7 +161682,7 @@ }, { "str": "url", - "token_id": 17837, + "token_id": 17821, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161850,7 +161691,7 @@ }, { "str": "=", - "token_id": 17838, + "token_id": 17822, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161859,7 +161700,7 @@ }, { "str": "https", - "token_id": 17839, + "token_id": 17823, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161868,7 +161709,7 @@ }, { "str": ":", - "token_id": 17840, + "token_id": 17824, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161877,7 +161718,7 @@ }, { "str": "/", - "token_id": 17841, + "token_id": 17825, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161886,7 +161727,7 @@ }, { "str": "/", - "token_id": 17842, + "token_id": 17826, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161895,7 +161736,7 @@ }, { "str": "dotesports", - "token_id": 17843, + "token_id": 17827, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161904,7 +161745,7 @@ }, { "str": ".", - "token_id": 17844, + "token_id": 17828, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161913,7 +161754,7 @@ }, { "str": "com", - "token_id": 17845, + "token_id": 17829, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161922,7 +161763,7 @@ }, { "str": "/", - "token_id": 17846, + "token_id": 17830, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161931,7 +161772,7 @@ }, { "str": "news", - "token_id": 17847, + "token_id": 17831, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161940,7 +161781,7 @@ }, { "str": "/", - "token_id": 17848, + "token_id": 17832, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161949,7 +161790,7 @@ }, { "str": "japanese", - "token_id": 17849, + "token_id": 17833, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161958,7 +161799,7 @@ }, { "str": "-", - "token_id": 17850, + "token_id": 17834, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161967,7 +161808,7 @@ }, { "str": "vtubers", - "token_id": 17851, + "token_id": 17835, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161976,7 +161817,7 @@ }, { "str": "-", - "token_id": 17852, + "token_id": 17836, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161985,7 +161826,7 @@ }, { "str": "found", - "token_id": 17853, + "token_id": 17837, "o_rev_id": 1116133865, "in": [], "out": [ @@ -161994,7 +161835,7 @@ }, { "str": "-", - "token_id": 17854, + "token_id": 17838, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162003,7 +161844,7 @@ }, { "str": "a", - "token_id": 17855, + "token_id": 17839, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162012,7 +161853,7 @@ }, { "str": "-", - "token_id": 17856, + "token_id": 17840, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162021,7 +161862,7 @@ }, { "str": "new", - "token_id": 17857, + "token_id": 17841, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162030,7 +161871,7 @@ }, { "str": "-", - "token_id": 17858, + "token_id": 17842, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162039,7 +161880,7 @@ }, { "str": "way", - "token_id": 17859, + "token_id": 17843, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162048,7 +161889,7 @@ }, { "str": "-", - "token_id": 17860, + "token_id": 17844, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162057,7 +161898,7 @@ }, { "str": "to", - "token_id": 17861, + "token_id": 17845, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162066,7 +161907,7 @@ }, { "str": "-", - "token_id": 17862, + "token_id": 17846, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162075,7 +161916,7 @@ }, { "str": "dodge", - "token_id": 17863, + "token_id": 17847, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162084,7 +161925,7 @@ }, { "str": "-", - "token_id": 17864, + "token_id": 17848, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162093,7 +161934,7 @@ }, { "str": "porn", - "token_id": 17865, + "token_id": 17849, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162102,7 +161943,7 @@ }, { "str": "-", - "token_id": 17866, + "token_id": 17850, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162111,7 +161952,7 @@ }, { "str": "bans", - "token_id": 17867, + "token_id": 17851, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162120,7 +161961,7 @@ }, { "str": "-", - "token_id": 17868, + "token_id": 17852, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162129,7 +161970,7 @@ }, { "str": "while", - "token_id": 17869, + "token_id": 17853, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162138,7 +161979,7 @@ }, { "str": "-", - "token_id": 17870, + "token_id": 17854, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162147,7 +161988,7 @@ }, { "str": "playing", - "token_id": 17871, + "token_id": 17855, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162156,7 +161997,7 @@ }, { "str": "-", - "token_id": 17872, + "token_id": 17856, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162165,7 +162006,7 @@ }, { "str": "splatoon", - "token_id": 17873, + "token_id": 17857, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162174,7 +162015,7 @@ }, { "str": "-", - "token_id": 17874, + "token_id": 17858, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162183,7 +162024,7 @@ }, { "str": "3", - "token_id": 17875, + "token_id": 17859, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162192,7 +162033,7 @@ }, { "str": "|", - "token_id": 17876, + "token_id": 17860, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162201,7 +162042,7 @@ }, { "str": "access", - "token_id": 17877, + "token_id": 17861, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162210,7 +162051,7 @@ }, { "str": "-", - "token_id": 17878, + "token_id": 17862, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162219,7 +162060,7 @@ }, { "str": "date", - "token_id": 17879, + "token_id": 17863, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162228,7 +162069,7 @@ }, { "str": "=", - "token_id": 17880, + "token_id": 17864, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162237,7 +162078,7 @@ }, { "str": "2022", - "token_id": 17881, + "token_id": 17865, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162246,7 +162087,7 @@ }, { "str": "-", - "token_id": 17882, + "token_id": 17866, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162255,7 +162096,7 @@ }, { "str": "10", - "token_id": 17883, + "token_id": 17867, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162264,7 +162105,7 @@ }, { "str": "-", - "token_id": 17884, + "token_id": 17868, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162273,7 +162114,7 @@ }, { "str": "15", - "token_id": 17885, + "token_id": 17869, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162282,7 +162123,7 @@ }, { "str": "|", - "token_id": 17886, + "token_id": 17870, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162291,7 +162132,7 @@ }, { "str": "website", - "token_id": 17887, + "token_id": 17871, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162300,7 +162141,7 @@ }, { "str": "=", - "token_id": 17888, + "token_id": 17872, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162309,7 +162150,7 @@ }, { "str": "dot", - "token_id": 17889, + "token_id": 17873, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162318,7 +162159,7 @@ }, { "str": "esports", - "token_id": 17890, + "token_id": 17874, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162327,7 +162168,7 @@ }, { "str": "|", - "token_id": 17891, + "token_id": 17875, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162336,7 +162177,7 @@ }, { "str": "language", - "token_id": 17892, + "token_id": 17876, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162345,7 +162186,7 @@ }, { "str": "=", - "token_id": 17893, + "token_id": 17877, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162354,7 +162195,7 @@ }, { "str": "en", - "token_id": 17894, + "token_id": 17878, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162363,7 +162204,7 @@ }, { "str": "-", - "token_id": 17895, + "token_id": 17879, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162372,7 +162213,7 @@ }, { "str": "us", - "token_id": 17896, + "token_id": 17880, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162381,7 +162222,7 @@ }, { "str": "}}", - "token_id": 17897, + "token_id": 17881, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162390,7 +162231,7 @@ }, { "str": "<", - "token_id": 17898, + "token_id": 17882, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162399,7 +162240,7 @@ }, { "str": "/", - "token_id": 17899, + "token_id": 17883, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162408,7 +162249,7 @@ }, { "str": "ref", - "token_id": 17900, + "token_id": 17884, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162417,7 +162258,7 @@ }, { "str": ">", - "token_id": 17901, + "token_id": 17885, "o_rev_id": 1116133865, "in": [], "out": [ @@ -162426,14 +162267,14 @@ }, { "str": "being", - "token_id": 17902, + "token_id": 17886, "o_rev_id": 1116133865, "in": [], "out": [] }, { "str": "|", - "token_id": 17903, + "token_id": 17887, "o_rev_id": 1116134031, "in": [ 1117591128 @@ -162445,7 +162286,7 @@ }, { "str": "[[", - "token_id": 17904, + "token_id": 17888, "o_rev_id": 1116134147, "in": [ 1117591128 @@ -162457,7 +162298,7 @@ }, { "str": "televisaunivision", - "token_id": 17905, + "token_id": 17889, "o_rev_id": 1116134147, "in": [ 1117591128 @@ -162469,7 +162310,7 @@ }, { "str": "]]", - "token_id": 17906, + "token_id": 17890, "o_rev_id": 1116134147, "in": [ 1117591128 @@ -162481,7 +162322,7 @@ }, { "str": "of", - "token_id": 17907, + "token_id": 17891, "o_rev_id": 1116210516, "in": [], "out": [ @@ -162490,7 +162331,7 @@ }, { "str": "after", - "token_id": 17908, + "token_id": 17892, "o_rev_id": 1116213350, "in": [], "out": [ @@ -162499,7 +162340,7 @@ }, { "str": "defeating", - "token_id": 17909, + "token_id": 17893, "o_rev_id": 1116213350, "in": [], "out": [ @@ -162508,7 +162349,7 @@ }, { "str": "dj", - "token_id": 17910, + "token_id": 17894, "o_rev_id": 1116213350, "in": [], "out": [ @@ -162517,7 +162358,7 @@ }, { "str": "octavio", - "token_id": 17911, + "token_id": 17895, "o_rev_id": 1116213350, "in": [], "out": [ @@ -162526,7 +162367,7 @@ }, { "str": ",", - "token_id": 17912, + "token_id": 17896, "o_rev_id": 1116213350, "in": [], "out": [ @@ -162535,7 +162376,7 @@ }, { "str": "player", - "token_id": 17913, + "token_id": 17897, "o_rev_id": 1116213350, "in": [], "out": [ @@ -162544,21 +162385,21 @@ }, { "str": "industries", - "token_id": 17914, + "token_id": 17898, "o_rev_id": 1116374072, "in": [], "out": [] }, { "str": "xtrawave", - "token_id": 17915, + "token_id": 17899, "o_rev_id": 1116374072, "in": [], "out": [] }, { "str": "a", - "token_id": 17916, + "token_id": 17900, "o_rev_id": 1116374072, "in": [ 1179974250 @@ -162569,14 +162410,14 @@ }, { "str": "successfully", - "token_id": 17917, + "token_id": 17901, "o_rev_id": 1116374072, "in": [], "out": [] }, { "str": "splatlands", - "token_id": 17918, + "token_id": 17902, "o_rev_id": 1116374072, "in": [], "out": [ @@ -162585,7 +162426,7 @@ }, { "str": "the", - "token_id": 17919, + "token_id": 17903, "o_rev_id": 1116374072, "in": [ 1117591128 @@ -162597,7 +162438,7 @@ }, { "str": "real", - "token_id": 17920, + "token_id": 17904, "o_rev_id": 1116374072, "in": [ 1117591128 @@ -162609,7 +162450,7 @@ }, { "str": "salmonid", - "token_id": 17921, + "token_id": 17905, "o_rev_id": 1116374072, "in": [], "out": [ @@ -162618,7 +162459,7 @@ }, { "str": "friend", - "token_id": 17922, + "token_id": 17906, "o_rev_id": 1116374072, "in": [], "out": [ @@ -162627,7 +162468,7 @@ }, { "str": "transforms", - "token_id": 17923, + "token_id": 17907, "o_rev_id": 1116374072, "in": [], "out": [ @@ -162636,7 +162477,7 @@ }, { "str": "premiers", - "token_id": 17924, + "token_id": 17908, "o_rev_id": 1116374072, "in": [], "out": [ @@ -162645,77 +162486,77 @@ }, { "str": "[[", - "token_id": 17925, + "token_id": 17909, "o_rev_id": 1116408495, "in": [], "out": [] }, { "str": "video", - "token_id": 17926, + "token_id": 17910, "o_rev_id": 1116408495, "in": [], "out": [] }, { "str": "game", - "token_id": 17927, + "token_id": 17911, "o_rev_id": 1116408495, "in": [], "out": [] }, { "str": "|", - "token_id": 17928, + "token_id": 17912, "o_rev_id": 1116408495, "in": [], "out": [] }, { "str": "]]", - "token_id": 17929, + "token_id": 17913, "o_rev_id": 1116408495, "in": [], "out": [] }, { "str": "city", - "token_id": 17930, + "token_id": 17914, "o_rev_id": 1116839086, "in": [], "out": [] }, { "str": "of", - "token_id": 17931, + "token_id": 17915, "o_rev_id": 1116839086, "in": [], "out": [] }, { "str": "splatsville", - "token_id": 17932, + "token_id": 17916, "o_rev_id": 1116839086, "in": [], "out": [] }, { "str": "(", - "token_id": 17933, + "token_id": 17917, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": ")", - "token_id": 17934, + "token_id": 17918, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "as", - "token_id": 17935, + "token_id": 17919, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162726,7 +162567,7 @@ }, { "str": "of", - "token_id": 17936, + "token_id": 17920, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162737,35 +162578,35 @@ }, { "str": "18", - "token_id": 17937, + "token_id": 17921, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "october", - "token_id": 17938, + "token_id": 17922, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "2022", - "token_id": 17939, + "token_id": 17923, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": ",", - "token_id": 17940, + "token_id": 17924, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "'", - "token_id": 17941, + "token_id": 17925, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162776,7 +162617,7 @@ }, { "str": "'", - "token_id": 17942, + "token_id": 17926, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162787,18 +162628,20 @@ }, { "str": "splatoon", - "token_id": 17943, + "token_id": 17927, "o_rev_id": 1116872596, "in": [ + 1202097960, 1216768014 ], "out": [ + 1202071552, 1216767975 ] }, { "str": "3", - "token_id": 17944, + "token_id": 17928, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162809,7 +162652,7 @@ }, { "str": "'", - "token_id": 17945, + "token_id": 17929, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162820,7 +162663,7 @@ }, { "str": "'", - "token_id": 17946, + "token_id": 17930, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162831,35 +162674,35 @@ }, { "str": "was", - "token_id": 17947, + "token_id": 17931, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "reported", - "token_id": 17948, + "token_id": 17932, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "to", - "token_id": 17949, + "token_id": 17933, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "be", - "token_id": 17950, + "token_id": 17934, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "the", - "token_id": 17951, + "token_id": 17935, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162870,35 +162713,35 @@ }, { "str": "highest", - "token_id": 17952, + "token_id": 17936, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 17953, + "token_id": 17937, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "selling", - "token_id": 17954, + "token_id": 17938, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "video", - "token_id": 17955, + "token_id": 17939, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "game", - "token_id": 17956, + "token_id": 17940, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162909,21 +162752,21 @@ }, { "str": "of", - "token_id": 17957, + "token_id": 17941, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "2022", - "token_id": 17958, + "token_id": 17942, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "in", - "token_id": 17959, + "token_id": 17943, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162934,7 +162777,7 @@ }, { "str": "japan", - "token_id": 17960, + "token_id": 17944, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162945,42 +162788,42 @@ }, { "str": ",", - "token_id": 17961, + "token_id": 17945, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "just", - "token_id": 17962, + "token_id": 17946, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "over", - "token_id": 17963, + "token_id": 17947, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "one", - "token_id": 17964, + "token_id": 17948, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "month", - "token_id": 17965, + "token_id": 17949, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "after", - "token_id": 17966, + "token_id": 17950, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -162991,154 +162834,154 @@ }, { "str": "its", - "token_id": 17967, + "token_id": 17951, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "release", - "token_id": 17968, + "token_id": 17952, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": ".", - "token_id": 17969, + "token_id": 17953, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "<", - "token_id": 17970, + "token_id": 17954, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "ref", - "token_id": 17971, + "token_id": 17955, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": ">", - "token_id": 17972, + "token_id": 17956, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "{{", - "token_id": 17973, + "token_id": 17957, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "cite", - "token_id": 17974, + "token_id": 17958, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "web", - "token_id": 17975, + "token_id": 17959, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "|", - "token_id": 17976, + "token_id": 17960, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "last", - "token_id": 17977, + "token_id": 17961, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "=", - "token_id": 17978, + "token_id": 17962, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "hagues", - "token_id": 17979, + "token_id": 17963, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "|", - "token_id": 17980, + "token_id": 17964, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "first", - "token_id": 17981, + "token_id": 17965, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "=", - "token_id": 17982, + "token_id": 17966, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "alana", - "token_id": 17983, + "token_id": 17967, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "|", - "token_id": 17984, + "token_id": 17968, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "date", - "token_id": 17985, + "token_id": 17969, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "=", - "token_id": 17986, + "token_id": 17970, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "2022", - "token_id": 17987, + "token_id": 17971, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 17988, + "token_id": 17972, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163147,7 +162990,7 @@ }, { "str": "10", - "token_id": 17989, + "token_id": 17973, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163156,7 +162999,7 @@ }, { "str": "-", - "token_id": 17990, + "token_id": 17974, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163165,49 +163008,53 @@ }, { "str": "18", - "token_id": 17991, + "token_id": 17975, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "|", - "token_id": 17992, + "token_id": 17976, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "title", - "token_id": 17993, + "token_id": 17977, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "=", - "token_id": 17994, + "token_id": 17978, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 17995, + "token_id": 17979, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "3", - "token_id": 17996, + "token_id": 17980, "o_rev_id": 1116872596, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "is", - "token_id": 17997, + "token_id": 17981, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -163218,28 +163065,28 @@ }, { "str": "already", - "token_id": 17998, + "token_id": 17982, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "the", - "token_id": 17999, + "token_id": 17983, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "best", - "token_id": 18000, + "token_id": 17984, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18001, + "token_id": 17985, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163248,21 +163095,21 @@ }, { "str": "selling", - "token_id": 18002, + "token_id": 17986, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "video", - "token_id": 18003, + "token_id": 17987, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "game", - "token_id": 18004, + "token_id": 17988, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -163273,35 +163120,35 @@ }, { "str": "of", - "token_id": 18005, + "token_id": 17989, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "2022", - "token_id": 18006, + "token_id": 17990, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "in", - "token_id": 18007, + "token_id": 17991, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "japan", - "token_id": 18008, + "token_id": 17992, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "|", - "token_id": 18009, + "token_id": 17993, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -163312,14 +163159,18 @@ }, { "str": "url", - "token_id": 18010, + "token_id": 17994, "o_rev_id": 1116872596, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 18011, + "token_id": 17995, "o_rev_id": 1116872596, "in": [ 1202097960 @@ -163330,308 +163181,308 @@ }, { "str": "https", - "token_id": 18012, + "token_id": 17996, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": ":", - "token_id": 18013, + "token_id": 17997, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "/", - "token_id": 18014, + "token_id": 17998, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "/", - "token_id": 18015, + "token_id": 17999, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "www", - "token_id": 18016, + "token_id": 18000, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": ".", - "token_id": 18017, + "token_id": 18001, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 18018, + "token_id": 18002, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": ".", - "token_id": 18019, + "token_id": 18003, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "com", - "token_id": 18020, + "token_id": 18004, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "/", - "token_id": 18021, + "token_id": 18005, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "news", - "token_id": 18022, + "token_id": 18006, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "/", - "token_id": 18023, + "token_id": 18007, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "2022", - "token_id": 18024, + "token_id": 18008, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "/", - "token_id": 18025, + "token_id": 18009, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "10", - "token_id": 18026, + "token_id": 18010, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "/", - "token_id": 18027, + "token_id": 18011, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 18028, + "token_id": 18012, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18029, + "token_id": 18013, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "3", - "token_id": 18030, + "token_id": 18014, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18031, + "token_id": 18015, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "is", - "token_id": 18032, + "token_id": 18016, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18033, + "token_id": 18017, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "already", - "token_id": 18034, + "token_id": 18018, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18035, + "token_id": 18019, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "the", - "token_id": 18036, + "token_id": 18020, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18037, + "token_id": 18021, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "best", - "token_id": 18038, + "token_id": 18022, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18039, + "token_id": 18023, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "selling", - "token_id": 18040, + "token_id": 18024, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18041, + "token_id": 18025, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "video", - "token_id": 18042, + "token_id": 18026, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18043, + "token_id": 18027, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "game", - "token_id": 18044, + "token_id": 18028, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18045, + "token_id": 18029, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "of", - "token_id": 18046, + "token_id": 18030, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18047, + "token_id": 18031, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "2022", - "token_id": 18048, + "token_id": 18032, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18049, + "token_id": 18033, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "in", - "token_id": 18050, + "token_id": 18034, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18051, + "token_id": 18035, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "japan", - "token_id": 18052, + "token_id": 18036, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "|", - "token_id": 18053, + "token_id": 18037, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "access", - "token_id": 18054, + "token_id": 18038, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18055, + "token_id": 18039, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163640,35 +163491,35 @@ }, { "str": "date", - "token_id": 18056, + "token_id": 18040, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "=", - "token_id": 18057, + "token_id": 18041, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "2022", - "token_id": 18058, + "token_id": 18042, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18059, + "token_id": 18043, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "10", - "token_id": 18060, + "token_id": 18044, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163677,14 +163528,14 @@ }, { "str": "-", - "token_id": 18061, + "token_id": 18045, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "18", - "token_id": 18062, + "token_id": 18046, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163693,28 +163544,28 @@ }, { "str": "|", - "token_id": 18063, + "token_id": 18047, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "website", - "token_id": 18064, + "token_id": 18048, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "=", - "token_id": 18065, + "token_id": 18049, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "[[", - "token_id": 18066, + "token_id": 18050, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163723,14 +163574,14 @@ }, { "str": "nintendo", - "token_id": 18067, + "token_id": 18051, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "life", - "token_id": 18068, + "token_id": 18052, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163739,7 +163590,7 @@ }, { "str": "]]", - "token_id": 18069, + "token_id": 18053, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163748,14 +163599,14 @@ }, { "str": "|", - "token_id": 18070, + "token_id": 18054, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "publisher", - "token_id": 18071, + "token_id": 18055, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163764,14 +163615,14 @@ }, { "str": "=", - "token_id": 18072, + "token_id": 18056, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "hookshot", - "token_id": 18073, + "token_id": 18057, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163780,7 +163631,7 @@ }, { "str": "media", - "token_id": 18074, + "token_id": 18058, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163789,50 +163640,42 @@ }, { "str": "|", - "token_id": 18075, + "token_id": 18059, "o_rev_id": 1116872596, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "language", - "token_id": 18076, + "token_id": 18060, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "=", - "token_id": 18077, + "token_id": 18061, "o_rev_id": 1116872596, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "en", - "token_id": 18078, + "token_id": 18062, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "-", - "token_id": 18079, + "token_id": 18063, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "gb", - "token_id": 18080, + "token_id": 18064, "o_rev_id": 1116872596, "in": [], "out": [ @@ -163841,42 +163684,42 @@ }, { "str": "}}", - "token_id": 18081, + "token_id": 18065, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "<", - "token_id": 18082, + "token_id": 18066, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "/", - "token_id": 18083, + "token_id": 18067, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "ref", - "token_id": 18084, + "token_id": 18068, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": ">", - "token_id": 18085, + "token_id": 18069, "o_rev_id": 1116872596, "in": [], "out": [] }, { "str": "known", - "token_id": 18086, + "token_id": 18070, "o_rev_id": 1117020144, "in": [], "out": [ @@ -163885,7 +163728,7 @@ }, { "str": "as", - "token_id": 18087, + "token_id": 18071, "o_rev_id": 1117020144, "in": [], "out": [ @@ -163894,7 +163737,7 @@ }, { "str": "\"", - "token_id": 18088, + "token_id": 18072, "o_rev_id": 1117020144, "in": [], "out": [ @@ -163903,7 +163746,7 @@ }, { "str": "alterna", - "token_id": 18089, + "token_id": 18073, "o_rev_id": 1117020144, "in": [], "out": [ @@ -163912,7 +163755,7 @@ }, { "str": "\"", - "token_id": 18090, + "token_id": 18074, "o_rev_id": 1117020144, "in": [], "out": [ @@ -163921,7 +163764,7 @@ }, { "str": "sinsogumi", - "token_id": 18091, + "token_id": 18075, "o_rev_id": 1117022476, "in": [], "out": [ @@ -163930,7 +163773,7 @@ }, { "str": "livestream", - "token_id": 18092, + "token_id": 18076, "o_rev_id": 1117022476, "in": [], "out": [ @@ -163939,7 +163782,7 @@ }, { "str": "'", - "token_id": 18093, + "token_id": 18077, "o_rev_id": 1117149714, "in": [ 1117591128 @@ -163951,49 +163794,53 @@ }, { "str": "{{", - "token_id": 18094, + "token_id": 18078, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "magazine", - "token_id": 18095, + "token_id": 18079, "o_rev_id": 1117149714, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 18096, + "token_id": 18080, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18097, + "token_id": 18081, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18098, + "token_id": 18082, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18099, + "token_id": 18083, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18100, + "token_id": 18084, "o_rev_id": 1117149714, "in": [ 1202097960 @@ -164004,7 +163851,7 @@ }, { "str": "=", - "token_id": 18101, + "token_id": 18085, "o_rev_id": 1117149714, "in": [ 1202097960 @@ -164015,21 +163862,21 @@ }, { "str": "|", - "token_id": 18102, + "token_id": 18086, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18103, + "token_id": 18087, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18104, + "token_id": 18088, "o_rev_id": 1117149714, "in": [ 1117591128 @@ -164040,7 +163887,7 @@ }, { "str": "=", - "token_id": 18105, + "token_id": 18089, "o_rev_id": 1117149714, "in": [ 1117591128 @@ -164051,28 +163898,28 @@ }, { "str": "|", - "token_id": 18106, + "token_id": 18090, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "magazine", - "token_id": 18107, + "token_id": 18091, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18108, + "token_id": 18092, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18109, + "token_id": 18093, "o_rev_id": 1117149714, "in": [], "out": [ @@ -164081,7 +163928,7 @@ }, { "str": "=", - "token_id": 18110, + "token_id": 18094, "o_rev_id": 1117149714, "in": [], "out": [ @@ -164090,7 +163937,7 @@ }, { "str": "|", - "token_id": 18111, + "token_id": 18095, "o_rev_id": 1117149714, "in": [ 1117591128 @@ -164101,7 +163948,7 @@ }, { "str": "=", - "token_id": 18112, + "token_id": 18096, "o_rev_id": 1117149714, "in": [ 1117591128 @@ -164112,112 +163959,112 @@ }, { "str": "{{", - "token_id": 18113, + "token_id": 18097, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "magazine", - "token_id": 18114, + "token_id": 18098, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18115, + "token_id": 18099, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18116, + "token_id": 18100, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18117, + "token_id": 18101, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18118, + "token_id": 18102, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18119, + "token_id": 18103, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18120, + "token_id": 18104, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18121, + "token_id": 18105, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18122, + "token_id": 18106, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18123, + "token_id": 18107, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18124, + "token_id": 18108, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18125, + "token_id": 18109, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18126, + "token_id": 18110, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18127, + "token_id": 18111, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "magazine", - "token_id": 18128, + "token_id": 18112, "o_rev_id": 1117149714, "in": [], "out": [ @@ -164226,28 +164073,28 @@ }, { "str": "=", - "token_id": 18129, + "token_id": 18113, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "|", - "token_id": 18130, + "token_id": 18114, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "=", - "token_id": 18131, + "token_id": 18115, "o_rev_id": 1117149714, "in": [], "out": [] }, { "str": "}}", - "token_id": 18132, + "token_id": 18116, "o_rev_id": 1117149714, "in": [], "out": [ @@ -164256,14 +164103,14 @@ }, { "str": "november", - "token_id": 18133, + "token_id": 18117, "o_rev_id": 1117395958, "in": [], "out": [] }, { "str": "|", - "token_id": 18134, + "token_id": 18118, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164272,7 +164119,7 @@ }, { "str": "cohozoona", - "token_id": 18135, + "token_id": 18119, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164281,7 +164128,7 @@ }, { "str": "cops", - "token_id": 18136, + "token_id": 18120, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164290,7 +164137,7 @@ }, { "str": "table", - "token_id": 18137, + "token_id": 18121, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164299,7 +164146,7 @@ }, { "str": "dinner", - "token_id": 18138, + "token_id": 18122, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164308,7 +164155,7 @@ }, { "str": "player", - "token_id": 18139, + "token_id": 18123, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164317,7 +164164,7 @@ }, { "str": "the", - "token_id": 18140, + "token_id": 18124, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164326,7 +164173,7 @@ }, { "str": "spegetti", - "token_id": 18141, + "token_id": 18125, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164335,7 +164182,7 @@ }, { "str": "person", - "token_id": 18142, + "token_id": 18126, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164344,7 +164191,7 @@ }, { "str": "with", - "token_id": 18143, + "token_id": 18127, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164353,7 +164200,7 @@ }, { "str": "guiltiness", - "token_id": 18144, + "token_id": 18128, "o_rev_id": 1117493302, "in": [], "out": [ @@ -164362,7 +164209,7 @@ }, { "str": "mars", - "token_id": 18145, + "token_id": 18129, "o_rev_id": 1117587863, "in": [], "out": [ @@ -164371,7 +164218,7 @@ }, { "str": "you", - "token_id": 18146, + "token_id": 18130, "o_rev_id": 1117587863, "in": [], "out": [ @@ -164380,7 +164227,7 @@ }, { "str": "he", - "token_id": 18147, + "token_id": 18131, "o_rev_id": 1117587863, "in": [], "out": [ @@ -164389,7 +164236,7 @@ }, { "str": "smells", - "token_id": 18148, + "token_id": 18132, "o_rev_id": 1117587863, "in": [], "out": [ @@ -164398,7 +164245,7 @@ }, { "str": "funny", - "token_id": 18149, + "token_id": 18133, "o_rev_id": 1117587863, "in": [], "out": [ @@ -164407,7 +164254,7 @@ }, { "str": "bigpotato", - "token_id": 18150, + "token_id": 18134, "o_rev_id": 1117587863, "in": [], "out": [ @@ -164416,7 +164263,7 @@ }, { "str": "biggest", - "token_id": 18151, + "token_id": 18135, "o_rev_id": 1117587863, "in": [], "out": [ @@ -164425,7 +164272,7 @@ }, { "str": "like", - "token_id": 18152, + "token_id": 18136, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164434,7 +164281,7 @@ }, { "str": "abc", - "token_id": 18153, + "token_id": 18137, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164443,7 +164290,7 @@ }, { "str": "mouse", - "token_id": 18154, + "token_id": 18138, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164452,7 +164299,7 @@ }, { "str": "|", - "token_id": 18155, + "token_id": 18139, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164461,7 +164308,7 @@ }, { "str": "cvs", - "token_id": 18156, + "token_id": 18140, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164470,7 +164317,7 @@ }, { "str": "abc", - "token_id": 18157, + "token_id": 18141, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164479,7 +164326,7 @@ }, { "str": "mouse", - "token_id": 18158, + "token_id": 18142, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164488,7 +164335,7 @@ }, { "str": "mods", - "token_id": 18159, + "token_id": 18143, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164497,7 +164344,7 @@ }, { "str": "hacking", - "token_id": 18160, + "token_id": 18144, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164506,7 +164353,7 @@ }, { "str": "mods", - "token_id": 18161, + "token_id": 18145, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164515,7 +164362,7 @@ }, { "str": "section", - "token_id": 18162, + "token_id": 18146, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164524,7 +164371,7 @@ }, { "str": "on", - "token_id": 18163, + "token_id": 18147, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164533,7 +164380,7 @@ }, { "str": "shivers", - "token_id": 18164, + "token_id": 18148, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164542,7 +164389,7 @@ }, { "str": "platform", - "token_id": 18165, + "token_id": 18149, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164551,7 +164398,7 @@ }, { "str": "hacking", - "token_id": 18166, + "token_id": 18150, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164560,7 +164407,7 @@ }, { "str": "is", - "token_id": 18167, + "token_id": 18151, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164569,7 +164416,7 @@ }, { "str": "allowed", - "token_id": 18168, + "token_id": 18152, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164578,7 +164425,7 @@ }, { "str": "mods", - "token_id": 18169, + "token_id": 18153, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164587,7 +164434,7 @@ }, { "str": "are", - "token_id": 18170, + "token_id": 18154, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164596,7 +164443,7 @@ }, { "str": "allowed", - "token_id": 18171, + "token_id": 18155, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164605,7 +164452,7 @@ }, { "str": "make", - "token_id": 18172, + "token_id": 18156, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164614,7 +164461,7 @@ }, { "str": "da", - "token_id": 18173, + "token_id": 18157, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164623,7 +164470,7 @@ }, { "str": "unfair", - "token_id": 18174, + "token_id": 18158, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164632,7 +164479,7 @@ }, { "str": "like", - "token_id": 18175, + "token_id": 18159, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164641,7 +164488,7 @@ }, { "str": "haxxie", - "token_id": 18176, + "token_id": 18160, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164650,7 +164497,7 @@ }, { "str": "squaddle", - "token_id": 18177, + "token_id": 18161, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164659,7 +164506,7 @@ }, { "str": "|", - "token_id": 18178, + "token_id": 18162, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164668,7 +164515,7 @@ }, { "str": "biggest", - "token_id": 18179, + "token_id": 18163, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164677,7 +164524,7 @@ }, { "str": "pound", - "token_id": 18180, + "token_id": 18164, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164686,7 +164533,7 @@ }, { "str": "chicken", - "token_id": 18181, + "token_id": 18165, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164695,7 +164542,7 @@ }, { "str": "coop", - "token_id": 18182, + "token_id": 18166, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164704,7 +164551,7 @@ }, { "str": "|", - "token_id": 18183, + "token_id": 18167, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164713,7 +164560,7 @@ }, { "str": "pvp", - "token_id": 18184, + "token_id": 18168, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164722,7 +164569,7 @@ }, { "str": "settings", - "token_id": 18185, + "token_id": 18169, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164731,7 +164578,7 @@ }, { "str": "game", - "token_id": 18186, + "token_id": 18170, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164740,7 +164587,7 @@ }, { "str": "not", - "token_id": 18187, + "token_id": 18171, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164749,7 +164596,7 @@ }, { "str": "popular", - "token_id": 18188, + "token_id": 18172, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164758,7 +164605,7 @@ }, { "str": "nor", - "token_id": 18189, + "token_id": 18173, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164767,7 +164614,7 @@ }, { "str": "baby", - "token_id": 18190, + "token_id": 18174, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164776,7 +164623,7 @@ }, { "str": "yoda", - "token_id": 18191, + "token_id": 18175, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164785,7 +164632,7 @@ }, { "str": "|", - "token_id": 18192, + "token_id": 18176, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164794,7 +164641,7 @@ }, { "str": "url", - "token_id": 18193, + "token_id": 18177, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164803,7 +164650,7 @@ }, { "str": "=", - "token_id": 18194, + "token_id": 18178, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164812,7 +164659,7 @@ }, { "str": "|", - "token_id": 18195, + "token_id": 18179, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164821,7 +164668,7 @@ }, { "str": "language", - "token_id": 18196, + "token_id": 18180, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164830,7 +164677,7 @@ }, { "str": "=", - "token_id": 18197, + "token_id": 18181, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164839,7 +164686,7 @@ }, { "str": "en", - "token_id": 18198, + "token_id": 18182, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164848,7 +164695,7 @@ }, { "str": "-", - "token_id": 18199, + "token_id": 18183, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164857,7 +164704,7 @@ }, { "str": "us", - "token_id": 18200, + "token_id": 18184, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164866,7 +164713,7 @@ }, { "str": "|", - "token_id": 18201, + "token_id": 18185, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164875,7 +164722,7 @@ }, { "str": "issn", - "token_id": 18202, + "token_id": 18186, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164884,7 +164731,7 @@ }, { "str": "=", - "token_id": 18203, + "token_id": 18187, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164893,7 +164740,7 @@ }, { "str": "1059", - "token_id": 18204, + "token_id": 18188, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164902,7 +164749,7 @@ }, { "str": "-", - "token_id": 18205, + "token_id": 18189, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164911,7 +164758,7 @@ }, { "str": "1028", - "token_id": 18206, + "token_id": 18190, "o_rev_id": 1117588531, "in": [], "out": [ @@ -164920,7 +164767,7 @@ }, { "str": "date", - "token_id": 18207, + "token_id": 18191, "o_rev_id": 1117721353, "in": [], "out": [ @@ -164929,7 +164776,7 @@ }, { "str": "=", - "token_id": 18208, + "token_id": 18192, "o_rev_id": 1117721353, "in": [], "out": [ @@ -164938,7 +164785,7 @@ }, { "str": "28", - "token_id": 18209, + "token_id": 18193, "o_rev_id": 1117721353, "in": [], "out": [ @@ -164947,7 +164794,7 @@ }, { "str": "august", - "token_id": 18210, + "token_id": 18194, "o_rev_id": 1117721353, "in": [], "out": [ @@ -164956,7 +164803,7 @@ }, { "str": "2022", - "token_id": 18211, + "token_id": 18195, "o_rev_id": 1117721353, "in": [], "out": [ @@ -164965,7 +164812,7 @@ }, { "str": "|", - "token_id": 18212, + "token_id": 18196, "o_rev_id": 1117721353, "in": [], "out": [ @@ -164974,70 +164821,70 @@ }, { "str": "<", - "token_id": 18213, + "token_id": 18197, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "ref", - "token_id": 18214, + "token_id": 18198, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "name", - "token_id": 18215, + "token_id": 18199, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "=", - "token_id": 18216, + "token_id": 18200, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "\"", - "token_id": 18217, + "token_id": 18201, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "gi", - "token_id": 18218, + "token_id": 18202, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "\"", - "token_id": 18219, + "token_id": 18203, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "/", - "token_id": 18220, + "token_id": 18204, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": ">", - "token_id": 18221, + "token_id": 18205, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "a", - "token_id": 18222, + "token_id": 18206, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165046,7 +164893,7 @@ }, { "str": "[[", - "token_id": 18223, + "token_id": 18207, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165055,7 +164902,7 @@ }, { "str": "holocaust", - "token_id": 18224, + "token_id": 18208, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165064,7 +164911,7 @@ }, { "str": "]]", - "token_id": 18225, + "token_id": 18209, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165073,7 +164920,7 @@ }, { "str": "he", - "token_id": 18226, + "token_id": 18210, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165082,7 +164929,7 @@ }, { "str": "also", - "token_id": 18227, + "token_id": 18211, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165091,7 +164938,7 @@ }, { "str": "praised", - "token_id": 18228, + "token_id": 18212, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165100,7 +164947,7 @@ }, { "str": "the", - "token_id": 18229, + "token_id": 18213, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165109,7 +164956,7 @@ }, { "str": "game", - "token_id": 18230, + "token_id": 18214, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165118,7 +164965,7 @@ }, { "str": "'", - "token_id": 18231, + "token_id": 18215, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165127,7 +164974,7 @@ }, { "str": "s", - "token_id": 18232, + "token_id": 18216, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165136,7 +164983,7 @@ }, { "str": "movement", - "token_id": 18233, + "token_id": 18217, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165145,7 +164992,7 @@ }, { "str": ",", - "token_id": 18234, + "token_id": 18218, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165154,7 +165001,7 @@ }, { "str": "saying", - "token_id": 18235, + "token_id": 18219, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165163,7 +165010,7 @@ }, { "str": "that", - "token_id": 18236, + "token_id": 18220, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165172,7 +165019,7 @@ }, { "str": "few", - "token_id": 18237, + "token_id": 18221, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165181,7 +165028,7 @@ }, { "str": "games", - "token_id": 18238, + "token_id": 18222, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165190,7 +165037,7 @@ }, { "str": "match", - "token_id": 18239, + "token_id": 18223, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165199,7 +165046,7 @@ }, { "str": "the", - "token_id": 18240, + "token_id": 18224, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165208,7 +165055,7 @@ }, { "str": "smooth", - "token_id": 18241, + "token_id": 18225, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165217,7 +165064,7 @@ }, { "str": ",", - "token_id": 18242, + "token_id": 18226, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165226,7 +165073,7 @@ }, { "str": "intuitive", - "token_id": 18243, + "token_id": 18227, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165235,7 +165082,7 @@ }, { "str": "mobility", - "token_id": 18244, + "token_id": 18228, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165244,7 +165091,7 @@ }, { "str": "splatoon", - "token_id": 18245, + "token_id": 18229, "o_rev_id": 1117806669, "in": [ 1216768014 @@ -165256,7 +165103,7 @@ }, { "str": "gives", - "token_id": 18246, + "token_id": 18230, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165265,7 +165112,7 @@ }, { "str": "you", - "token_id": 18247, + "token_id": 18231, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165274,7 +165121,7 @@ }, { "str": "while", - "token_id": 18248, + "token_id": 18232, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165283,7 +165130,7 @@ }, { "str": "submerged", - "token_id": 18249, + "token_id": 18233, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165292,7 +165139,7 @@ }, { "str": "and", - "token_id": 18250, + "token_id": 18234, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165301,7 +165148,7 @@ }, { "str": "cruising", - "token_id": 18251, + "token_id": 18235, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165310,7 +165157,7 @@ }, { "str": "through", - "token_id": 18252, + "token_id": 18236, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165319,7 +165166,7 @@ }, { "str": "a", - "token_id": 18253, + "token_id": 18237, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165328,7 +165175,7 @@ }, { "str": "map", - "token_id": 18254, + "token_id": 18238, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165337,7 +165184,7 @@ }, { "str": "\"", - "token_id": 18255, + "token_id": 18239, "o_rev_id": 1117806669, "in": [], "out": [ @@ -165346,56 +165193,56 @@ }, { "str": ".", - "token_id": 18256, + "token_id": 18240, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "\"", - "token_id": 18257, + "token_id": 18241, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "/", - "token_id": 18258, + "token_id": 18242, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": ">", - "token_id": 18259, + "token_id": 18243, "o_rev_id": 1117806669, "in": [], "out": [] }, { "str": "|", - "token_id": 18260, + "token_id": 18244, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "tg", - "token_id": 18261, + "token_id": 18245, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "=", - "token_id": 18262, + "token_id": 18246, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "{{", - "token_id": 18263, + "token_id": 18247, "o_rev_id": 1118230859, "in": [], "out": [ @@ -165404,7 +165251,7 @@ }, { "str": "rating", - "token_id": 18264, + "token_id": 18248, "o_rev_id": 1118230859, "in": [], "out": [ @@ -165413,7 +165260,7 @@ }, { "str": "|", - "token_id": 18265, + "token_id": 18249, "o_rev_id": 1118230859, "in": [], "out": [ @@ -165422,14 +165269,14 @@ }, { "str": "4", - "token_id": 18266, + "token_id": 18250, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "|", - "token_id": 18267, + "token_id": 18251, "o_rev_id": 1118230859, "in": [], "out": [ @@ -165438,14 +165285,14 @@ }, { "str": "5", - "token_id": 18268, + "token_id": 18252, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "}}", - "token_id": 18269, + "token_id": 18253, "o_rev_id": 1118230859, "in": [], "out": [ @@ -165454,427 +165301,427 @@ }, { "str": "<", - "token_id": 18270, + "token_id": 18254, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "ref", - "token_id": 18271, + "token_id": 18255, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "name", - "token_id": 18272, + "token_id": 18256, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "=", - "token_id": 18273, + "token_id": 18257, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "\"", - "token_id": 18274, + "token_id": 18258, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "tg", - "token_id": 18275, + "token_id": 18259, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "\"", - "token_id": 18276, + "token_id": 18260, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "{{", - "token_id": 18277, + "token_id": 18261, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "cite", - "token_id": 18278, + "token_id": 18262, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "web", - "token_id": 18279, + "token_id": 18263, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "|", - "token_id": 18280, + "token_id": 18264, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "url", - "token_id": 18281, + "token_id": 18265, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "=", - "token_id": 18282, + "token_id": 18266, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "https", - "token_id": 18283, + "token_id": 18267, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": ":", - "token_id": 18284, + "token_id": 18268, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "/", - "token_id": 18285, + "token_id": 18269, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "/", - "token_id": 18286, + "token_id": 18270, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "www", - "token_id": 18287, + "token_id": 18271, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": ".", - "token_id": 18288, + "token_id": 18272, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "theguardian", - "token_id": 18289, + "token_id": 18273, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": ".", - "token_id": 18290, + "token_id": 18274, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "com", - "token_id": 18291, + "token_id": 18275, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "/", - "token_id": 18292, + "token_id": 18276, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "games", - "token_id": 18293, + "token_id": 18277, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "/", - "token_id": 18294, + "token_id": 18278, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "2022", - "token_id": 18295, + "token_id": 18279, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "/", - "token_id": 18296, + "token_id": 18280, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "sep", - "token_id": 18297, + "token_id": 18281, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "/", - "token_id": 18298, + "token_id": 18282, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "15", - "token_id": 18299, + "token_id": 18283, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "/", - "token_id": 18300, + "token_id": 18284, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 18301, + "token_id": 18285, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18302, + "token_id": 18286, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "3", - "token_id": 18303, + "token_id": 18287, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18304, + "token_id": 18288, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "review", - "token_id": 18305, + "token_id": 18289, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18306, + "token_id": 18290, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "nintendos", - "token_id": 18307, + "token_id": 18291, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18308, + "token_id": 18292, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "new", - "token_id": 18309, + "token_id": 18293, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18310, + "token_id": 18294, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "squid", - "token_id": 18311, + "token_id": 18295, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18312, + "token_id": 18296, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "game", - "token_id": 18313, + "token_id": 18297, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18314, + "token_id": 18298, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "is", - "token_id": 18315, + "token_id": 18299, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18316, + "token_id": 18300, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "ink", - "token_id": 18317, + "token_id": 18301, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18318, + "token_id": 18302, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "redible", - "token_id": 18319, + "token_id": 18303, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18320, + "token_id": 18304, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "fun", - "token_id": 18321, + "token_id": 18305, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "|", - "token_id": 18322, + "token_id": 18306, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "title", - "token_id": 18323, + "token_id": 18307, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "=", - "token_id": 18324, + "token_id": 18308, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 18325, + "token_id": 18309, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "3", - "token_id": 18326, + "token_id": 18310, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "review", - "token_id": 18327, + "token_id": 18311, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "–", - "token_id": 18328, + "token_id": 18312, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 18329, + "token_id": 18313, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "’", - "token_id": 18330, + "token_id": 18314, "o_rev_id": 1118230859, "in": [], "out": [ @@ -165883,190 +165730,170 @@ }, { "str": "s", - "token_id": 18331, + "token_id": 18315, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "new", - "token_id": 18332, + "token_id": 18316, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "squid", - "token_id": 18333, + "token_id": 18317, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "game", - "token_id": 18334, + "token_id": 18318, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "is", - "token_id": 18335, + "token_id": 18319, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "ink", - "token_id": 18336, + "token_id": 18320, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "-", - "token_id": 18337, + "token_id": 18321, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "redible", - "token_id": 18338, + "token_id": 18322, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "fun", - "token_id": 18339, + "token_id": 18323, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "|", - "token_id": 18340, + "token_id": 18324, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "first", - "token_id": 18341, + "token_id": 18325, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", - "token_id": 18342, + "token_id": 18326, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "keza", - "token_id": 18343, + "token_id": 18327, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "|", - "token_id": 18344, + "token_id": 18328, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "last", - "token_id": 18345, + "token_id": 18329, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", - "token_id": 18346, + "token_id": 18330, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "macdonald", - "token_id": 18347, + "token_id": 18331, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "|", - "token_id": 18348, + "token_id": 18332, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "date", - "token_id": 18349, + "token_id": 18333, "o_rev_id": 1118230859, "in": [], - "out": [ - 1141810947 - ] + "out": [] }, { "str": "=", - "token_id": 18350, + "token_id": 18334, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "2022", - "token_id": 18351, + "token_id": 18335, "o_rev_id": 1118230859, "in": [], - "out": [ - 1141810947 - ] + "out": [] }, { "str": "-", - "token_id": 18352, + "token_id": 18336, "o_rev_id": 1118230859, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "09", - "token_id": 18353, + "token_id": 18337, "o_rev_id": 1118230859, "in": [], "out": [ - 1140535097 + 1168453704 ] }, { "str": "-", - "token_id": 18354, + "token_id": 18338, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166075,30 +165902,32 @@ }, { "str": "15", - "token_id": 18355, + "token_id": 18339, "o_rev_id": 1118230859, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 18356, + "token_id": 18340, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "access", - "token_id": 18357, + "token_id": 18341, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "-", - "token_id": 18358, + "token_id": 18342, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166107,32 +165936,28 @@ }, { "str": "date", - "token_id": 18359, + "token_id": 18343, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", - "token_id": 18360, + "token_id": 18344, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "2022", - "token_id": 18361, + "token_id": 18345, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535671 - ] + "out": [] }, { "str": "-", - "token_id": 18362, + "token_id": 18346, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166141,7 +165966,7 @@ }, { "str": "10", - "token_id": 18363, + "token_id": 18347, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166150,7 +165975,7 @@ }, { "str": "-", - "token_id": 18364, + "token_id": 18348, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166159,69 +165984,67 @@ }, { "str": "25", - "token_id": 18365, + "token_id": 18349, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "|", - "token_id": 18366, + "token_id": 18350, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "website", - "token_id": 18367, + "token_id": 18351, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", - "token_id": 18368, + "token_id": 18352, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "[[", - "token_id": 18369, + "token_id": 18353, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "the", - "token_id": 18370, + "token_id": 18354, "o_rev_id": 1118230859, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "guardian", - "token_id": 18371, + "token_id": 18355, "o_rev_id": 1118230859, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "]]", - "token_id": 18372, + "token_id": 18356, "o_rev_id": 1118230859, "in": [], "out": [] }, { "str": "}}", - "token_id": 18373, + "token_id": 18357, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166230,7 +166053,7 @@ }, { "str": "<", - "token_id": 18374, + "token_id": 18358, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166239,7 +166062,7 @@ }, { "str": "/", - "token_id": 18375, + "token_id": 18359, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166248,7 +166071,7 @@ }, { "str": "ref", - "token_id": 18376, + "token_id": 18360, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166257,7 +166080,7 @@ }, { "str": ">", - "token_id": 18377, + "token_id": 18361, "o_rev_id": 1118230859, "in": [], "out": [ @@ -166266,14 +166089,14 @@ }, { "str": ">", - "token_id": 18378, + "token_id": 18362, "o_rev_id": 1118230940, "in": [], "out": [] }, { "str": "calamari", - "token_id": 18379, + "token_id": 18363, "o_rev_id": 1118661592, "in": [], "out": [ @@ -166282,7 +166105,7 @@ }, { "str": "as", - "token_id": 18380, + "token_id": 18364, "o_rev_id": 1119272594, "in": [], "out": [ @@ -166291,7 +166114,7 @@ }, { "str": "it", - "token_id": 18381, + "token_id": 18365, "o_rev_id": 1119272594, "in": [], "out": [ @@ -166300,7 +166123,7 @@ }, { "str": "is", - "token_id": 18382, + "token_id": 18366, "o_rev_id": 1119272594, "in": [], "out": [ @@ -166309,7 +166132,7 @@ }, { "str": "121", - "token_id": 18383, + "token_id": 18367, "o_rev_id": 1119272594, "in": [], "out": [ @@ -166318,7 +166141,7 @@ }, { "str": "tableturf", - "token_id": 18384, + "token_id": 18368, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166327,7 +166150,7 @@ }, { "str": "battle", - "token_id": 18385, + "token_id": 18369, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166336,7 +166159,7 @@ }, { "str": "is", - "token_id": 18386, + "token_id": 18370, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166345,7 +166168,7 @@ }, { "str": "a", - "token_id": 18387, + "token_id": 18371, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166354,7 +166177,7 @@ }, { "str": "rather", - "token_id": 18388, + "token_id": 18372, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166363,7 +166186,7 @@ }, { "str": "lame", - "token_id": 18389, + "token_id": 18373, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166372,7 +166195,7 @@ }, { "str": "feature", - "token_id": 18390, + "token_id": 18374, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166381,7 +166204,7 @@ }, { "str": "of", - "token_id": 18391, + "token_id": 18375, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166390,7 +166213,7 @@ }, { "str": "splatoon", - "token_id": 18392, + "token_id": 18376, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166399,7 +166222,7 @@ }, { "str": "3", - "token_id": 18393, + "token_id": 18377, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166408,7 +166231,7 @@ }, { "str": ".", - "token_id": 18394, + "token_id": 18378, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166417,7 +166240,7 @@ }, { "str": "but", - "token_id": 18395, + "token_id": 18379, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166426,7 +166249,7 @@ }, { "str": "all", - "token_id": 18396, + "token_id": 18380, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166435,7 +166258,7 @@ }, { "str": "the", - "token_id": 18397, + "token_id": 18381, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166444,7 +166267,7 @@ }, { "str": "same", - "token_id": 18398, + "token_id": 18382, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166453,7 +166276,7 @@ }, { "str": ",", - "token_id": 18399, + "token_id": 18383, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166462,7 +166285,7 @@ }, { "str": "splatoon", - "token_id": 18400, + "token_id": 18384, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166471,7 +166294,7 @@ }, { "str": "33", - "token_id": 18401, + "token_id": 18385, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166480,7 +166303,7 @@ }, { "str": "is", - "token_id": 18402, + "token_id": 18386, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166489,7 +166312,7 @@ }, { "str": "still", - "token_id": 18403, + "token_id": 18387, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166498,7 +166321,7 @@ }, { "str": "good", - "token_id": 18404, + "token_id": 18388, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166507,7 +166330,7 @@ }, { "str": ".", - "token_id": 18405, + "token_id": 18389, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166516,7 +166339,7 @@ }, { "str": "too", - "token_id": 18406, + "token_id": 18390, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166525,7 +166348,7 @@ }, { "str": "many", - "token_id": 18407, + "token_id": 18391, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166534,7 +166357,7 @@ }, { "str": "peole", - "token_id": 18408, + "token_id": 18392, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166543,7 +166366,7 @@ }, { "str": "disconnect", - "token_id": 18409, + "token_id": 18393, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166552,7 +166375,7 @@ }, { "str": "during", - "token_id": 18410, + "token_id": 18394, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166561,7 +166384,7 @@ }, { "str": "matches", - "token_id": 18411, + "token_id": 18395, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166570,7 +166393,7 @@ }, { "str": ".", - "token_id": 18412, + "token_id": 18396, "o_rev_id": 1119273488, "in": [], "out": [ @@ -166579,7 +166402,7 @@ }, { "str": "splatoon", - "token_id": 18413, + "token_id": 18397, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166588,7 +166411,7 @@ }, { "str": "3", - "token_id": 18414, + "token_id": 18398, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166597,7 +166420,7 @@ }, { "str": "is", - "token_id": 18415, + "token_id": 18399, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166606,7 +166429,7 @@ }, { "str": "said", - "token_id": 18416, + "token_id": 18400, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166615,7 +166438,7 @@ }, { "str": "to", - "token_id": 18417, + "token_id": 18401, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166624,7 +166447,7 @@ }, { "str": "have", - "token_id": 18418, + "token_id": 18402, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166633,7 +166456,7 @@ }, { "str": "a", - "token_id": 18419, + "token_id": 18403, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166642,7 +166465,7 @@ }, { "str": "splatfest", - "token_id": 18420, + "token_id": 18404, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166651,7 +166474,7 @@ }, { "str": "every", - "token_id": 18421, + "token_id": 18405, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166660,7 +166483,7 @@ }, { "str": "1", - "token_id": 18422, + "token_id": 18406, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166669,7 +166492,7 @@ }, { "str": "-", - "token_id": 18423, + "token_id": 18407, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166678,7 +166501,7 @@ }, { "str": "2", - "token_id": 18424, + "token_id": 18408, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166687,7 +166510,7 @@ }, { "str": "months", - "token_id": 18425, + "token_id": 18409, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166696,7 +166519,7 @@ }, { "str": "or", - "token_id": 18426, + "token_id": 18410, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166705,7 +166528,7 @@ }, { "str": "so", - "token_id": 18427, + "token_id": 18411, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166714,7 +166537,7 @@ }, { "str": ".", - "token_id": 18428, + "token_id": 18412, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166723,7 +166546,7 @@ }, { "str": "the", - "token_id": 18429, + "token_id": 18413, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166732,7 +166555,7 @@ }, { "str": "game", - "token_id": 18430, + "token_id": 18414, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166741,7 +166564,7 @@ }, { "str": "is", - "token_id": 18431, + "token_id": 18415, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166750,7 +166573,7 @@ }, { "str": "widely", - "token_id": 18432, + "token_id": 18416, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166759,7 +166582,7 @@ }, { "str": "thought", - "token_id": 18433, + "token_id": 18417, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166768,7 +166591,7 @@ }, { "str": "to", - "token_id": 18434, + "token_id": 18418, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166777,7 +166600,7 @@ }, { "str": "be", - "token_id": 18435, + "token_id": 18419, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166786,7 +166609,7 @@ }, { "str": "the", - "token_id": 18436, + "token_id": 18420, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166795,7 +166618,7 @@ }, { "str": "worst", - "token_id": 18437, + "token_id": 18421, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166804,7 +166627,7 @@ }, { "str": "of", - "token_id": 18438, + "token_id": 18422, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166813,7 +166636,7 @@ }, { "str": "the", - "token_id": 18439, + "token_id": 18423, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166822,7 +166645,7 @@ }, { "str": "trio", - "token_id": 18440, + "token_id": 18424, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166831,7 +166654,7 @@ }, { "str": "because", - "token_id": 18441, + "token_id": 18425, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166840,7 +166663,7 @@ }, { "str": "of", - "token_id": 18442, + "token_id": 18426, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166849,7 +166672,7 @@ }, { "str": "the", - "token_id": 18443, + "token_id": 18427, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166858,7 +166681,7 @@ }, { "str": "lack", - "token_id": 18444, + "token_id": 18428, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166867,7 +166690,7 @@ }, { "str": "of", - "token_id": 18445, + "token_id": 18429, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166876,7 +166699,7 @@ }, { "str": "new", - "token_id": 18446, + "token_id": 18430, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166885,7 +166708,7 @@ }, { "str": "material", - "token_id": 18447, + "token_id": 18431, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166894,7 +166717,7 @@ }, { "str": ".", - "token_id": 18448, + "token_id": 18432, "o_rev_id": 1119275810, "in": [], "out": [ @@ -166903,7 +166726,7 @@ }, { "str": "10029376", - "token_id": 18449, + "token_id": 18433, "o_rev_id": 1119275930, "in": [], "out": [ @@ -166912,7 +166735,7 @@ }, { "str": "2375", - "token_id": 18450, + "token_id": 18434, "o_rev_id": 1119275930, "in": [], "out": [ @@ -166921,7 +166744,7 @@ }, { "str": "37", - "token_id": 18451, + "token_id": 18435, "o_rev_id": 1119275930, "in": [], "out": [ @@ -166930,7 +166753,7 @@ }, { "str": "100293762938579302971", - "token_id": 18452, + "token_id": 18436, "o_rev_id": 1119327619, "in": [], "out": [ @@ -166939,7 +166762,7 @@ }, { "str": "incident", - "token_id": 18453, + "token_id": 18437, "o_rev_id": 1119540274, "in": [], "out": [ @@ -166948,7 +166771,7 @@ }, { "str": "smallfry", - "token_id": 18454, + "token_id": 18438, "o_rev_id": 1119541841, "in": [], "out": [ @@ -166957,7 +166780,7 @@ }, { "str": ",", - "token_id": 18455, + "token_id": 18439, "o_rev_id": 1119541841, "in": [], "out": [ @@ -166966,7 +166789,7 @@ }, { "str": ",", - "token_id": 18456, + "token_id": 18440, "o_rev_id": 1119541841, "in": [], "out": [ @@ -166975,7 +166798,7 @@ }, { "str": "|", - "token_id": 18457, + "token_id": 18441, "o_rev_id": 1119542332, "in": [ 1136546128, @@ -166989,7 +166812,7 @@ }, { "str": "[[", - "token_id": 18458, + "token_id": 18442, "o_rev_id": 1119542332, "in": [ 1136546128 @@ -167000,7 +166823,7 @@ }, { "str": "(", - "token_id": 18459, + "token_id": 18443, "o_rev_id": 1119542332, "in": [ 1136546128 @@ -167011,7 +166834,7 @@ }, { "str": "video", - "token_id": 18460, + "token_id": 18444, "o_rev_id": 1119542332, "in": [ 1136546128 @@ -167022,7 +166845,7 @@ }, { "str": "games", - "token_id": 18461, + "token_id": 18445, "o_rev_id": 1119542332, "in": [ 1136546128 @@ -167033,7 +166856,7 @@ }, { "str": ")", - "token_id": 18462, + "token_id": 18446, "o_rev_id": 1119542332, "in": [ 1136546128 @@ -167044,7 +166867,7 @@ }, { "str": "|", - "token_id": 18463, + "token_id": 18447, "o_rev_id": 1119542332, "in": [ 1136546128 @@ -167055,7 +166878,7 @@ }, { "str": "boss", - "token_id": 18464, + "token_id": 18448, "o_rev_id": 1119542332, "in": [ 1136546128 @@ -167066,7 +166889,7 @@ }, { "str": "]]", - "token_id": 18465, + "token_id": 18449, "o_rev_id": 1119542332, "in": [ 1136546128 @@ -167077,7 +166900,7 @@ }, { "str": "as", - "token_id": 18466, + "token_id": 18450, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167088,7 +166911,7 @@ }, { "str": "of", - "token_id": 18467, + "token_id": 18451, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167099,7 +166922,7 @@ }, { "str": "2022", - "token_id": 18468, + "token_id": 18452, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167111,7 +166934,7 @@ }, { "str": "september", - "token_id": 18469, + "token_id": 18453, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167120,7 +166943,7 @@ }, { "str": "30", - "token_id": 18470, + "token_id": 18454, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167129,7 +166952,7 @@ }, { "str": ",", - "token_id": 18471, + "token_id": 18455, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167141,7 +166964,7 @@ }, { "str": "splatoon", - "token_id": 18472, + "token_id": 18456, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167154,7 +166977,7 @@ }, { "str": "3", - "token_id": 18473, + "token_id": 18457, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167165,7 +166988,7 @@ }, { "str": "have", - "token_id": 18474, + "token_id": 18458, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167174,7 +166997,7 @@ }, { "str": "sold", - "token_id": 18475, + "token_id": 18459, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167185,7 +167008,7 @@ }, { "str": "7", - "token_id": 18476, + "token_id": 18460, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167194,7 +167017,7 @@ }, { "str": ".", - "token_id": 18477, + "token_id": 18461, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167205,7 +167028,7 @@ }, { "str": "90", - "token_id": 18478, + "token_id": 18462, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167214,7 +167037,7 @@ }, { "str": "million", - "token_id": 18479, + "token_id": 18463, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167227,7 +167050,7 @@ }, { "str": "copies", - "token_id": 18480, + "token_id": 18464, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167238,7 +167061,7 @@ }, { "str": "worldwide", - "token_id": 18481, + "token_id": 18465, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167249,7 +167072,7 @@ }, { "str": ",", - "token_id": 18482, + "token_id": 18466, "o_rev_id": 1120729646, "in": [ 1148919560 @@ -167260,7 +167083,7 @@ }, { "str": "5", - "token_id": 18483, + "token_id": 18467, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167269,7 +167092,7 @@ }, { "str": "million", - "token_id": 18484, + "token_id": 18468, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167278,7 +167101,7 @@ }, { "str": "of", - "token_id": 18485, + "token_id": 18469, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167291,7 +167114,7 @@ }, { "str": "which", - "token_id": 18486, + "token_id": 18470, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167300,7 +167123,7 @@ }, { "str": "were", - "token_id": 18487, + "token_id": 18471, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167309,7 +167132,7 @@ }, { "str": "sold", - "token_id": 18488, + "token_id": 18472, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167318,7 +167141,7 @@ }, { "str": "in", - "token_id": 18489, + "token_id": 18473, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167327,7 +167150,7 @@ }, { "str": "japan", - "token_id": 18490, + "token_id": 18474, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167336,7 +167159,7 @@ }, { "str": ".", - "token_id": 18491, + "token_id": 18475, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167349,7 +167172,7 @@ }, { "str": "<", - "token_id": 18492, + "token_id": 18476, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167363,7 +167186,7 @@ }, { "str": "ref", - "token_id": 18493, + "token_id": 18477, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167377,7 +167200,7 @@ }, { "str": ">", - "token_id": 18494, + "token_id": 18478, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167391,7 +167214,7 @@ }, { "str": "{{", - "token_id": 18495, + "token_id": 18479, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167405,7 +167228,7 @@ }, { "str": "cite", - "token_id": 18496, + "token_id": 18480, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167419,7 +167242,7 @@ }, { "str": "web", - "token_id": 18497, + "token_id": 18481, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167433,7 +167256,7 @@ }, { "str": "|", - "token_id": 18498, + "token_id": 18482, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167447,7 +167270,7 @@ }, { "str": "title", - "token_id": 18499, + "token_id": 18483, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167461,7 +167284,7 @@ }, { "str": "=", - "token_id": 18500, + "token_id": 18484, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167475,7 +167298,7 @@ }, { "str": "financial", - "token_id": 18501, + "token_id": 18485, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167489,7 +167312,7 @@ }, { "str": "results", - "token_id": 18502, + "token_id": 18486, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167503,7 +167326,7 @@ }, { "str": "explanatory", - "token_id": 18503, + "token_id": 18487, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167517,7 +167340,7 @@ }, { "str": "material", - "token_id": 18504, + "token_id": 18488, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167531,7 +167354,7 @@ }, { "str": "|", - "token_id": 18505, + "token_id": 18489, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167545,7 +167368,7 @@ }, { "str": "url", - "token_id": 18506, + "token_id": 18490, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167559,7 +167382,7 @@ }, { "str": "=", - "token_id": 18507, + "token_id": 18491, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167573,7 +167396,7 @@ }, { "str": "https", - "token_id": 18508, + "token_id": 18492, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167587,7 +167410,7 @@ }, { "str": ":", - "token_id": 18509, + "token_id": 18493, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167601,7 +167424,7 @@ }, { "str": "/", - "token_id": 18510, + "token_id": 18494, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167615,7 +167438,7 @@ }, { "str": "/", - "token_id": 18511, + "token_id": 18495, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167629,7 +167452,7 @@ }, { "str": "www", - "token_id": 18512, + "token_id": 18496, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167643,7 +167466,7 @@ }, { "str": ".", - "token_id": 18513, + "token_id": 18497, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167657,7 +167480,7 @@ }, { "str": "nintendo", - "token_id": 18514, + "token_id": 18498, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167671,7 +167494,7 @@ }, { "str": ".", - "token_id": 18515, + "token_id": 18499, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167685,7 +167508,7 @@ }, { "str": "co", - "token_id": 18516, + "token_id": 18500, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167699,7 +167522,7 @@ }, { "str": ".", - "token_id": 18517, + "token_id": 18501, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167713,7 +167536,7 @@ }, { "str": "jp", - "token_id": 18518, + "token_id": 18502, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167727,7 +167550,7 @@ }, { "str": "/", - "token_id": 18519, + "token_id": 18503, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167741,7 +167564,7 @@ }, { "str": "ir", - "token_id": 18520, + "token_id": 18504, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167755,7 +167578,7 @@ }, { "str": "/", - "token_id": 18521, + "token_id": 18505, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167769,7 +167592,7 @@ }, { "str": "pdf", - "token_id": 18522, + "token_id": 18506, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167783,7 +167606,7 @@ }, { "str": "/", - "token_id": 18523, + "token_id": 18507, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167797,7 +167620,7 @@ }, { "str": "2022", - "token_id": 18524, + "token_id": 18508, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167806,7 +167629,7 @@ }, { "str": "/", - "token_id": 18525, + "token_id": 18509, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167820,7 +167643,7 @@ }, { "str": "221108", - "token_id": 18526, + "token_id": 18510, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167829,7 +167652,7 @@ }, { "str": "_", - "token_id": 18527, + "token_id": 18511, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167843,7 +167666,7 @@ }, { "str": "8e", - "token_id": 18528, + "token_id": 18512, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167852,7 +167675,7 @@ }, { "str": ".", - "token_id": 18529, + "token_id": 18513, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167866,7 +167689,7 @@ }, { "str": "pdf", - "token_id": 18530, + "token_id": 18514, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167880,7 +167703,7 @@ }, { "str": "#", - "token_id": 18531, + "token_id": 18515, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167894,7 +167717,7 @@ }, { "str": "page", - "token_id": 18532, + "token_id": 18516, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167908,7 +167731,7 @@ }, { "str": "=", - "token_id": 18533, + "token_id": 18517, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167917,7 +167740,7 @@ }, { "str": "14", - "token_id": 18534, + "token_id": 18518, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167926,7 +167749,7 @@ }, { "str": "|", - "token_id": 18535, + "token_id": 18519, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167935,7 +167758,7 @@ }, { "str": "website", - "token_id": 18536, + "token_id": 18520, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167944,7 +167767,7 @@ }, { "str": "=", - "token_id": 18537, + "token_id": 18521, "o_rev_id": 1120729646, "in": [], "out": [ @@ -167953,7 +167776,7 @@ }, { "str": "nintendo", - "token_id": 18538, + "token_id": 18522, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167967,7 +167790,7 @@ }, { "str": ".", - "token_id": 18539, + "token_id": 18523, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167981,7 +167804,7 @@ }, { "str": "co", - "token_id": 18540, + "token_id": 18524, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -167995,7 +167818,7 @@ }, { "str": ".", - "token_id": 18541, + "token_id": 18525, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -168009,7 +167832,7 @@ }, { "str": "jp", - "token_id": 18542, + "token_id": 18526, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -168023,7 +167846,7 @@ }, { "str": "|", - "token_id": 18543, + "token_id": 18527, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168032,7 +167855,7 @@ }, { "str": "access", - "token_id": 18544, + "token_id": 18528, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168041,7 +167864,7 @@ }, { "str": "-", - "token_id": 18545, + "token_id": 18529, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168050,7 +167873,7 @@ }, { "str": "date", - "token_id": 18546, + "token_id": 18530, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168059,7 +167882,7 @@ }, { "str": "=", - "token_id": 18547, + "token_id": 18531, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168068,7 +167891,7 @@ }, { "str": "november", - "token_id": 18548, + "token_id": 18532, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168077,7 +167900,7 @@ }, { "str": "8", - "token_id": 18549, + "token_id": 18533, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168086,7 +167909,7 @@ }, { "str": ",", - "token_id": 18550, + "token_id": 18534, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168095,7 +167918,7 @@ }, { "str": "2022", - "token_id": 18551, + "token_id": 18535, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168104,7 +167927,7 @@ }, { "str": "}}", - "token_id": 18552, + "token_id": 18536, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168113,7 +167936,7 @@ }, { "str": "<", - "token_id": 18553, + "token_id": 18537, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168122,7 +167945,7 @@ }, { "str": "/", - "token_id": 18554, + "token_id": 18538, "o_rev_id": 1120729646, "in": [ 1148919560, @@ -168136,7 +167959,7 @@ }, { "str": "ref", - "token_id": 18555, + "token_id": 18539, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168145,7 +167968,7 @@ }, { "str": ">", - "token_id": 18556, + "token_id": 18540, "o_rev_id": 1120729646, "in": [], "out": [ @@ -168154,7 +167977,7 @@ }, { "str": "making", - "token_id": 18557, + "token_id": 18541, "o_rev_id": 1120780306, "in": [ 1148919560 @@ -168165,7 +167988,7 @@ }, { "str": "it", - "token_id": 18558, + "token_id": 18542, "o_rev_id": 1120780306, "in": [ 1148919560 @@ -168176,7 +167999,7 @@ }, { "str": "the", - "token_id": 18559, + "token_id": 18543, "o_rev_id": 1120780306, "in": [ 1148919560 @@ -168187,7 +168010,7 @@ }, { "str": "fastest", - "token_id": 18560, + "token_id": 18544, "o_rev_id": 1120780306, "in": [ 1148919560, @@ -168200,7 +168023,7 @@ }, { "str": "selling", - "token_id": 18561, + "token_id": 18545, "o_rev_id": 1120780306, "in": [ 1148919560 @@ -168211,7 +168034,7 @@ }, { "str": "game", - "token_id": 18562, + "token_id": 18546, "o_rev_id": 1120780306, "in": [ 1148919560 @@ -168222,7 +168045,7 @@ }, { "str": "in", - "token_id": 18563, + "token_id": 18547, "o_rev_id": 1120780306, "in": [ 1148919560 @@ -168233,7 +168056,7 @@ }, { "str": "the", - "token_id": 18564, + "token_id": 18548, "o_rev_id": 1120780306, "in": [ 1148919560 @@ -168244,7 +168067,7 @@ }, { "str": "franchise", - "token_id": 18565, + "token_id": 18549, "o_rev_id": 1120780306, "in": [ 1148919560, @@ -168257,7 +168080,7 @@ }, { "str": "and", - "token_id": 18566, + "token_id": 18550, "o_rev_id": 1120780306, "in": [ 1148919560 @@ -168268,7 +168091,7 @@ }, { "str": "one", - "token_id": 18567, + "token_id": 18551, "o_rev_id": 1120780306, "in": [ 1148919560, @@ -168281,20 +168104,18 @@ }, { "str": "the", - "token_id": 18568, + "token_id": 18552, "o_rev_id": 1120780306, "in": [ - 1148919560, - 1202097960 + 1148919560 ], "out": [ - 1148919536, - 1202071552 + 1148919536 ] }, { "str": "best", - "token_id": 18569, + "token_id": 18553, "o_rev_id": 1120780306, "in": [ 1148919560, @@ -168307,7 +168128,7 @@ }, { "str": "-", - "token_id": 18570, + "token_id": 18554, "o_rev_id": 1120780306, "in": [ 1148919560, @@ -168320,7 +168141,7 @@ }, { "str": "selling", - "token_id": 18571, + "token_id": 18555, "o_rev_id": 1120780306, "in": [ 1148919560, @@ -168333,7 +168154,7 @@ }, { "str": "switch", - "token_id": 18572, + "token_id": 18556, "o_rev_id": 1120780306, "in": [ 1148919560, @@ -168346,7 +168167,7 @@ }, { "str": "games", - "token_id": 18573, + "token_id": 18557, "o_rev_id": 1120780306, "in": [ 1148919560, @@ -168361,7 +168182,7 @@ }, { "str": "has", - "token_id": 18574, + "token_id": 18558, "o_rev_id": 1121052511, "in": [ 1148919560 @@ -168372,7 +168193,7 @@ }, { "str": "30", - "token_id": 18575, + "token_id": 18559, "o_rev_id": 1121052570, "in": [ 1138419614, @@ -168386,7 +168207,7 @@ }, { "str": "september", - "token_id": 18576, + "token_id": 18560, "o_rev_id": 1121052570, "in": [], "out": [ @@ -168395,7 +168216,7 @@ }, { "str": "called", - "token_id": 18577, + "token_id": 18561, "o_rev_id": 1121142997, "in": [], "out": [ @@ -168404,140 +168225,140 @@ }, { "str": ".", - "token_id": 18578, + "token_id": 18562, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "the", - "token_id": 18579, + "token_id": 18563, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "main", - "token_id": 18580, + "token_id": 18564, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "goal", - "token_id": 18581, + "token_id": 18565, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "is", - "token_id": 18582, + "token_id": 18566, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": ",", - "token_id": 18583, + "token_id": 18567, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "obtained", - "token_id": 18584, + "token_id": 18568, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "by", - "token_id": 18585, + "token_id": 18569, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "splatting", - "token_id": 18586, + "token_id": 18570, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "special", - "token_id": 18587, + "token_id": 18571, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "enemies", - "token_id": 18588, + "token_id": 18572, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "known", - "token_id": 18589, + "token_id": 18573, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "as", - "token_id": 18590, + "token_id": 18574, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "\"", - "token_id": 18591, + "token_id": 18575, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "boss", - "token_id": 18592, + "token_id": 18576, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "salmonids", - "token_id": 18593, + "token_id": 18577, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "\"", - "token_id": 18594, + "token_id": 18578, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": ",", - "token_id": 18595, + "token_id": 18579, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "and", - "token_id": 18596, + "token_id": 18580, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "carry", - "token_id": 18597, + "token_id": 18581, "o_rev_id": 1121905526, "in": [], "out": [ @@ -168546,14 +168367,14 @@ }, { "str": "them", - "token_id": 18598, + "token_id": 18582, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": "to", - "token_id": 18599, + "token_id": 18583, "o_rev_id": 1121905526, "in": [], "out": [ @@ -168562,7 +168383,7 @@ }, { "str": "a", - "token_id": 18600, + "token_id": 18584, "o_rev_id": 1121905526, "in": [], "out": [ @@ -168571,72 +168392,70 @@ }, { "str": "basket", - "token_id": 18601, + "token_id": 18585, "o_rev_id": 1121905526, "in": [], "out": [] }, { "str": ".", - "token_id": 18602, + "token_id": 18586, "o_rev_id": 1122311559, "in": [], "out": [] }, { "str": "s", - "token_id": 18603, + "token_id": 18587, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "s", - "token_id": 18604, + "token_id": 18588, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "|", - "token_id": 18605, + "token_id": 18589, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "access", - "token_id": 18606, + "token_id": 18590, "o_rev_id": 1122488891, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "-", - "token_id": 18607, + "token_id": 18591, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18608, + "token_id": 18592, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "=", - "token_id": 18609, + "token_id": 18593, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "access", - "token_id": 18610, + "token_id": 18594, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168645,14 +168464,14 @@ }, { "str": "-", - "token_id": 18611, + "token_id": 18595, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18612, + "token_id": 18596, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168661,32 +168480,28 @@ }, { "str": "access", - "token_id": 18613, + "token_id": 18597, "o_rev_id": 1122488891, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "-", - "token_id": 18614, + "token_id": 18598, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18615, + "token_id": 18599, "o_rev_id": 1122488891, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "access", - "token_id": 18616, + "token_id": 18600, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168695,42 +168510,42 @@ }, { "str": "-", - "token_id": 18617, + "token_id": 18601, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18618, + "token_id": 18602, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "access", - "token_id": 18619, + "token_id": 18603, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "-", - "token_id": 18620, + "token_id": 18604, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18621, + "token_id": 18605, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "access", - "token_id": 18622, + "token_id": 18606, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168739,42 +168554,42 @@ }, { "str": "-", - "token_id": 18623, + "token_id": 18607, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18624, + "token_id": 18608, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "access", - "token_id": 18625, + "token_id": 18609, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "-", - "token_id": 18626, + "token_id": 18610, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18627, + "token_id": 18611, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "access", - "token_id": 18628, + "token_id": 18612, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168783,46 +168598,42 @@ }, { "str": "-", - "token_id": 18629, + "token_id": 18613, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18630, + "token_id": 18614, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "access", - "token_id": 18631, + "token_id": 18615, "o_rev_id": 1122488891, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "-", - "token_id": 18632, + "token_id": 18616, "o_rev_id": 1122488891, "in": [], "out": [] }, { "str": "date", - "token_id": 18633, + "token_id": 18617, "o_rev_id": 1122488891, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "are", - "token_id": 18634, + "token_id": 18618, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168831,7 +168642,7 @@ }, { "str": "not", - "token_id": 18635, + "token_id": 18619, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168840,7 +168651,7 @@ }, { "str": "something", - "token_id": 18636, + "token_id": 18620, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168849,7 +168660,7 @@ }, { "str": "available", - "token_id": 18637, + "token_id": 18621, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168858,7 +168669,7 @@ }, { "str": "ing", - "token_id": 18638, + "token_id": 18622, "o_rev_id": 1122488891, "in": [], "out": [ @@ -168867,7 +168678,7 @@ }, { "str": "'", - "token_id": 18639, + "token_id": 18623, "o_rev_id": 1122774046, "in": [ 1148919560 @@ -168878,7 +168689,7 @@ }, { "str": "'", - "token_id": 18640, + "token_id": 18624, "o_rev_id": 1122774046, "in": [ 1148919560 @@ -168889,7 +168700,7 @@ }, { "str": "'", - "token_id": 18641, + "token_id": 18625, "o_rev_id": 1122774046, "in": [ 1148919560 @@ -168900,7 +168711,7 @@ }, { "str": "'", - "token_id": 18642, + "token_id": 18626, "o_rev_id": 1122774046, "in": [ 1148919560 @@ -168911,147 +168722,147 @@ }, { "str": "=", - "token_id": 18643, + "token_id": 18627, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18644, + "token_id": 18628, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18645, + "token_id": 18629, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "accolades", - "token_id": 18646, + "token_id": 18630, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18647, + "token_id": 18631, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18648, + "token_id": 18632, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18649, + "token_id": 18633, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "{", - "token_id": 18650, + "token_id": 18634, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18651, + "token_id": 18635, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "class", - "token_id": 18652, + "token_id": 18636, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18653, + "token_id": 18637, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18654, + "token_id": 18638, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "wikitable", - "token_id": 18655, + "token_id": 18639, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "sortable", - "token_id": 18656, + "token_id": 18640, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18657, + "token_id": 18641, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18658, + "token_id": 18642, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "-", - "token_id": 18659, + "token_id": 18643, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18660, + "token_id": 18644, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "year", - "token_id": 18661, + "token_id": 18645, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18662, + "token_id": 18646, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18663, + "token_id": 18647, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169060,21 +168871,21 @@ }, { "str": "award", - "token_id": 18664, + "token_id": 18648, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18665, + "token_id": 18649, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18666, + "token_id": 18650, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169083,21 +168894,21 @@ }, { "str": "category", - "token_id": 18667, + "token_id": 18651, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18668, + "token_id": 18652, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18669, + "token_id": 18653, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169106,21 +168917,21 @@ }, { "str": "result", - "token_id": 18670, + "token_id": 18654, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18671, + "token_id": 18655, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "!", - "token_id": 18672, + "token_id": 18656, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169129,7 +168940,7 @@ }, { "str": "ref", - "token_id": 18673, + "token_id": 18657, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169138,266 +168949,266 @@ }, { "str": "|", - "token_id": 18674, + "token_id": 18658, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "-", - "token_id": 18675, + "token_id": 18659, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18676, + "token_id": 18660, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "style", - "token_id": 18677, + "token_id": 18661, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18678, + "token_id": 18662, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18679, + "token_id": 18663, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "text", - "token_id": 18680, + "token_id": 18664, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "-", - "token_id": 18681, + "token_id": 18665, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "align", - "token_id": 18682, + "token_id": 18666, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": ":", - "token_id": 18683, + "token_id": 18667, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "center", - "token_id": 18684, + "token_id": 18668, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": ";", - "token_id": 18685, + "token_id": 18669, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18686, + "token_id": 18670, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "rowspan", - "token_id": 18687, + "token_id": 18671, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18688, + "token_id": 18672, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18689, + "token_id": 18673, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "2", - "token_id": 18690, + "token_id": 18674, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18691, + "token_id": 18675, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18692, + "token_id": 18676, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "2022", - "token_id": 18693, + "token_id": 18677, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18694, + "token_id": 18678, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "rowspan", - "token_id": 18695, + "token_id": 18679, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18696, + "token_id": 18680, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18697, + "token_id": 18681, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "2", - "token_id": 18698, + "token_id": 18682, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18699, + "token_id": 18683, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18700, + "token_id": 18684, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "[[", - "token_id": 18701, + "token_id": 18685, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "the", - "token_id": 18702, + "token_id": 18686, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "game", - "token_id": 18703, + "token_id": 18687, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "awards", - "token_id": 18704, + "token_id": 18688, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "2022", - "token_id": 18705, + "token_id": 18689, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "]]", - "token_id": 18706, + "token_id": 18690, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18707, + "token_id": 18691, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "best", - "token_id": 18708, + "token_id": 18692, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "family", - "token_id": 18709, + "token_id": 18693, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "game", - "token_id": 18710, + "token_id": 18694, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18711, + "token_id": 18695, "o_rev_id": 1122774046, "in": [ 1126378354 @@ -169408,7 +169219,7 @@ }, { "str": "{{", - "token_id": 18712, + "token_id": 18696, "o_rev_id": 1122774046, "in": [ 1126378354 @@ -169420,7 +169231,7 @@ }, { "str": "pending", - "token_id": 18713, + "token_id": 18697, "o_rev_id": 1122774046, "in": [ 1126378354 @@ -169432,7 +169243,7 @@ }, { "str": "}}", - "token_id": 18714, + "token_id": 18698, "o_rev_id": 1122774046, "in": [ 1126378354 @@ -169444,196 +169255,196 @@ }, { "str": "|", - "token_id": 18715, + "token_id": 18699, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "rowspan", - "token_id": 18716, + "token_id": 18700, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18717, + "token_id": 18701, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18718, + "token_id": 18702, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "2", - "token_id": 18719, + "token_id": 18703, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18720, + "token_id": 18704, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18721, + "token_id": 18705, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "<", - "token_id": 18722, + "token_id": 18706, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "ref", - "token_id": 18723, + "token_id": 18707, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "name", - "token_id": 18724, + "token_id": 18708, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18725, + "token_id": 18709, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18726, + "token_id": 18710, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "gameaward2022", - "token_id": 18727, + "token_id": 18711, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "\"", - "token_id": 18728, + "token_id": 18712, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": ">", - "token_id": 18729, + "token_id": 18713, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "{{", - "token_id": 18730, + "token_id": 18714, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "cite", - "token_id": 18731, + "token_id": 18715, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "web", - "token_id": 18732, + "token_id": 18716, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18733, + "token_id": 18717, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "url", - "token_id": 18734, + "token_id": 18718, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18735, + "token_id": 18719, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "https", - "token_id": 18736, + "token_id": 18720, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": ":", - "token_id": 18737, + "token_id": 18721, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "/", - "token_id": 18738, + "token_id": 18722, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "/", - "token_id": 18739, + "token_id": 18723, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "www", - "token_id": 18740, + "token_id": 18724, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": ".", - "token_id": 18741, + "token_id": 18725, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "gameinformer", - "token_id": 18742, + "token_id": 18726, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169642,28 +169453,28 @@ }, { "str": ".", - "token_id": 18743, + "token_id": 18727, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "com", - "token_id": 18744, + "token_id": 18728, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "/", - "token_id": 18745, + "token_id": 18729, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "2022", - "token_id": 18746, + "token_id": 18730, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169672,7 +169483,7 @@ }, { "str": "/", - "token_id": 18747, + "token_id": 18731, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169681,7 +169492,7 @@ }, { "str": "11", - "token_id": 18748, + "token_id": 18732, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169690,7 +169501,7 @@ }, { "str": "/", - "token_id": 18749, + "token_id": 18733, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169699,7 +169510,7 @@ }, { "str": "14", - "token_id": 18750, + "token_id": 18734, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169708,21 +169519,21 @@ }, { "str": "/", - "token_id": 18751, + "token_id": 18735, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "the", - "token_id": 18752, + "token_id": 18736, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "-", - "token_id": 18753, + "token_id": 18737, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169731,7 +169542,7 @@ }, { "str": "full", - "token_id": 18754, + "token_id": 18738, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169740,7 +169551,7 @@ }, { "str": "-", - "token_id": 18755, + "token_id": 18739, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169749,7 +169560,7 @@ }, { "str": "list", - "token_id": 18756, + "token_id": 18740, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169758,7 +169569,7 @@ }, { "str": "-", - "token_id": 18757, + "token_id": 18741, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169767,7 +169578,7 @@ }, { "str": "of", - "token_id": 18758, + "token_id": 18742, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169776,7 +169587,7 @@ }, { "str": "-", - "token_id": 18759, + "token_id": 18743, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169785,7 +169596,7 @@ }, { "str": "the", - "token_id": 18760, + "token_id": 18744, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169794,7 +169605,7 @@ }, { "str": "-", - "token_id": 18761, + "token_id": 18745, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169803,7 +169614,7 @@ }, { "str": "2022", - "token_id": 18762, + "token_id": 18746, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169812,42 +169623,42 @@ }, { "str": "-", - "token_id": 18763, + "token_id": 18747, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "game", - "token_id": 18764, + "token_id": 18748, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "-", - "token_id": 18765, + "token_id": 18749, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "awards", - "token_id": 18766, + "token_id": 18750, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "-", - "token_id": 18767, + "token_id": 18751, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "nominees", - "token_id": 18768, + "token_id": 18752, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169856,35 +169667,35 @@ }, { "str": "|", - "token_id": 18769, + "token_id": 18753, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "title", - "token_id": 18770, + "token_id": 18754, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18771, + "token_id": 18755, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "the", - "token_id": 18772, + "token_id": 18756, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "full", - "token_id": 18773, + "token_id": 18757, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169893,7 +169704,7 @@ }, { "str": "list", - "token_id": 18774, + "token_id": 18758, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169902,7 +169713,7 @@ }, { "str": "of", - "token_id": 18775, + "token_id": 18759, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169911,7 +169722,7 @@ }, { "str": "the", - "token_id": 18776, + "token_id": 18760, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169920,7 +169731,7 @@ }, { "str": "2022", - "token_id": 18777, + "token_id": 18761, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169929,7 +169740,7 @@ }, { "str": "game", - "token_id": 18778, + "token_id": 18762, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169938,7 +169749,7 @@ }, { "str": "awards", - "token_id": 18779, + "token_id": 18763, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169947,7 +169758,7 @@ }, { "str": "nominees", - "token_id": 18780, + "token_id": 18764, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169956,14 +169767,16 @@ }, { "str": "|", - "token_id": 18781, + "token_id": 18765, "o_rev_id": 1122774046, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "work", - "token_id": 18782, + "token_id": 18766, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169972,14 +169785,16 @@ }, { "str": "=", - "token_id": 18783, + "token_id": 18767, "o_rev_id": 1122774046, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "[[", - "token_id": 18784, + "token_id": 18768, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169988,7 +169803,7 @@ }, { "str": "game", - "token_id": 18785, + "token_id": 18769, "o_rev_id": 1122774046, "in": [], "out": [ @@ -169997,7 +169812,7 @@ }, { "str": "informer", - "token_id": 18786, + "token_id": 18770, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170006,7 +169821,7 @@ }, { "str": "]]", - "token_id": 18787, + "token_id": 18771, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170015,14 +169830,14 @@ }, { "str": "|", - "token_id": 18788, + "token_id": 18772, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "date", - "token_id": 18789, + "token_id": 18773, "o_rev_id": 1122774046, "in": [ 1202097960 @@ -170033,14 +169848,14 @@ }, { "str": "=", - "token_id": 18790, + "token_id": 18774, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "14", - "token_id": 18791, + "token_id": 18775, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170049,7 +169864,7 @@ }, { "str": "november", - "token_id": 18792, + "token_id": 18776, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170058,49 +169873,49 @@ }, { "str": "2022", - "token_id": 18793, + "token_id": 18777, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18794, + "token_id": 18778, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "access", - "token_id": 18795, + "token_id": 18779, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "-", - "token_id": 18796, + "token_id": 18780, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "date", - "token_id": 18797, + "token_id": 18781, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "=", - "token_id": 18798, + "token_id": 18782, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "14", - "token_id": 18799, + "token_id": 18783, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170109,7 +169924,7 @@ }, { "str": "november", - "token_id": 18800, + "token_id": 18784, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170118,98 +169933,98 @@ }, { "str": "2022", - "token_id": 18801, + "token_id": 18785, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "}}", - "token_id": 18802, + "token_id": 18786, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "<", - "token_id": 18803, + "token_id": 18787, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "/", - "token_id": 18804, + "token_id": 18788, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "ref", - "token_id": 18805, + "token_id": 18789, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": ">", - "token_id": 18806, + "token_id": 18790, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18807, + "token_id": 18791, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "-", - "token_id": 18808, + "token_id": 18792, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18809, + "token_id": 18793, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "best", - "token_id": 18810, + "token_id": 18794, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 18811, + "token_id": 18795, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "game", - "token_id": 18812, + "token_id": 18796, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "|", - "token_id": 18813, + "token_id": 18797, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "{{", - "token_id": 18814, + "token_id": 18798, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170218,7 +170033,7 @@ }, { "str": "pending", - "token_id": 18815, + "token_id": 18799, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170227,7 +170042,7 @@ }, { "str": "}}", - "token_id": 18816, + "token_id": 18800, "o_rev_id": 1122774046, "in": [], "out": [ @@ -170236,14 +170051,14 @@ }, { "str": "|", - "token_id": 18817, + "token_id": 18801, "o_rev_id": 1122774046, "in": [], "out": [] }, { "str": "}", - "token_id": 18818, + "token_id": 18802, "o_rev_id": 1122774046, "in": [ 1127497040, @@ -170256,7 +170071,7 @@ }, { "str": "without", - "token_id": 18819, + "token_id": 18803, "o_rev_id": 1123007979, "in": [], "out": [ @@ -170265,7 +170080,7 @@ }, { "str": "a", - "token_id": 18820, + "token_id": 18804, "o_rev_id": 1123007979, "in": [], "out": [ @@ -170274,7 +170089,7 @@ }, { "str": "fight", - "token_id": 18821, + "token_id": 18805, "o_rev_id": 1123007979, "in": [], "out": [ @@ -170283,7 +170098,7 @@ }, { "str": "|", - "token_id": 18822, + "token_id": 18806, "o_rev_id": 1123636927, "in": [], "out": [ @@ -170292,7 +170107,7 @@ }, { "str": "second", - "token_id": 18823, + "token_id": 18807, "o_rev_id": 1123636927, "in": [], "out": [ @@ -170301,7 +170116,7 @@ }, { "str": "enemy", - "token_id": 18824, + "token_id": 18808, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170310,7 +170125,7 @@ }, { "str": "try", - "token_id": 18825, + "token_id": 18809, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170319,7 +170134,7 @@ }, { "str": "to", - "token_id": 18826, + "token_id": 18810, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170328,7 +170143,7 @@ }, { "str": ".", - "token_id": 18827, + "token_id": 18811, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170337,7 +170152,7 @@ }, { "str": "the", - "token_id": 18828, + "token_id": 18812, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170346,7 +170161,7 @@ }, { "str": "better", - "token_id": 18829, + "token_id": 18813, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170355,7 +170170,7 @@ }, { "str": "they", - "token_id": 18830, + "token_id": 18814, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170364,7 +170179,7 @@ }, { "str": "played", - "token_id": 18831, + "token_id": 18815, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170373,7 +170188,7 @@ }, { "str": ",", - "token_id": 18832, + "token_id": 18816, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170382,7 +170197,7 @@ }, { "str": "the", - "token_id": 18833, + "token_id": 18817, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170391,7 +170206,7 @@ }, { "str": "less", - "token_id": 18834, + "token_id": 18818, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170400,7 +170215,7 @@ }, { "str": "enemy", - "token_id": 18835, + "token_id": 18819, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170409,7 +170224,7 @@ }, { "str": "ink", - "token_id": 18836, + "token_id": 18820, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170418,7 +170233,7 @@ }, { "str": "there", - "token_id": 18837, + "token_id": 18821, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170427,7 +170242,7 @@ }, { "str": "would", - "token_id": 18838, + "token_id": 18822, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170436,7 +170251,7 @@ }, { "str": "be", - "token_id": 18839, + "token_id": 18823, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170445,7 +170260,7 @@ }, { "str": "on", - "token_id": 18840, + "token_id": 18824, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170454,7 +170269,7 @@ }, { "str": "the", - "token_id": 18841, + "token_id": 18825, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170463,7 +170278,7 @@ }, { "str": "screen", - "token_id": 18842, + "token_id": 18826, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170472,7 +170287,7 @@ }, { "str": ",", - "token_id": 18843, + "token_id": 18827, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170481,7 +170296,7 @@ }, { "str": "therefore", - "token_id": 18844, + "token_id": 18828, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170490,7 +170305,7 @@ }, { "str": "lowering", - "token_id": 18845, + "token_id": 18829, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170499,7 +170314,7 @@ }, { "str": "their", - "token_id": 18846, + "token_id": 18830, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170508,7 +170323,7 @@ }, { "str": "chances", - "token_id": 18847, + "token_id": 18831, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170517,7 +170332,7 @@ }, { "str": "of", - "token_id": 18848, + "token_id": 18832, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170526,7 +170341,7 @@ }, { "str": "getting", - "token_id": 18849, + "token_id": 18833, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170535,7 +170350,7 @@ }, { "str": "banned", - "token_id": 18850, + "token_id": 18834, "o_rev_id": 1124830905, "in": [], "out": [ @@ -170544,7 +170359,7 @@ }, { "str": "and", - "token_id": 18851, + "token_id": 18835, "o_rev_id": 1125373483, "in": [], "out": [ @@ -170553,7 +170368,7 @@ }, { "str": "the", - "token_id": 18852, + "token_id": 18836, "o_rev_id": 1125373483, "in": [], "out": [ @@ -170562,7 +170377,7 @@ }, { "str": "original", - "token_id": 18853, + "token_id": 18837, "o_rev_id": 1125373483, "in": [], "out": [ @@ -170571,7 +170386,7 @@ }, { "str": "agent", - "token_id": 18854, + "token_id": 18838, "o_rev_id": 1125373483, "in": [], "out": [ @@ -170580,7 +170395,7 @@ }, { "str": "3", - "token_id": 18855, + "token_id": 18839, "o_rev_id": 1125373483, "in": [], "out": [ @@ -170589,7 +170404,7 @@ }, { "str": "seemingly", - "token_id": 18856, + "token_id": 18840, "o_rev_id": 1125373483, "in": [], "out": [ @@ -170598,7 +170413,7 @@ }, { "str": "\"", - "token_id": 18857, + "token_id": 18841, "o_rev_id": 1125373483, "in": [], "out": [ @@ -170607,7 +170422,7 @@ }, { "str": "\"", - "token_id": 18858, + "token_id": 18842, "o_rev_id": 1125373483, "in": [], "out": [ @@ -170616,7 +170431,7 @@ }, { "str": "{{", - "token_id": 18859, + "token_id": 18843, "o_rev_id": 1126376157, "in": [ 1126390791, @@ -170631,7 +170446,7 @@ }, { "str": "won", - "token_id": 18860, + "token_id": 18844, "o_rev_id": 1126376157, "in": [ 1126390791, @@ -170644,7 +170459,7 @@ }, { "str": "}}", - "token_id": 18861, + "token_id": 18845, "o_rev_id": 1126376157, "in": [ 1126390791, @@ -170659,7 +170474,7 @@ }, { "str": "pending", - "token_id": 18862, + "token_id": 18846, "o_rev_id": 1126376250, "in": [], "out": [ @@ -170668,7 +170483,7 @@ }, { "str": "}}", - "token_id": 18863, + "token_id": 18847, "o_rev_id": 1126376250, "in": [], "out": [ @@ -170677,329 +170492,329 @@ }, { "str": "[[", - "token_id": 18864, + "token_id": 18848, "o_rev_id": 1126390726, "in": [], "out": [] }, { "str": "category", - "token_id": 18865, + "token_id": 18849, "o_rev_id": 1126390726, "in": [], "out": [] }, { "str": ":", - "token_id": 18866, + "token_id": 18850, "o_rev_id": 1126390726, "in": [], "out": [] }, { "str": "the", - "token_id": 18867, + "token_id": 18851, "o_rev_id": 1126390726, "in": [], "out": [] }, { "str": "game", - "token_id": 18868, + "token_id": 18852, "o_rev_id": 1126390726, "in": [], "out": [] }, { "str": "awards", - "token_id": 18869, + "token_id": 18853, "o_rev_id": 1126390726, "in": [], "out": [] }, { "str": "winners", - "token_id": 18870, + "token_id": 18854, "o_rev_id": 1126390726, "in": [], "out": [] }, { "str": "]]", - "token_id": 18871, + "token_id": 18855, "o_rev_id": 1126390726, "in": [], "out": [] }, { "str": "{{", - "token_id": 18872, + "token_id": 18856, "o_rev_id": 1126390791, "in": [], "out": [] }, { "str": "nominated", - "token_id": 18873, + "token_id": 18857, "o_rev_id": 1126390791, "in": [], "out": [] }, { "str": "}}", - "token_id": 18874, + "token_id": 18858, "o_rev_id": 1126390791, "in": [], "out": [] }, { "str": "scope", - "token_id": 18875, + "token_id": 18859, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "=", - "token_id": 18876, + "token_id": 18860, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18877, + "token_id": 18861, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "col", - "token_id": 18878, + "token_id": 18862, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18879, + "token_id": 18863, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "|", - "token_id": 18880, + "token_id": 18864, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "scope", - "token_id": 18881, + "token_id": 18865, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "=", - "token_id": 18882, + "token_id": 18866, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18883, + "token_id": 18867, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "col", - "token_id": 18884, + "token_id": 18868, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18885, + "token_id": 18869, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "|", - "token_id": 18886, + "token_id": 18870, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "scope", - "token_id": 18887, + "token_id": 18871, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "=", - "token_id": 18888, + "token_id": 18872, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18889, + "token_id": 18873, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "col", - "token_id": 18890, + "token_id": 18874, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18891, + "token_id": 18875, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "|", - "token_id": 18892, + "token_id": 18876, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "scope", - "token_id": 18893, + "token_id": 18877, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "=", - "token_id": 18894, + "token_id": 18878, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18895, + "token_id": 18879, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "col", - "token_id": 18896, + "token_id": 18880, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18897, + "token_id": 18881, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "|", - "token_id": 18898, + "token_id": 18882, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "scope", - "token_id": 18899, + "token_id": 18883, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "=", - "token_id": 18900, + "token_id": 18884, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18901, + "token_id": 18885, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "col", - "token_id": 18902, + "token_id": 18886, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18903, + "token_id": 18887, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "class", - "token_id": 18904, + "token_id": 18888, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "=", - "token_id": 18905, + "token_id": 18889, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18906, + "token_id": 18890, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "unsortable", - "token_id": 18907, + "token_id": 18891, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18908, + "token_id": 18892, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "|", - "token_id": 18909, + "token_id": 18893, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": ".", - "token_id": 18910, + "token_id": 18894, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171008,161 +170823,161 @@ }, { "str": "\"", - "token_id": 18911, + "token_id": 18895, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "style", - "token_id": 18912, + "token_id": 18896, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "=", - "token_id": 18913, + "token_id": 18897, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "\"", - "token_id": 18914, + "token_id": 18898, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "text", - "token_id": 18915, + "token_id": 18899, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "-", - "token_id": 18916, + "token_id": 18900, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "align", - "token_id": 18917, + "token_id": 18901, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": ":", - "token_id": 18918, + "token_id": 18902, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "center", - "token_id": 18919, + "token_id": 18903, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": ";", - "token_id": 18920, + "token_id": 18904, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "ign", - "token_id": 18921, + "token_id": 18905, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "articles", - "token_id": 18922, + "token_id": 18906, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "2022", - "token_id": 18923, + "token_id": 18907, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "-", - "token_id": 18924, + "token_id": 18908, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "winners", - "token_id": 18925, + "token_id": 18909, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "game", - "token_id": 18926, + "token_id": 18910, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "awards", - "token_id": 18927, + "token_id": 18911, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "2022", - "token_id": 18928, + "token_id": 18912, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "winners", - "token_id": 18929, + "token_id": 18913, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": ":", - "token_id": 18930, + "token_id": 18914, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "the", - "token_id": 18931, + "token_id": 18915, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "|", - "token_id": 18932, + "token_id": 18916, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "last", - "token_id": 18933, + "token_id": 18917, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171171,14 +170986,14 @@ }, { "str": "=", - "token_id": 18934, + "token_id": 18918, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "plant", - "token_id": 18935, + "token_id": 18919, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171187,14 +171002,14 @@ }, { "str": "|", - "token_id": 18936, + "token_id": 18920, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "first", - "token_id": 18937, + "token_id": 18921, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171203,14 +171018,14 @@ }, { "str": "=", - "token_id": 18938, + "token_id": 18922, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "logan", - "token_id": 18939, + "token_id": 18923, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171219,28 +171034,32 @@ }, { "str": "[[", - "token_id": 18940, + "token_id": 18924, "o_rev_id": 1126401199, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "ign", - "token_id": 18941, + "token_id": 18925, "o_rev_id": 1126401199, "in": [], "out": [] }, { "str": "]]", - "token_id": 18942, + "token_id": 18926, "o_rev_id": 1126401199, "in": [], - "out": [] + "out": [ + 1140535097 + ] }, { "str": "8", - "token_id": 18943, + "token_id": 18927, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171249,7 +171068,7 @@ }, { "str": "december", - "token_id": 18944, + "token_id": 18928, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171258,7 +171077,7 @@ }, { "str": "8", - "token_id": 18945, + "token_id": 18929, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171267,7 +171086,7 @@ }, { "str": "december", - "token_id": 18946, + "token_id": 18930, "o_rev_id": 1126401199, "in": [], "out": [ @@ -171276,28 +171095,28 @@ }, { "str": "ink", - "token_id": 18947, + "token_id": 18931, "o_rev_id": 1127090685, "in": [], "out": [] }, { "str": "own", - "token_id": 18948, + "token_id": 18932, "o_rev_id": 1127090685, "in": [], "out": [] }, { "str": ".", - "token_id": 18949, + "token_id": 18933, "o_rev_id": 1127090685, "in": [], "out": [] }, { "str": "if", - "token_id": 18950, + "token_id": 18934, "o_rev_id": 1127090685, "in": [], "out": [ @@ -171306,7 +171125,7 @@ }, { "str": "the", - "token_id": 18951, + "token_id": 18935, "o_rev_id": 1127090685, "in": [], "out": [ @@ -171315,7 +171134,7 @@ }, { "str": "player", - "token_id": 18952, + "token_id": 18936, "o_rev_id": 1127090685, "in": [], "out": [ @@ -171324,7 +171143,7 @@ }, { "str": "is", - "token_id": 18953, + "token_id": 18937, "o_rev_id": 1127090685, "in": [], "out": [ @@ -171333,7 +171152,7 @@ }, { "str": "in", - "token_id": 18954, + "token_id": 18938, "o_rev_id": 1127090685, "in": [], "out": [ @@ -171342,7 +171161,7 @@ }, { "str": "the", - "token_id": 18955, + "token_id": 18939, "o_rev_id": 1127090685, "in": [], "out": [ @@ -171351,7 +171170,7 @@ }, { "str": "opponents", - "token_id": 18956, + "token_id": 18940, "o_rev_id": 1127090685, "in": [], "out": [ @@ -171360,7 +171179,7 @@ }, { "str": "ink", - "token_id": 18957, + "token_id": 18941, "o_rev_id": 1127090685, "in": [], "out": [ @@ -171369,14 +171188,14 @@ }, { "str": ".", - "token_id": 18958, + "token_id": 18942, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "the", - "token_id": 18959, + "token_id": 18943, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171385,7 +171204,7 @@ }, { "str": "salmonids", - "token_id": 18960, + "token_id": 18944, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171394,7 +171213,7 @@ }, { "str": "will", - "token_id": 18961, + "token_id": 18945, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171403,7 +171222,7 @@ }, { "str": "invade", - "token_id": 18962, + "token_id": 18946, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171412,7 +171231,7 @@ }, { "str": "the", - "token_id": 18963, + "token_id": 18947, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171421,7 +171240,7 @@ }, { "str": "online", - "token_id": 18964, + "token_id": 18948, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171430,7 +171249,7 @@ }, { "str": "multiplayer", - "token_id": 18965, + "token_id": 18949, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171439,7 +171258,7 @@ }, { "str": "stages", - "token_id": 18966, + "token_id": 18950, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171448,7 +171267,7 @@ }, { "str": "and", - "token_id": 18967, + "token_id": 18951, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171457,7 +171276,7 @@ }, { "str": "the", - "token_id": 18968, + "token_id": 18952, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171466,7 +171285,7 @@ }, { "str": "community", - "token_id": 18969, + "token_id": 18953, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171475,7 +171294,7 @@ }, { "str": "has", - "token_id": 18970, + "token_id": 18954, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171484,7 +171303,7 @@ }, { "str": "to", - "token_id": 18971, + "token_id": 18955, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171493,84 +171312,84 @@ }, { "str": "defend", - "token_id": 18972, + "token_id": 18956, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "splatsville", - "token_id": 18973, + "token_id": 18957, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": ".", - "token_id": 18974, + "token_id": 18958, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "after", - "token_id": 18975, + "token_id": 18959, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "a", - "token_id": 18976, + "token_id": 18960, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "few", - "token_id": 18977, + "token_id": 18961, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "days", - "token_id": 18978, + "token_id": 18962, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "the", - "token_id": 18979, + "token_id": 18963, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "event", - "token_id": 18980, + "token_id": 18964, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "ends", - "token_id": 18981, + "token_id": 18965, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "and", - "token_id": 18982, + "token_id": 18966, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "the", - "token_id": 18983, + "token_id": 18967, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171579,14 +171398,14 @@ }, { "str": "players", - "token_id": 18984, + "token_id": 18968, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "that", - "token_id": 18985, + "token_id": 18969, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171595,7 +171414,7 @@ }, { "str": "participated", - "token_id": 18986, + "token_id": 18970, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171604,7 +171423,7 @@ }, { "str": "will", - "token_id": 18987, + "token_id": 18971, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171613,7 +171432,7 @@ }, { "str": "get", - "token_id": 18988, + "token_id": 18972, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171622,42 +171441,42 @@ }, { "str": "a", - "token_id": 18989, + "token_id": 18973, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "prize", - "token_id": 18990, + "token_id": 18974, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": ".", - "token_id": 18991, + "token_id": 18975, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "this", - "token_id": 18992, + "token_id": 18976, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "event", - "token_id": 18993, + "token_id": 18977, "o_rev_id": 1127096867, "in": [], "out": [] }, { "str": "is", - "token_id": 18994, + "token_id": 18978, "o_rev_id": 1127096867, "in": [], "out": [ @@ -171666,7 +171485,7 @@ }, { "str": "nope", - "token_id": 18995, + "token_id": 18979, "o_rev_id": 1127496947, "in": [], "out": [ @@ -171675,7 +171494,7 @@ }, { "str": "{{", - "token_id": 18996, + "token_id": 18980, "o_rev_id": 1127496947, "in": [], "out": [ @@ -171684,7 +171503,7 @@ }, { "str": "won", - "token_id": 18997, + "token_id": 18981, "o_rev_id": 1127496998, "in": [], "out": [ @@ -171693,7 +171512,7 @@ }, { "str": "green", - "token_id": 18998, + "token_id": 18982, "o_rev_id": 1127497028, "in": [], "out": [ @@ -171702,7 +171521,7 @@ }, { "str": "{", - "token_id": 18999, + "token_id": 18983, "o_rev_id": 1127497138, "in": [], "out": [ @@ -171711,7 +171530,7 @@ }, { "str": "}", - "token_id": 19000, + "token_id": 18984, "o_rev_id": 1127497138, "in": [], "out": [ @@ -171720,7 +171539,7 @@ }, { "str": "meanwhile", - "token_id": 19001, + "token_id": 18985, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171729,7 +171548,7 @@ }, { "str": "in", - "token_id": 19002, + "token_id": 18986, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171738,7 +171557,7 @@ }, { "str": "splatsville", - "token_id": 19003, + "token_id": 18987, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171747,7 +171566,7 @@ }, { "str": ",", - "token_id": 19004, + "token_id": 18988, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171756,7 +171575,7 @@ }, { "str": "the", - "token_id": 19005, + "token_id": 18989, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171765,7 +171584,7 @@ }, { "str": "statue", - "token_id": 19006, + "token_id": 18990, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171774,7 +171593,7 @@ }, { "str": "mr", - "token_id": 19007, + "token_id": 18991, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171783,7 +171602,7 @@ }, { "str": ".", - "token_id": 19008, + "token_id": 18992, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171792,7 +171611,7 @@ }, { "str": "grizz", - "token_id": 19009, + "token_id": 18993, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171801,7 +171620,7 @@ }, { "str": "uses", - "token_id": 19010, + "token_id": 18994, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171810,7 +171629,7 @@ }, { "str": "to", - "token_id": 19011, + "token_id": 18995, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171819,7 +171638,7 @@ }, { "str": "communicate", - "token_id": 19012, + "token_id": 18996, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171828,7 +171647,7 @@ }, { "str": "with", - "token_id": 19013, + "token_id": 18997, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171837,7 +171656,7 @@ }, { "str": "employees", - "token_id": 19014, + "token_id": 18998, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171846,7 +171665,7 @@ }, { "str": "is", - "token_id": 19015, + "token_id": 18999, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171855,7 +171674,7 @@ }, { "str": "replaced", - "token_id": 19016, + "token_id": 19000, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171864,7 +171683,7 @@ }, { "str": "with", - "token_id": 19017, + "token_id": 19001, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171873,7 +171692,7 @@ }, { "str": "a", - "token_id": 19018, + "token_id": 19002, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171882,7 +171701,7 @@ }, { "str": "statue", - "token_id": 19019, + "token_id": 19003, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171891,7 +171710,7 @@ }, { "str": "of", - "token_id": 19020, + "token_id": 19004, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171900,7 +171719,7 @@ }, { "str": "a", - "token_id": 19021, + "token_id": 19005, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171909,7 +171728,7 @@ }, { "str": "salmon", - "token_id": 19022, + "token_id": 19006, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171918,7 +171737,7 @@ }, { "str": ",", - "token_id": 19023, + "token_id": 19007, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171927,7 +171746,7 @@ }, { "str": "and", - "token_id": 19024, + "token_id": 19008, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171936,7 +171755,7 @@ }, { "str": "lil", - "token_id": 19025, + "token_id": 19009, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171945,7 +171764,7 @@ }, { "str": "'", - "token_id": 19026, + "token_id": 19010, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171954,7 +171773,7 @@ }, { "str": "judd", - "token_id": 19027, + "token_id": 19011, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171963,7 +171782,7 @@ }, { "str": "is", - "token_id": 19028, + "token_id": 19012, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171972,7 +171791,7 @@ }, { "str": "shown", - "token_id": 19029, + "token_id": 19013, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171981,7 +171800,7 @@ }, { "str": "with", - "token_id": 19030, + "token_id": 19014, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171990,7 +171809,7 @@ }, { "str": "a", - "token_id": 19031, + "token_id": 19015, "o_rev_id": 1127793388, "in": [], "out": [ @@ -171999,7 +171818,7 @@ }, { "str": "headset", - "token_id": 19032, + "token_id": 19016, "o_rev_id": 1127793388, "in": [], "out": [ @@ -172008,7 +171827,7 @@ }, { "str": ".", - "token_id": 19033, + "token_id": 19017, "o_rev_id": 1127793388, "in": [], "out": [ @@ -172017,14 +171836,14 @@ }, { "str": "'", - "token_id": 19034, + "token_id": 19018, "o_rev_id": 1129812105, "in": [], "out": [] }, { "str": "pee", - "token_id": 19035, + "token_id": 19019, "o_rev_id": 1131329849, "in": [], "out": [ @@ -172033,7 +171852,7 @@ }, { "str": "most", - "token_id": 19036, + "token_id": 19020, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172042,7 +171861,7 @@ }, { "str": "stopping", - "token_id": 19037, + "token_id": 19021, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172051,7 +171870,7 @@ }, { "str": "for", - "token_id": 19038, + "token_id": 19022, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172060,7 +171879,7 @@ }, { "str": "short", - "token_id": 19039, + "token_id": 19023, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172069,7 +171888,7 @@ }, { "str": "periods", - "token_id": 19040, + "token_id": 19024, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172078,7 +171897,7 @@ }, { "str": "of", - "token_id": 19041, + "token_id": 19025, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172087,7 +171906,7 @@ }, { "str": "time", - "token_id": 19042, + "token_id": 19026, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172096,7 +171915,7 @@ }, { "str": "at", - "token_id": 19043, + "token_id": 19027, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172105,7 +171924,7 @@ }, { "str": "heavyweight", - "token_id": 19044, + "token_id": 19028, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172114,7 +171933,7 @@ }, { "str": "bimonthly", - "token_id": 19045, + "token_id": 19029, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172123,7 +171942,7 @@ }, { "str": "one", - "token_id": 19046, + "token_id": 19030, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172132,7 +171951,7 @@ }, { "str": "a", - "token_id": 19047, + "token_id": 19031, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172141,7 +171960,7 @@ }, { "str": "new", - "token_id": 19048, + "token_id": 19032, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172150,7 +171969,7 @@ }, { "str": "mechanic", - "token_id": 19049, + "token_id": 19033, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172159,7 +171978,7 @@ }, { "str": "known", - "token_id": 19050, + "token_id": 19034, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172168,7 +171987,7 @@ }, { "str": "as", - "token_id": 19051, + "token_id": 19035, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172177,7 +171996,7 @@ }, { "str": ".", - "token_id": 19052, + "token_id": 19036, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172186,7 +172005,7 @@ }, { "str": "a", - "token_id": 19053, + "token_id": 19037, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172195,7 +172014,7 @@ }, { "str": "player", - "token_id": 19054, + "token_id": 19038, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172204,7 +172023,7 @@ }, { "str": "can", - "token_id": 19055, + "token_id": 19039, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172213,7 +172032,7 @@ }, { "str": "not", - "token_id": 19056, + "token_id": 19040, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172222,7 +172041,7 @@ }, { "str": "place", - "token_id": 19057, + "token_id": 19041, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172231,7 +172050,7 @@ }, { "str": "thein", - "token_id": 19058, + "token_id": 19042, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172240,7 +172059,7 @@ }, { "str": "own", - "token_id": 19059, + "token_id": 19043, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172249,7 +172068,7 @@ }, { "str": "card", - "token_id": 19060, + "token_id": 19044, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172258,7 +172077,7 @@ }, { "str": "over", - "token_id": 19061, + "token_id": 19045, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172267,7 +172086,7 @@ }, { "str": "one", - "token_id": 19062, + "token_id": 19046, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172276,7 +172095,7 @@ }, { "str": "of", - "token_id": 19063, + "token_id": 19047, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172285,7 +172104,7 @@ }, { "str": "their", - "token_id": 19064, + "token_id": 19048, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172294,7 +172113,7 @@ }, { "str": "opponents", - "token_id": 19065, + "token_id": 19049, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172303,7 +172122,7 @@ }, { "str": "unless", - "token_id": 19066, + "token_id": 19050, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172312,7 +172131,7 @@ }, { "str": "and", - "token_id": 19067, + "token_id": 19051, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172321,7 +172140,7 @@ }, { "str": "the", - "token_id": 19068, + "token_id": 19052, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172330,7 +172149,7 @@ }, { "str": "player", - "token_id": 19069, + "token_id": 19053, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172339,7 +172158,7 @@ }, { "str": "with", - "token_id": 19070, + "token_id": 19054, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172348,7 +172167,7 @@ }, { "str": "the", - "token_id": 19071, + "token_id": 19055, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172357,7 +172176,7 @@ }, { "str": "most", - "token_id": 19072, + "token_id": 19056, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172366,7 +172185,7 @@ }, { "str": "of", - "token_id": 19073, + "token_id": 19057, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172375,7 +172194,7 @@ }, { "str": "these", - "token_id": 19074, + "token_id": 19058, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172384,7 +172203,7 @@ }, { "str": "patterns", - "token_id": 19075, + "token_id": 19059, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172393,7 +172212,7 @@ }, { "str": "on", - "token_id": 19076, + "token_id": 19060, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172402,7 +172221,7 @@ }, { "str": "their", - "token_id": 19077, + "token_id": 19061, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172411,7 +172230,7 @@ }, { "str": "board", - "token_id": 19078, + "token_id": 19062, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172420,7 +172239,7 @@ }, { "str": "wins", - "token_id": 19079, + "token_id": 19063, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172429,7 +172248,7 @@ }, { "str": "and", - "token_id": 19080, + "token_id": 19064, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172438,7 +172257,7 @@ }, { "str": "can", - "token_id": 19081, + "token_id": 19065, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172447,7 +172266,7 @@ }, { "str": "receive", - "token_id": 19082, + "token_id": 19066, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172456,7 +172275,7 @@ }, { "str": "rewards", - "token_id": 19083, + "token_id": 19067, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172465,7 +172284,7 @@ }, { "str": "after", - "token_id": 19084, + "token_id": 19068, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172474,7 +172293,7 @@ }, { "str": "winning", - "token_id": 19085, + "token_id": 19069, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172483,7 +172302,7 @@ }, { "str": "multiple", - "token_id": 19086, + "token_id": 19070, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172492,7 +172311,7 @@ }, { "str": "times", - "token_id": 19087, + "token_id": 19071, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172501,7 +172320,7 @@ }, { "str": ".", - "token_id": 19088, + "token_id": 19072, "o_rev_id": 1131725937, "in": [], "out": [ @@ -172510,14 +172329,14 @@ }, { "str": "campaign", - "token_id": 19089, + "token_id": 19073, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "its", - "token_id": 19090, + "token_id": 19074, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172528,7 +172347,7 @@ }, { "str": "predecessors", - "token_id": 19091, + "token_id": 19075, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172539,7 +172358,7 @@ }, { "str": "in", - "token_id": 19092, + "token_id": 19076, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172550,7 +172369,7 @@ }, { "str": "the", - "token_id": 19093, + "token_id": 19077, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172561,7 +172380,7 @@ }, { "str": "'", - "token_id": 19094, + "token_id": 19078, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172572,7 +172391,7 @@ }, { "str": "'", - "token_id": 19095, + "token_id": 19079, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172583,7 +172402,7 @@ }, { "str": "'", - "token_id": 19096, + "token_id": 19080, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172594,7 +172413,7 @@ }, { "str": "'", - "token_id": 19097, + "token_id": 19081, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172605,7 +172424,7 @@ }, { "str": "series", - "token_id": 19098, + "token_id": 19082, "o_rev_id": 1131746260, "in": [ 1178773007 @@ -172616,77 +172435,77 @@ }, { "str": "]]", - "token_id": 19099, + "token_id": 19083, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "(", - "token_id": 19100, + "token_id": 19084, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": ")", - "token_id": 19101, + "token_id": 19085, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "{{", - "token_id": 19102, + "token_id": 19086, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "}}", - "token_id": 19103, + "token_id": 19087, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "{{", - "token_id": 19104, + "token_id": 19088, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "}}", - "token_id": 19105, + "token_id": 19089, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "{{", - "token_id": 19106, + "token_id": 19090, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "}}", - "token_id": 19107, + "token_id": 19091, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "an", - "token_id": 19108, + "token_id": 19092, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "'", - "token_id": 19109, + "token_id": 19093, "o_rev_id": 1131746260, "in": [ 1346787011 @@ -172697,7 +172516,7 @@ }, { "str": "'", - "token_id": 19110, + "token_id": 19094, "o_rev_id": 1131746260, "in": [ 1346787011 @@ -172708,21 +172527,21 @@ }, { "str": "]]", - "token_id": 19111, + "token_id": 19095, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "three", - "token_id": 19112, + "token_id": 19096, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "and", - "token_id": 19113, + "token_id": 19097, "o_rev_id": 1131746260, "in": [ 1202097960 @@ -172733,14 +172552,14 @@ }, { "str": "paid", - "token_id": 19114, + "token_id": 19098, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "{{", - "token_id": 19115, + "token_id": 19099, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172749,7 +172568,7 @@ }, { "str": "}}", - "token_id": 19116, + "token_id": 19100, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172758,7 +172577,7 @@ }, { "str": "{{", - "token_id": 19117, + "token_id": 19101, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172767,7 +172586,7 @@ }, { "str": "}}", - "token_id": 19118, + "token_id": 19102, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172776,7 +172595,7 @@ }, { "str": "{{", - "token_id": 19119, + "token_id": 19103, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172785,7 +172604,7 @@ }, { "str": "}}", - "token_id": 19120, + "token_id": 19104, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172794,35 +172613,39 @@ }, { "str": "{{", - "token_id": 19121, + "token_id": 19105, "o_rev_id": 1131746260, "in": [], - "out": [] - }, + "out": [ + 1334176815 + ] + }, { "str": "}}", - "token_id": 19122, + "token_id": 19106, "o_rev_id": 1131746260, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "{{", - "token_id": 19123, + "token_id": 19107, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "}}", - "token_id": 19124, + "token_id": 19108, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "'", - "token_id": 19125, + "token_id": 19109, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172831,7 +172654,7 @@ }, { "str": "'", - "token_id": 19126, + "token_id": 19110, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172840,7 +172663,7 @@ }, { "str": "'", - "token_id": 19127, + "token_id": 19111, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172849,7 +172672,7 @@ }, { "str": "'", - "token_id": 19128, + "token_id": 19112, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172858,21 +172681,21 @@ }, { "str": "{{", - "token_id": 19129, + "token_id": 19113, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "}}", - "token_id": 19130, + "token_id": 19114, "o_rev_id": 1131746260, "in": [], "out": [] }, { "str": "{{", - "token_id": 19131, + "token_id": 19115, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172881,7 +172704,7 @@ }, { "str": "}}", - "token_id": 19132, + "token_id": 19116, "o_rev_id": 1131746260, "in": [], "out": [ @@ -172890,28 +172713,28 @@ }, { "str": "game", - "token_id": 19133, + "token_id": 19117, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "s", - "token_id": 19134, + "token_id": 19118, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "design", - "token_id": 19135, + "token_id": 19119, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "is", - "token_id": 19136, + "token_id": 19120, "o_rev_id": 1131750441, "in": [], "out": [ @@ -172920,7 +172743,7 @@ }, { "str": "themed", - "token_id": 19137, + "token_id": 19121, "o_rev_id": 1131750441, "in": [], "out": [ @@ -172929,7 +172752,7 @@ }, { "str": "around", - "token_id": 19138, + "token_id": 19122, "o_rev_id": 1131750441, "in": [], "out": [ @@ -172938,14 +172761,14 @@ }, { "str": "chaos", - "token_id": 19139, + "token_id": 19123, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "due", - "token_id": 19140, + "token_id": 19124, "o_rev_id": 1131750441, "in": [], "out": [ @@ -172954,7 +172777,7 @@ }, { "str": "outcome", - "token_id": 19141, + "token_id": 19125, "o_rev_id": 1131750441, "in": [], "out": [ @@ -172963,7 +172786,7 @@ }, { "str": "of", - "token_id": 19142, + "token_id": 19126, "o_rev_id": 1131750441, "in": [], "out": [ @@ -172972,7 +172795,7 @@ }, { "str": "last", - "token_id": 19143, + "token_id": 19127, "o_rev_id": 1131750441, "in": [], "out": [ @@ -172981,189 +172804,189 @@ }, { "str": "splatfest", - "token_id": 19144, + "token_id": 19128, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "{{", - "token_id": 19145, + "token_id": 19129, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "r", - "token_id": 19146, + "token_id": 19130, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "|", - "token_id": 19147, + "token_id": 19131, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 19148, + "token_id": 19132, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "}}", - "token_id": 19149, + "token_id": 19133, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": ",", - "token_id": 19150, + "token_id": 19134, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "a", - "token_id": 19151, + "token_id": 19135, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "large", - "token_id": 19152, + "token_id": 19136, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": ",", - "token_id": 19153, + "token_id": 19137, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "snowy", - "token_id": 19154, + "token_id": 19138, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "area", - "token_id": 19155, + "token_id": 19139, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "littered", - "token_id": 19156, + "token_id": 19140, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "with", - "token_id": 19157, + "token_id": 19141, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "incomplete", - "token_id": 19158, + "token_id": 19142, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "structures", - "token_id": 19159, + "token_id": 19143, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "and", - "token_id": 19160, + "token_id": 19144, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "hazardous", - "token_id": 19161, + "token_id": 19145, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "fuzzy", - "token_id": 19162, + "token_id": 19146, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "ooze", - "token_id": 19163, + "token_id": 19147, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "with", - "token_id": 19164, + "token_id": 19148, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "a", - "token_id": 19165, + "token_id": 19149, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "rocket", - "token_id": 19166, + "token_id": 19150, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "at", - "token_id": 19167, + "token_id": 19151, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "its", - "token_id": 19168, + "token_id": 19152, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "center", - "token_id": 19169, + "token_id": 19153, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "octarians", - "token_id": 19170, + "token_id": 19154, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173172,7 +172995,7 @@ }, { "str": "return", - "token_id": 19171, + "token_id": 19155, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173181,7 +173004,7 @@ }, { "str": "as", - "token_id": 19172, + "token_id": 19156, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173190,7 +173013,7 @@ }, { "str": "primary", - "token_id": 19173, + "token_id": 19157, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173199,7 +173022,7 @@ }, { "str": "enemies", - "token_id": 19174, + "token_id": 19158, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173208,7 +173031,7 @@ }, { "str": "in", - "token_id": 19175, + "token_id": 19159, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173217,7 +173040,7 @@ }, { "str": "'", - "token_id": 19176, + "token_id": 19160, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173226,7 +173049,7 @@ }, { "str": "'", - "token_id": 19177, + "token_id": 19161, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173235,7 +173058,7 @@ }, { "str": "splatoon", - "token_id": 19178, + "token_id": 19162, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173244,7 +173067,7 @@ }, { "str": "3", - "token_id": 19179, + "token_id": 19163, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173253,7 +173076,7 @@ }, { "str": "'", - "token_id": 19180, + "token_id": 19164, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173262,7 +173085,7 @@ }, { "str": "'", - "token_id": 19181, + "token_id": 19165, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173271,7 +173094,7 @@ }, { "str": ",", - "token_id": 19182, + "token_id": 19166, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173280,7 +173103,7 @@ }, { "str": "but", - "token_id": 19183, + "token_id": 19167, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173289,7 +173112,7 @@ }, { "str": "the", - "token_id": 19184, + "token_id": 19168, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173298,7 +173121,7 @@ }, { "str": "majority", - "token_id": 19185, + "token_id": 19169, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173307,7 +173130,7 @@ }, { "str": "of", - "token_id": 19186, + "token_id": 19170, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173316,7 +173139,7 @@ }, { "str": "them", - "token_id": 19187, + "token_id": 19171, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173325,7 +173148,7 @@ }, { "str": "now", - "token_id": 19188, + "token_id": 19172, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173334,7 +173157,7 @@ }, { "str": "appear", - "token_id": 19189, + "token_id": 19173, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173343,7 +173166,7 @@ }, { "str": "mutated", - "token_id": 19190, + "token_id": 19174, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173352,7 +173175,7 @@ }, { "str": "with", - "token_id": 19191, + "token_id": 19175, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173361,7 +173184,7 @@ }, { "str": "brown", - "token_id": 19192, + "token_id": 19176, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173370,7 +173193,7 @@ }, { "str": "fur", - "token_id": 19193, + "token_id": 19177, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173379,7 +173202,7 @@ }, { "str": "and", - "token_id": 19194, + "token_id": 19178, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173388,7 +173211,7 @@ }, { "str": "purple", - "token_id": 19195, + "token_id": 19179, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173397,7 +173220,7 @@ }, { "str": "eyes", - "token_id": 19196, + "token_id": 19180, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173406,7 +173229,7 @@ }, { "str": ".", - "token_id": 19197, + "token_id": 19181, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173415,7 +173238,7 @@ }, { "str": "the", - "token_id": 19198, + "token_id": 19182, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173424,7 +173247,7 @@ }, { "str": "story", - "token_id": 19199, + "token_id": 19183, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173433,7 +173256,7 @@ }, { "str": "starts", - "token_id": 19200, + "token_id": 19184, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173442,7 +173265,7 @@ }, { "str": "in", - "token_id": 19201, + "token_id": 19185, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173451,7 +173274,7 @@ }, { "str": "the", - "token_id": 19202, + "token_id": 19186, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173460,14 +173283,14 @@ }, { "str": "crater", - "token_id": 19203, + "token_id": 19187, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "where", - "token_id": 19204, + "token_id": 19188, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173476,21 +173299,21 @@ }, { "str": "the", - "token_id": 19205, + "token_id": 19189, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "player", - "token_id": 19206, + "token_id": 19190, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "'", - "token_id": 19207, + "token_id": 19191, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173499,7 +173322,7 @@ }, { "str": "s", - "token_id": 19208, + "token_id": 19192, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173508,7 +173331,7 @@ }, { "str": "character", - "token_id": 19209, + "token_id": 19193, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173517,7 +173340,7 @@ }, { "str": ",", - "token_id": 19210, + "token_id": 19194, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173526,7 +173349,7 @@ }, { "str": "an", - "token_id": 19211, + "token_id": 19195, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173535,7 +173358,7 @@ }, { "str": "inkling", - "token_id": 19212, + "token_id": 19196, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173544,7 +173367,7 @@ }, { "str": "or", - "token_id": 19213, + "token_id": 19197, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173553,7 +173376,7 @@ }, { "str": "octoling", - "token_id": 19214, + "token_id": 19198, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173562,7 +173385,7 @@ }, { "str": "accompanied", - "token_id": 19215, + "token_id": 19199, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173571,7 +173394,7 @@ }, { "str": "by", - "token_id": 19216, + "token_id": 19200, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173580,14 +173403,14 @@ }, { "str": "their", - "token_id": 19217, + "token_id": 19201, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "companion", - "token_id": 19218, + "token_id": 19202, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173596,7 +173419,7 @@ }, { "str": "smallfry", - "token_id": 19219, + "token_id": 19203, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173605,7 +173428,7 @@ }, { "str": ",", - "token_id": 19220, + "token_id": 19204, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173614,7 +173437,7 @@ }, { "str": "is", - "token_id": 19221, + "token_id": 19205, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173623,35 +173446,35 @@ }, { "str": "recruited", - "token_id": 19222, + "token_id": 19206, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "by", - "token_id": 19223, + "token_id": 19207, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "into", - "token_id": 19224, + "token_id": 19208, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "as", - "token_id": 19225, + "token_id": 19209, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "new", - "token_id": 19226, + "token_id": 19210, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173660,28 +173483,28 @@ }, { "str": "agent", - "token_id": 19227, + "token_id": 19211, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "3", - "token_id": 19228, + "token_id": 19212, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": ".", - "token_id": 19229, + "token_id": 19213, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "the", - "token_id": 19230, + "token_id": 19214, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173690,7 +173513,7 @@ }, { "str": "majority", - "token_id": 19231, + "token_id": 19215, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173699,7 +173522,7 @@ }, { "str": "of", - "token_id": 19232, + "token_id": 19216, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173708,7 +173531,7 @@ }, { "str": "the", - "token_id": 19233, + "token_id": 19217, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173717,7 +173540,7 @@ }, { "str": "mode", - "token_id": 19234, + "token_id": 19218, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173726,7 +173549,7 @@ }, { "str": "takes", - "token_id": 19235, + "token_id": 19219, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173735,7 +173558,7 @@ }, { "str": "place", - "token_id": 19236, + "token_id": 19220, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173744,7 +173567,7 @@ }, { "str": "in", - "token_id": 19237, + "token_id": 19221, "o_rev_id": 1131750441, "in": [ 1327668959 @@ -173756,7 +173579,7 @@ }, { "str": "alterna", - "token_id": 19238, + "token_id": 19222, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173765,7 +173588,7 @@ }, { "str": "located", - "token_id": 19239, + "token_id": 19223, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173774,7 +173597,7 @@ }, { "str": "beneath", - "token_id": 19240, + "token_id": 19224, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173783,7 +173606,7 @@ }, { "str": "former", - "token_id": 19241, + "token_id": 19225, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173792,7 +173615,7 @@ }, { "str": "from", - "token_id": 19242, + "token_id": 19226, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173801,7 +173624,7 @@ }, { "str": "the", - "token_id": 19243, + "token_id": 19227, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173810,7 +173633,7 @@ }, { "str": "previous", - "token_id": 19244, + "token_id": 19228, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173819,7 +173642,7 @@ }, { "str": "games", - "token_id": 19245, + "token_id": 19229, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173828,7 +173651,7 @@ }, { "str": "who", - "token_id": 19246, + "token_id": 19230, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173837,7 +173660,7 @@ }, { "str": "is", - "token_id": 19247, + "token_id": 19231, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173846,7 +173669,7 @@ }, { "str": "now", - "token_id": 19248, + "token_id": 19232, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173855,7 +173678,7 @@ }, { "str": "the", - "token_id": 19249, + "token_id": 19233, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173864,7 +173687,7 @@ }, { "str": "captain", - "token_id": 19250, + "token_id": 19234, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173873,7 +173696,7 @@ }, { "str": "of", - "token_id": 19251, + "token_id": 19235, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173882,14 +173705,14 @@ }, { "str": "the", - "token_id": 19252, + "token_id": 19236, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "group", - "token_id": 19253, + "token_id": 19237, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173898,7 +173721,7 @@ }, { "str": "following", - "token_id": 19254, + "token_id": 19238, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173907,7 +173730,7 @@ }, { "str": "cuttlefish", - "token_id": 19255, + "token_id": 19239, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173916,7 +173739,7 @@ }, { "str": "'", - "token_id": 19256, + "token_id": 19240, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173925,7 +173748,7 @@ }, { "str": "s", - "token_id": 19257, + "token_id": 19241, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173934,7 +173757,7 @@ }, { "str": "retirement", - "token_id": 19258, + "token_id": 19242, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173943,7 +173766,7 @@ }, { "str": "appear", - "token_id": 19259, + "token_id": 19243, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173952,7 +173775,7 @@ }, { "str": "in", - "token_id": 19260, + "token_id": 19244, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173961,7 +173784,7 @@ }, { "str": "this", - "token_id": 19261, + "token_id": 19245, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173970,7 +173793,7 @@ }, { "str": "area", - "token_id": 19262, + "token_id": 19246, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173979,7 +173802,7 @@ }, { "str": "to", - "token_id": 19263, + "token_id": 19247, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173988,7 +173811,7 @@ }, { "str": "aid", - "token_id": 19264, + "token_id": 19248, "o_rev_id": 1131750441, "in": [], "out": [ @@ -173997,7 +173820,7 @@ }, { "str": "the", - "token_id": 19265, + "token_id": 19249, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174006,7 +173829,7 @@ }, { "str": "player", - "token_id": 19266, + "token_id": 19250, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174015,7 +173838,7 @@ }, { "str": "in", - "token_id": 19267, + "token_id": 19251, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174024,7 +173847,7 @@ }, { "str": "their", - "token_id": 19268, + "token_id": 19252, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174033,7 +173856,7 @@ }, { "str": "goal", - "token_id": 19269, + "token_id": 19253, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174042,7 +173865,7 @@ }, { "str": "of", - "token_id": 19270, + "token_id": 19254, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174051,7 +173874,7 @@ }, { "str": "exploring", - "token_id": 19271, + "token_id": 19255, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174060,7 +173883,7 @@ }, { "str": "alterna", - "token_id": 19272, + "token_id": 19256, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174069,7 +173892,7 @@ }, { "str": "and", - "token_id": 19273, + "token_id": 19257, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174078,7 +173901,7 @@ }, { "str": "finding", - "token_id": 19274, + "token_id": 19258, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174087,7 +173910,7 @@ }, { "str": "cuttlefish", - "token_id": 19275, + "token_id": 19259, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174096,7 +173919,7 @@ }, { "str": "went", - "token_id": 19276, + "token_id": 19260, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174105,7 +173928,7 @@ }, { "str": "missing", - "token_id": 19277, + "token_id": 19261, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174114,7 +173937,7 @@ }, { "str": "shortly", - "token_id": 19278, + "token_id": 19262, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174123,7 +173946,7 @@ }, { "str": "after", - "token_id": 19279, + "token_id": 19263, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174132,7 +173955,7 @@ }, { "str": "recruiting", - "token_id": 19280, + "token_id": 19264, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174141,7 +173964,7 @@ }, { "str": "player", - "token_id": 19281, + "token_id": 19265, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174150,7 +173973,7 @@ }, { "str": "{{", - "token_id": 19282, + "token_id": 19266, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174159,7 +173982,7 @@ }, { "str": "web", - "token_id": 19283, + "token_id": 19267, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174168,7 +173991,7 @@ }, { "str": "|", - "token_id": 19284, + "token_id": 19268, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174177,7 +174000,7 @@ }, { "str": "url", - "token_id": 19285, + "token_id": 19269, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174186,7 +174009,7 @@ }, { "str": "=", - "token_id": 19286, + "token_id": 19270, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174195,7 +174018,7 @@ }, { "str": "https", - "token_id": 19287, + "token_id": 19271, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174204,7 +174027,7 @@ }, { "str": ":", - "token_id": 19288, + "token_id": 19272, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174213,7 +174036,7 @@ }, { "str": "/", - "token_id": 19289, + "token_id": 19273, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174222,7 +174045,7 @@ }, { "str": "/", - "token_id": 19290, + "token_id": 19274, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174231,7 +174054,7 @@ }, { "str": "splatoonwiki", - "token_id": 19291, + "token_id": 19275, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174240,7 +174063,7 @@ }, { "str": ".", - "token_id": 19292, + "token_id": 19276, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174249,7 +174072,7 @@ }, { "str": "org", - "token_id": 19293, + "token_id": 19277, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174258,7 +174081,7 @@ }, { "str": "/", - "token_id": 19294, + "token_id": 19278, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174267,7 +174090,7 @@ }, { "str": "wiki", - "token_id": 19295, + "token_id": 19279, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174276,7 +174099,7 @@ }, { "str": "/", - "token_id": 19296, + "token_id": 19280, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174285,7 +174108,7 @@ }, { "str": "splatoon", - "token_id": 19297, + "token_id": 19281, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174294,7 +174117,7 @@ }, { "str": "_", - "token_id": 19298, + "token_id": 19282, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174303,7 +174126,7 @@ }, { "str": "3", - "token_id": 19299, + "token_id": 19283, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174312,7 +174135,7 @@ }, { "str": "#", - "token_id": 19300, + "token_id": 19284, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174321,7 +174144,7 @@ }, { "str": "story", - "token_id": 19301, + "token_id": 19285, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174330,7 +174153,7 @@ }, { "str": "|", - "token_id": 19302, + "token_id": 19286, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174339,7 +174162,7 @@ }, { "str": "=", - "token_id": 19303, + "token_id": 19287, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174348,7 +174171,7 @@ }, { "str": "inkipedia", - "token_id": 19304, + "token_id": 19288, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174357,7 +174180,7 @@ }, { "str": ",", - "token_id": 19305, + "token_id": 19289, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174366,14 +174189,14 @@ }, { "str": "the", - "token_id": 19306, + "token_id": 19290, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19307, + "token_id": 19291, "o_rev_id": 1131750441, "in": [ 1216768014 @@ -174384,7 +174207,7 @@ }, { "str": "wiki", - "token_id": 19308, + "token_id": 19292, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174393,7 +174216,7 @@ }, { "str": "}}", - "token_id": 19309, + "token_id": 19293, "o_rev_id": 1131750441, "in": [], "out": [ @@ -174402,28 +174225,28 @@ }, { "str": "name", - "token_id": 19310, + "token_id": 19294, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "=", - "token_id": 19311, + "token_id": 19295, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "\"", - "token_id": 19312, + "token_id": 19296, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 19313, + "token_id": 19297, "o_rev_id": 1131750441, "in": [ 1202097960 @@ -174434,14 +174257,14 @@ }, { "str": "\"", - "token_id": 19314, + "token_id": 19298, "o_rev_id": 1131750441, "in": [], "out": [] }, { "str": "story", - "token_id": 19315, + "token_id": 19299, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174450,7 +174273,7 @@ }, { "str": "of", - "token_id": 19316, + "token_id": 19300, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174459,7 +174282,7 @@ }, { "str": "begins", - "token_id": 19317, + "token_id": 19301, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174468,7 +174291,7 @@ }, { "str": ",", - "token_id": 19318, + "token_id": 19302, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174477,7 +174300,7 @@ }, { "str": "and", - "token_id": 19319, + "token_id": 19303, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174486,7 +174309,7 @@ }, { "str": "pet", - "token_id": 19320, + "token_id": 19304, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174498,14 +174321,14 @@ }, { "str": "salmonid", - "token_id": 19321, + "token_id": 19305, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "known", - "token_id": 19322, + "token_id": 19306, "o_rev_id": 1131820454, "in": [ 1202097960 @@ -174517,7 +174340,7 @@ }, { "str": "as", - "token_id": 19323, + "token_id": 19307, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174526,7 +174349,7 @@ }, { "str": "\"", - "token_id": 19324, + "token_id": 19308, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174535,25 +174358,25 @@ }, { "str": "little", - "token_id": 19325, + "token_id": 19309, "o_rev_id": 1131820454, "in": [], "out": [ - 1141913882 + 1203947758 ] }, { "str": "buddy", - "token_id": 19326, + "token_id": 19310, "o_rev_id": 1131820454, "in": [], "out": [ - 1141913882 + 1203947758 ] }, { "str": "\"", - "token_id": 19327, + "token_id": 19311, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174562,7 +174385,7 @@ }, { "str": "are", - "token_id": 19328, + "token_id": 19312, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174571,14 +174394,14 @@ }, { "str": "they", - "token_id": 19329, + "token_id": 19313, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "face", - "token_id": 19330, + "token_id": 19314, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174587,7 +174410,7 @@ }, { "str": "off", - "token_id": 19331, + "token_id": 19315, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174596,7 +174419,7 @@ }, { "str": "against", - "token_id": 19332, + "token_id": 19316, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174605,28 +174428,28 @@ }, { "str": "octarian", - "token_id": 19333, + "token_id": 19317, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "enemies", - "token_id": 19334, + "token_id": 19318, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "mutated", - "token_id": 19335, + "token_id": 19319, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "with", - "token_id": 19336, + "token_id": 19320, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174635,7 +174458,7 @@ }, { "str": "fur", - "token_id": 19337, + "token_id": 19321, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174644,14 +174467,14 @@ }, { "str": ".", - "token_id": 19338, + "token_id": 19322, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "after", - "token_id": 19339, + "token_id": 19323, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174660,7 +174483,7 @@ }, { "str": "defeating", - "token_id": 19340, + "token_id": 19324, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174669,7 +174492,7 @@ }, { "str": "octarian", - "token_id": 19341, + "token_id": 19325, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174678,7 +174501,7 @@ }, { "str": "boss", - "token_id": 19342, + "token_id": 19326, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174687,7 +174510,7 @@ }, { "str": "dj", - "token_id": 19343, + "token_id": 19327, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174696,7 +174519,7 @@ }, { "str": "octavio", - "token_id": 19344, + "token_id": 19328, "o_rev_id": 1131820454, "in": [], "out": [ @@ -174705,23 +174528,23 @@ }, { "str": ",", - "token_id": 19345, + "token_id": 19329, "o_rev_id": 1131820454, "in": [], "out": [ - 1327601720 + 1236243909 ] }, { "str": "cuttlefish", - "token_id": 19346, + "token_id": 19330, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "and", - "token_id": 19347, + "token_id": 19331, "o_rev_id": 1131820454, "in": [ 1327668959 @@ -174733,21 +174556,21 @@ }, { "str": "agent", - "token_id": 19348, + "token_id": 19332, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "3", - "token_id": 19349, + "token_id": 19333, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "fall", - "token_id": 19350, + "token_id": 19334, "o_rev_id": 1131820454, "in": [ 1327668959 @@ -174758,49 +174581,49 @@ }, { "str": "into", - "token_id": 19351, + "token_id": 19335, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "alterna", - "token_id": 19352, + "token_id": 19336, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": ".", - "token_id": 19353, + "token_id": 19337, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "agent", - "token_id": 19354, + "token_id": 19338, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "3", - "token_id": 19355, + "token_id": 19339, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "meets", - "token_id": 19356, + "token_id": 19340, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "callie", - "token_id": 19357, + "token_id": 19341, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174811,7 +174634,7 @@ }, { "str": "and", - "token_id": 19358, + "token_id": 19342, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174822,7 +174645,7 @@ }, { "str": "marie", - "token_id": 19359, + "token_id": 19343, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174833,28 +174656,28 @@ }, { "str": "of", - "token_id": 19360, + "token_id": 19344, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "new", - "token_id": 19361, + "token_id": 19345, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "squidbeak", - "token_id": 19362, + "token_id": 19346, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19363, + "token_id": 19347, "o_rev_id": 1131820454, "in": [ 1216768014 @@ -174865,42 +174688,42 @@ }, { "str": "as", - "token_id": 19364, + "token_id": 19348, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "well", - "token_id": 19365, + "token_id": 19349, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "as", - "token_id": 19366, + "token_id": 19350, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "the", - "token_id": 19367, + "token_id": 19351, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "captain", - "token_id": 19368, + "token_id": 19352, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": ",", - "token_id": 19369, + "token_id": 19353, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174911,7 +174734,7 @@ }, { "str": "the", - "token_id": 19370, + "token_id": 19354, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174922,7 +174745,7 @@ }, { "str": "protagonist", - "token_id": 19371, + "token_id": 19355, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174933,7 +174756,7 @@ }, { "str": "of", - "token_id": 19372, + "token_id": 19356, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174944,7 +174767,7 @@ }, { "str": "[[", - "token_id": 19373, + "token_id": 19357, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174955,7 +174778,7 @@ }, { "str": "splatoon", - "token_id": 19374, + "token_id": 19358, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174966,7 +174789,7 @@ }, { "str": "(", - "token_id": 19375, + "token_id": 19359, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174977,7 +174800,7 @@ }, { "str": "video", - "token_id": 19376, + "token_id": 19360, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174988,7 +174811,7 @@ }, { "str": "game", - "token_id": 19377, + "token_id": 19361, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -174999,7 +174822,7 @@ }, { "str": ")", - "token_id": 19378, + "token_id": 19362, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175010,7 +174833,7 @@ }, { "str": "|", - "token_id": 19379, + "token_id": 19363, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175021,7 +174844,7 @@ }, { "str": "the", - "token_id": 19380, + "token_id": 19364, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175032,7 +174855,7 @@ }, { "str": "first", - "token_id": 19381, + "token_id": 19365, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175043,7 +174866,7 @@ }, { "str": "game", - "token_id": 19382, + "token_id": 19366, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175054,7 +174877,7 @@ }, { "str": "]]", - "token_id": 19383, + "token_id": 19367, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175065,56 +174888,56 @@ }, { "str": "realizes", - "token_id": 19384, + "token_id": 19368, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "that", - "token_id": 19385, + "token_id": 19369, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "cuttlefish", - "token_id": 19386, + "token_id": 19370, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "has", - "token_id": 19387, + "token_id": 19371, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "gone", - "token_id": 19388, + "token_id": 19372, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "missing", - "token_id": 19389, + "token_id": 19373, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": ".", - "token_id": 19390, + "token_id": 19374, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "they", - "token_id": 19391, + "token_id": 19375, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175123,7 +174946,7 @@ }, { "str": "are", - "token_id": 19392, + "token_id": 19376, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175132,42 +174955,42 @@ }, { "str": "approached", - "token_id": 19393, + "token_id": 19377, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "by", - "token_id": 19394, + "token_id": 19378, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "deep", - "token_id": 19395, + "token_id": 19379, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "cut", - "token_id": 19396, + "token_id": 19380, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "are", - "token_id": 19397, + "token_id": 19381, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "searching", - "token_id": 19398, + "token_id": 19382, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175176,28 +174999,28 @@ }, { "str": "alterna", - "token_id": 19399, + "token_id": 19383, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "for", - "token_id": 19400, + "token_id": 19384, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "treasure", - "token_id": 19401, + "token_id": 19385, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "when", - "token_id": 19402, + "token_id": 19386, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175206,7 +175029,7 @@ }, { "str": "cuttlefish", - "token_id": 19403, + "token_id": 19387, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175215,7 +175038,7 @@ }, { "str": "reveals", - "token_id": 19404, + "token_id": 19388, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175224,7 +175047,7 @@ }, { "str": "that", - "token_id": 19405, + "token_id": 19389, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175233,7 +175056,7 @@ }, { "str": "he", - "token_id": 19406, + "token_id": 19390, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175242,7 +175065,7 @@ }, { "str": "has", - "token_id": 19407, + "token_id": 19391, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175251,7 +175074,7 @@ }, { "str": "been", - "token_id": 19408, + "token_id": 19392, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175260,7 +175083,7 @@ }, { "str": "kidnapped", - "token_id": 19409, + "token_id": 19393, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175269,7 +175092,7 @@ }, { "str": "battles", - "token_id": 19410, + "token_id": 19394, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175278,14 +175101,14 @@ }, { "str": "the", - "token_id": 19411, + "token_id": 19395, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "three", - "token_id": 19412, + "token_id": 19396, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175294,7 +175117,7 @@ }, { "str": "members", - "token_id": 19413, + "token_id": 19397, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175303,7 +175126,7 @@ }, { "str": "of", - "token_id": 19414, + "token_id": 19398, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175312,21 +175135,21 @@ }, { "str": "deep", - "token_id": 19415, + "token_id": 19399, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "cut", - "token_id": 19416, + "token_id": 19400, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "throughout", - "token_id": 19417, + "token_id": 19401, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175335,7 +175158,7 @@ }, { "str": "alterna", - "token_id": 19418, + "token_id": 19402, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175344,14 +175167,14 @@ }, { "str": ",", - "token_id": 19419, + "token_id": 19403, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "though", - "token_id": 19420, + "token_id": 19404, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175360,88 +175183,84 @@ }, { "str": "it", - "token_id": 19421, + "token_id": 19405, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "is", - "token_id": 19422, + "token_id": 19406, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "revealed", - "token_id": 19423, + "token_id": 19407, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "that", - "token_id": 19424, + "token_id": 19408, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "mr", - "token_id": 19425, + "token_id": 19409, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": ".", - "token_id": 19426, + "token_id": 19410, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "grizz", - "token_id": 19427, + "token_id": 19411, "o_rev_id": 1131820454, - "in": [ - 1327668959 - ], - "out": [ - 1327622667 - ] + "in": [], + "out": [] }, { "str": ",", - "token_id": 19428, + "token_id": 19412, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "ceo", - "token_id": 19429, + "token_id": 19413, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "of", - "token_id": 19430, + "token_id": 19414, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "grizzco", - "token_id": 19431, + "token_id": 19415, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "and", - "token_id": 19432, + "token_id": 19416, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175452,7 +175271,7 @@ }, { "str": "organizer", - "token_id": 19433, + "token_id": 19417, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175463,7 +175282,7 @@ }, { "str": "of", - "token_id": 19434, + "token_id": 19418, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175474,33 +175293,29 @@ }, { "str": "salmon", - "token_id": 19435, + "token_id": 19419, "o_rev_id": 1131820454, "in": [ - 1148919560, - 1327668959 + 1148919560 ], "out": [ - 1148918924, - 1327622667 + 1148918924 ] }, { "str": "run", - "token_id": 19436, + "token_id": 19420, "o_rev_id": 1131820454, "in": [ - 1148919560, - 1327668959 + 1148919560 ], "out": [ - 1148918924, - 1327622667 + 1148918924 ] }, { "str": ",", - "token_id": 19437, + "token_id": 19421, "o_rev_id": 1131820454, "in": [ 1148919560 @@ -175511,7 +175326,7 @@ }, { "str": "had", - "token_id": 19438, + "token_id": 19422, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175520,14 +175335,14 @@ }, { "str": "kidnapped", - "token_id": 19439, + "token_id": 19423, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "him", - "token_id": 19440, + "token_id": 19424, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175536,7 +175351,7 @@ }, { "str": ",", - "token_id": 19441, + "token_id": 19425, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175545,7 +175360,7 @@ }, { "str": "aiming", - "token_id": 19442, + "token_id": 19426, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175554,14 +175369,14 @@ }, { "str": "to", - "token_id": 19443, + "token_id": 19427, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "spread", - "token_id": 19444, + "token_id": 19428, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175570,21 +175385,21 @@ }, { "str": "mammal", - "token_id": 19445, + "token_id": 19429, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "life", - "token_id": 19446, + "token_id": 19430, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "across", - "token_id": 19447, + "token_id": 19431, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175593,7 +175408,7 @@ }, { "str": "the", - "token_id": 19448, + "token_id": 19432, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175602,7 +175417,7 @@ }, { "str": "planet", - "token_id": 19449, + "token_id": 19433, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175611,21 +175426,21 @@ }, { "str": "by", - "token_id": 19450, + "token_id": 19434, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "converting", - "token_id": 19451, + "token_id": 19435, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "all", - "token_id": 19452, + "token_id": 19436, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175634,7 +175449,7 @@ }, { "str": "other", - "token_id": 19453, + "token_id": 19437, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175643,7 +175458,7 @@ }, { "str": "life", - "token_id": 19454, + "token_id": 19438, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175652,7 +175467,7 @@ }, { "str": "into", - "token_id": 19455, + "token_id": 19439, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175661,7 +175476,7 @@ }, { "str": "mammals", - "token_id": 19456, + "token_id": 19440, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175670,7 +175485,7 @@ }, { "str": "with", - "token_id": 19457, + "token_id": 19441, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175679,14 +175494,14 @@ }, { "str": "the", - "token_id": 19458, + "token_id": 19442, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "fuzzy", - "token_id": 19459, + "token_id": 19443, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175695,21 +175510,21 @@ }, { "str": "ooze", - "token_id": 19460, + "token_id": 19444, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": ".", - "token_id": 19461, + "token_id": 19445, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "when", - "token_id": 19462, + "token_id": 19446, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175718,7 +175533,7 @@ }, { "str": "all", - "token_id": 19463, + "token_id": 19447, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175727,7 +175542,7 @@ }, { "str": "members", - "token_id": 19464, + "token_id": 19448, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175736,7 +175551,7 @@ }, { "str": "of", - "token_id": 19465, + "token_id": 19449, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175745,21 +175560,21 @@ }, { "str": "deep", - "token_id": 19466, + "token_id": 19450, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "cut", - "token_id": 19467, + "token_id": 19451, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "all", - "token_id": 19468, + "token_id": 19452, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175768,7 +175583,7 @@ }, { "str": "defeated", - "token_id": 19469, + "token_id": 19453, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175777,7 +175592,7 @@ }, { "str": ",", - "token_id": 19470, + "token_id": 19454, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175786,7 +175601,7 @@ }, { "str": "they", - "token_id": 19471, + "token_id": 19455, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175795,7 +175610,7 @@ }, { "str": "reveal", - "token_id": 19472, + "token_id": 19456, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175804,7 +175619,7 @@ }, { "str": "their", - "token_id": 19473, + "token_id": 19457, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175813,7 +175628,7 @@ }, { "str": "intention", - "token_id": 19474, + "token_id": 19458, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175822,7 +175637,7 @@ }, { "str": "to", - "token_id": 19475, + "token_id": 19459, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175831,7 +175646,7 @@ }, { "str": "spread", - "token_id": 19476, + "token_id": 19460, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175840,7 +175655,7 @@ }, { "str": "the", - "token_id": 19477, + "token_id": 19461, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175849,7 +175664,7 @@ }, { "str": "treasure", - "token_id": 19478, + "token_id": 19462, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175858,7 +175673,7 @@ }, { "str": "among", - "token_id": 19479, + "token_id": 19463, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175867,7 +175682,7 @@ }, { "str": "the", - "token_id": 19480, + "token_id": 19464, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175876,7 +175691,7 @@ }, { "str": "poor", - "token_id": 19481, + "token_id": 19465, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175885,7 +175700,7 @@ }, { "str": ",", - "token_id": 19482, + "token_id": 19466, "o_rev_id": 1131820454, "in": [ 1327668959 @@ -175897,7 +175712,7 @@ }, { "str": "and", - "token_id": 19483, + "token_id": 19467, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175906,7 +175721,7 @@ }, { "str": "team", - "token_id": 19484, + "token_id": 19468, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175915,7 +175730,7 @@ }, { "str": "up", - "token_id": 19485, + "token_id": 19469, "o_rev_id": 1131820454, "in": [], "out": [ @@ -175924,21 +175739,21 @@ }, { "str": "with", - "token_id": 19486, + "token_id": 19470, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "the", - "token_id": 19487, + "token_id": 19471, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19488, + "token_id": 19472, "o_rev_id": 1131820454, "in": [ 1216768014 @@ -175949,56 +175764,56 @@ }, { "str": "to", - "token_id": 19489, + "token_id": 19473, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "defeat", - "token_id": 19490, + "token_id": 19474, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "grizz", - "token_id": 19491, + "token_id": 19475, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": ".", - "token_id": 19492, + "token_id": 19476, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "after", - "token_id": 19493, + "token_id": 19477, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "using", - "token_id": 19494, + "token_id": 19478, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "the", - "token_id": 19495, + "token_id": 19479, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "treasures", - "token_id": 19496, + "token_id": 19480, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176007,28 +175822,28 @@ }, { "str": "to", - "token_id": 19497, + "token_id": 19481, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "assemble", - "token_id": 19498, + "token_id": 19482, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "a", - "token_id": 19499, + "token_id": 19483, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "lawnmower", - "token_id": 19500, + "token_id": 19484, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176037,14 +175852,14 @@ }, { "str": "and", - "token_id": 19501, + "token_id": 19485, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "reach", - "token_id": 19502, + "token_id": 19486, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176053,7 +175868,7 @@ }, { "str": "grizz", - "token_id": 19503, + "token_id": 19487, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176062,7 +175877,7 @@ }, { "str": ",", - "token_id": 19504, + "token_id": 19488, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176071,7 +175886,7 @@ }, { "str": "they", - "token_id": 19505, + "token_id": 19489, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176080,7 +175895,7 @@ }, { "str": "realize", - "token_id": 19506, + "token_id": 19490, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176089,7 +175904,7 @@ }, { "str": "that", - "token_id": 19507, + "token_id": 19491, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176098,7 +175913,7 @@ }, { "str": "he", - "token_id": 19508, + "token_id": 19492, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176107,7 +175922,7 @@ }, { "str": "has", - "token_id": 19509, + "token_id": 19493, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176116,7 +175931,7 @@ }, { "str": "shrunk", - "token_id": 19510, + "token_id": 19494, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176125,14 +175940,14 @@ }, { "str": "cuttlefish", - "token_id": 19511, + "token_id": 19495, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "into", - "token_id": 19512, + "token_id": 19496, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176141,7 +175956,7 @@ }, { "str": "a", - "token_id": 19513, + "token_id": 19497, "o_rev_id": 1131820454, "in": [ 1154926670 @@ -176153,7 +175968,7 @@ }, { "str": "small", - "token_id": 19514, + "token_id": 19498, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176162,7 +175977,7 @@ }, { "str": "squid", - "token_id": 19515, + "token_id": 19499, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176171,21 +175986,21 @@ }, { "str": ",", - "token_id": 19516, + "token_id": 19500, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "and", - "token_id": 19517, + "token_id": 19501, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "chase", - "token_id": 19518, + "token_id": 19502, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176194,7 +176009,7 @@ }, { "str": "grizz", - "token_id": 19519, + "token_id": 19503, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176203,7 +176018,7 @@ }, { "str": "into", - "token_id": 19520, + "token_id": 19504, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176212,7 +176027,7 @@ }, { "str": "space", - "token_id": 19521, + "token_id": 19505, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176221,7 +176036,7 @@ }, { "str": ".", - "token_id": 19522, + "token_id": 19506, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176230,21 +176045,21 @@ }, { "str": "with", - "token_id": 19523, + "token_id": 19507, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "the", - "token_id": 19524, + "token_id": 19508, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "help", - "token_id": 19525, + "token_id": 19509, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176253,7 +176068,7 @@ }, { "str": "of", - "token_id": 19526, + "token_id": 19510, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176262,7 +176077,7 @@ }, { "str": "little", - "token_id": 19527, + "token_id": 19511, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176271,7 +176086,7 @@ }, { "str": "buddy", - "token_id": 19528, + "token_id": 19512, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176280,14 +176095,14 @@ }, { "str": "and", - "token_id": 19529, + "token_id": 19513, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "dj", - "token_id": 19530, + "token_id": 19514, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176296,7 +176111,7 @@ }, { "str": "octavio", - "token_id": 19531, + "token_id": 19515, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176305,7 +176120,7 @@ }, { "str": ",", - "token_id": 19532, + "token_id": 19516, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176314,21 +176129,21 @@ }, { "str": "grizz", - "token_id": 19533, + "token_id": 19517, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "is", - "token_id": 19534, + "token_id": 19518, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "defeated", - "token_id": 19535, + "token_id": 19519, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176337,7 +176152,7 @@ }, { "str": ",", - "token_id": 19536, + "token_id": 19520, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176346,7 +176161,7 @@ }, { "str": "stopping", - "token_id": 19537, + "token_id": 19521, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176355,7 +176170,7 @@ }, { "str": "his", - "token_id": 19538, + "token_id": 19522, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176364,7 +176179,7 @@ }, { "str": "plan", - "token_id": 19539, + "token_id": 19523, "o_rev_id": 1131820454, "in": [], "out": [ @@ -176373,14 +176188,14 @@ }, { "str": ".", - "token_id": 19540, + "token_id": 19524, "o_rev_id": 1131820454, "in": [], "out": [] }, { "str": "stopping", - "token_id": 19541, + "token_id": 19525, "o_rev_id": 1131863954, "in": [ 1229566085 @@ -176391,7 +176206,7 @@ }, { "str": "to", - "token_id": 19542, + "token_id": 19526, "o_rev_id": 1131863954, "in": [ 1229566085 @@ -176402,7 +176217,7 @@ }, { "str": "clear", - "token_id": 19543, + "token_id": 19527, "o_rev_id": 1131863954, "in": [ 1229566085 @@ -176413,7 +176228,7 @@ }, { "str": "weapon", - "token_id": 19544, + "token_id": 19528, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176422,287 +176237,287 @@ }, { "str": "one", - "token_id": 19545, + "token_id": 19529, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "|", - "token_id": 19546, + "token_id": 19530, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "title", - "token_id": 19547, + "token_id": 19531, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "=", - "token_id": 19548, + "token_id": 19532, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 19549, + "token_id": 19533, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "support", - "token_id": 19550, + "token_id": 19534, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ":", - "token_id": 19551, + "token_id": 19535, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "how", - "token_id": 19552, + "token_id": 19536, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "to", - "token_id": 19553, + "token_id": 19537, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "update", - "token_id": 19554, + "token_id": 19538, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19555, + "token_id": 19539, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "3", - "token_id": 19556, + "token_id": 19540, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "|", - "token_id": 19557, + "token_id": 19541, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "url", - "token_id": 19558, + "token_id": 19542, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "=", - "token_id": 19559, + "token_id": 19543, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "https", - "token_id": 19560, + "token_id": 19544, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ":", - "token_id": 19561, + "token_id": 19545, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19562, + "token_id": 19546, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19563, + "token_id": 19547, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "en", - "token_id": 19564, + "token_id": 19548, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19565, + "token_id": 19549, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "americas", - "token_id": 19566, + "token_id": 19550, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19567, + "token_id": 19551, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "support", - "token_id": 19568, + "token_id": 19552, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ".", - "token_id": 19569, + "token_id": 19553, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 19570, + "token_id": 19554, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ".", - "token_id": 19571, + "token_id": 19555, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "com", - "token_id": 19572, + "token_id": 19556, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19573, + "token_id": 19557, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "app", - "token_id": 19574, + "token_id": 19558, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19575, + "token_id": 19559, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "answers", - "token_id": 19576, + "token_id": 19560, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19577, + "token_id": 19561, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "detail", - "token_id": 19578, + "token_id": 19562, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19579, + "token_id": 19563, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "a", - "token_id": 19580, + "token_id": 19564, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "_", - "token_id": 19581, + "token_id": 19565, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "id", - "token_id": 19582, + "token_id": 19566, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19583, + "token_id": 19567, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "59461", - "token_id": 19584, + "token_id": 19568, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "|", - "token_id": 19585, + "token_id": 19569, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176711,7 +176526,7 @@ }, { "str": "access", - "token_id": 19586, + "token_id": 19570, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176720,14 +176535,14 @@ }, { "str": "-", - "token_id": 19587, + "token_id": 19571, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "date", - "token_id": 19588, + "token_id": 19572, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176736,7 +176551,7 @@ }, { "str": "=", - "token_id": 19589, + "token_id": 19573, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176745,23 +176560,26 @@ }, { "str": "2023", - "token_id": 19590, + "token_id": 19574, "o_rev_id": 1131863954, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1202120168 ] }, { "str": "-", - "token_id": 19591, + "token_id": 19575, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "01", - "token_id": 19592, + "token_id": 19576, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176770,14 +176588,14 @@ }, { "str": "-", - "token_id": 19593, + "token_id": 19577, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "06", - "token_id": 19594, + "token_id": 19578, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176786,7 +176604,7 @@ }, { "str": "|", - "token_id": 19595, + "token_id": 19579, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176795,7 +176613,7 @@ }, { "str": "website", - "token_id": 19596, + "token_id": 19580, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176804,7 +176622,7 @@ }, { "str": "=", - "token_id": 19597, + "token_id": 19581, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176813,7 +176631,7 @@ }, { "str": "en", - "token_id": 19598, + "token_id": 19582, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176822,7 +176640,7 @@ }, { "str": "-", - "token_id": 19599, + "token_id": 19583, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176831,7 +176649,7 @@ }, { "str": "americas", - "token_id": 19600, + "token_id": 19584, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176840,7 +176658,7 @@ }, { "str": "-", - "token_id": 19601, + "token_id": 19585, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176849,14 +176667,14 @@ }, { "str": "support", - "token_id": 19602, + "token_id": 19586, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ".", - "token_id": 19603, + "token_id": 19587, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176865,7 +176683,7 @@ }, { "str": "nintendo", - "token_id": 19604, + "token_id": 19588, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176874,7 +176692,7 @@ }, { "str": ".", - "token_id": 19605, + "token_id": 19589, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176883,7 +176701,7 @@ }, { "str": "com", - "token_id": 19606, + "token_id": 19590, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176892,7 +176710,7 @@ }, { "str": "}}", - "token_id": 19607, + "token_id": 19591, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176901,7 +176719,7 @@ }, { "str": "<", - "token_id": 19608, + "token_id": 19592, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176910,14 +176728,14 @@ }, { "str": "/", - "token_id": 19609, + "token_id": 19593, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "ref", - "token_id": 19610, + "token_id": 19594, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176926,7 +176744,7 @@ }, { "str": ">", - "token_id": 19611, + "token_id": 19595, "o_rev_id": 1131863954, "in": [], "out": [ @@ -176935,203 +176753,203 @@ }, { "str": "<", - "token_id": 19612, + "token_id": 19596, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "ref", - "token_id": 19613, + "token_id": 19597, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ">", - "token_id": 19614, + "token_id": 19598, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "{{", - "token_id": 19615, + "token_id": 19599, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "cite", - "token_id": 19616, + "token_id": 19600, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "web", - "token_id": 19617, + "token_id": 19601, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "squid", - "token_id": 19618, + "token_id": 19602, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "research", - "token_id": 19619, + "token_id": 19603, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "lab", - "token_id": 19620, + "token_id": 19604, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "dives", - "token_id": 19621, + "token_id": 19605, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "deep", - "token_id": 19622, + "token_id": 19606, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "into", - "token_id": 19623, + "token_id": 19607, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "™", - "token_id": 19624, + "token_id": 19608, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19625, + "token_id": 19609, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 19626, + "token_id": 19610, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "en", - "token_id": 19627, + "token_id": 19611, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "news", - "token_id": 19628, + "token_id": 19612, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19629, + "token_id": 19613, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "squid", - "token_id": 19630, + "token_id": 19614, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "research", - "token_id": 19631, + "token_id": 19615, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "lab", - "token_id": 19632, + "token_id": 19616, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "dives", - "token_id": 19633, + "token_id": 19617, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "deep", - "token_id": 19634, + "token_id": 19618, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "into", - "token_id": 19635, + "token_id": 19619, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "the", - "token_id": 19636, + "token_id": 19620, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19637, + "token_id": 19621, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "splatlands", - "token_id": 19638, + "token_id": 19622, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19639, + "token_id": 19623, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "2023", - "token_id": 19640, + "token_id": 19624, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177140,7 +176958,7 @@ }, { "str": "01", - "token_id": 19641, + "token_id": 19625, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177149,7 +176967,7 @@ }, { "str": "06", - "token_id": 19642, + "token_id": 19626, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177158,14 +176976,14 @@ }, { "str": "splatoon", - "token_id": 19643, + "token_id": 19627, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ".", - "token_id": 19644, + "token_id": 19628, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177174,7 +176992,7 @@ }, { "str": "nintendo", - "token_id": 19645, + "token_id": 19629, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177183,7 +177001,7 @@ }, { "str": ".", - "token_id": 19646, + "token_id": 19630, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177192,7 +177010,7 @@ }, { "str": "com", - "token_id": 19647, + "token_id": 19631, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177201,105 +177019,105 @@ }, { "str": "based", - "token_id": 19648, + "token_id": 19632, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "on", - "token_id": 19649, + "token_id": 19633, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "turf", - "token_id": 19650, + "token_id": 19634, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "war", - "token_id": 19651, + "token_id": 19635, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "<", - "token_id": 19652, + "token_id": 19636, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "ref", - "token_id": 19653, + "token_id": 19637, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ">", - "token_id": 19654, + "token_id": 19638, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "{{", - "token_id": 19655, + "token_id": 19639, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "cite", - "token_id": 19656, + "token_id": 19640, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "web", - "token_id": 19657, + "token_id": 19641, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "|", - "token_id": 19658, + "token_id": 19642, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "date", - "token_id": 19659, + "token_id": 19643, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "=", - "token_id": 19660, + "token_id": 19644, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "2022", - "token_id": 19661, + "token_id": 19645, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19662, + "token_id": 19646, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177308,7 +177126,7 @@ }, { "str": "08", - "token_id": 19663, + "token_id": 19647, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177317,16 +177135,14 @@ }, { "str": "-", - "token_id": 19664, + "token_id": 19648, "o_rev_id": 1131863954, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "10", - "token_id": 19665, + "token_id": 19649, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177335,427 +177151,427 @@ }, { "str": "|", - "token_id": 19666, + "token_id": 19650, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "title", - "token_id": 19667, + "token_id": 19651, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "=", - "token_id": 19668, + "token_id": 19652, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "catch", - "token_id": 19669, + "token_id": 19653, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "up", - "token_id": 19670, + "token_id": 19654, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "on", - "token_id": 19671, + "token_id": 19655, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "all", - "token_id": 19672, + "token_id": 19656, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "the", - "token_id": 19673, + "token_id": 19657, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "latest", - "token_id": 19674, + "token_id": 19658, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "from", - "token_id": 19675, + "token_id": 19659, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "the", - "token_id": 19676, + "token_id": 19660, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19677, + "token_id": 19661, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "3", - "token_id": 19678, + "token_id": 19662, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "direct", - "token_id": 19679, + "token_id": 19663, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "|", - "token_id": 19680, + "token_id": 19664, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "url", - "token_id": 19681, + "token_id": 19665, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "=", - "token_id": 19682, + "token_id": 19666, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "https", - "token_id": 19683, + "token_id": 19667, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ":", - "token_id": 19684, + "token_id": 19668, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19685, + "token_id": 19669, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19686, + "token_id": 19670, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19687, + "token_id": 19671, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ".", - "token_id": 19688, + "token_id": 19672, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 19689, + "token_id": 19673, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ".", - "token_id": 19690, + "token_id": 19674, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "com", - "token_id": 19691, + "token_id": 19675, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19692, + "token_id": 19676, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "en", - "token_id": 19693, + "token_id": 19677, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19694, + "token_id": 19678, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "news", - "token_id": 19695, + "token_id": 19679, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19696, + "token_id": 19680, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "catch", - "token_id": 19697, + "token_id": 19681, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19698, + "token_id": 19682, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "up", - "token_id": 19699, + "token_id": 19683, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19700, + "token_id": 19684, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "on", - "token_id": 19701, + "token_id": 19685, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19702, + "token_id": 19686, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "all", - "token_id": 19703, + "token_id": 19687, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19704, + "token_id": 19688, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "the", - "token_id": 19705, + "token_id": 19689, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19706, + "token_id": 19690, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "latest", - "token_id": 19707, + "token_id": 19691, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19708, + "token_id": 19692, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "from", - "token_id": 19709, + "token_id": 19693, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19710, + "token_id": 19694, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "the", - "token_id": 19711, + "token_id": 19695, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19712, + "token_id": 19696, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19713, + "token_id": 19697, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19714, + "token_id": 19698, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "3", - "token_id": 19715, + "token_id": 19699, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19716, + "token_id": 19700, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "direct", - "token_id": 19717, + "token_id": 19701, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "/", - "token_id": 19718, + "token_id": 19702, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "|", - "token_id": 19719, + "token_id": 19703, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "access", - "token_id": 19720, + "token_id": 19704, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19721, + "token_id": 19705, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "date", - "token_id": 19722, + "token_id": 19706, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "=", - "token_id": 19723, + "token_id": 19707, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "2023", - "token_id": 19724, + "token_id": 19708, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "-", - "token_id": 19725, + "token_id": 19709, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "01", - "token_id": 19726, + "token_id": 19710, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177764,14 +177580,14 @@ }, { "str": "-", - "token_id": 19727, + "token_id": 19711, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "06", - "token_id": 19728, + "token_id": 19712, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177780,35 +177596,35 @@ }, { "str": "|", - "token_id": 19729, + "token_id": 19713, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "website", - "token_id": 19730, + "token_id": 19714, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "=", - "token_id": 19731, + "token_id": 19715, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 19732, + "token_id": 19716, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": ".", - "token_id": 19733, + "token_id": 19717, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177817,7 +177633,7 @@ }, { "str": "nintendo", - "token_id": 19734, + "token_id": 19718, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177826,7 +177642,7 @@ }, { "str": ".", - "token_id": 19735, + "token_id": 19719, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177835,7 +177651,7 @@ }, { "str": "com", - "token_id": 19736, + "token_id": 19720, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177844,35 +177660,35 @@ }, { "str": "|", - "token_id": 19737, + "token_id": 19721, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "language", - "token_id": 19738, + "token_id": 19722, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "=", - "token_id": 19739, + "token_id": 19723, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "en", - "token_id": 19740, + "token_id": 19724, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "}}", - "token_id": 19741, + "token_id": 19725, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177881,7 +177697,7 @@ }, { "str": "<", - "token_id": 19742, + "token_id": 19726, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177890,14 +177706,14 @@ }, { "str": "/", - "token_id": 19743, + "token_id": 19727, "o_rev_id": 1131863954, "in": [], "out": [] }, { "str": "ref", - "token_id": 19744, + "token_id": 19728, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177906,7 +177722,7 @@ }, { "str": ">", - "token_id": 19745, + "token_id": 19729, "o_rev_id": 1131863954, "in": [], "out": [ @@ -177915,35 +177731,35 @@ }, { "str": ",", - "token_id": 19746, + "token_id": 19730, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "of", - "token_id": 19747, + "token_id": 19731, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "four", - "token_id": 19748, + "token_id": 19732, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "players", - "token_id": 19749, + "token_id": 19733, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "aims", - "token_id": 19750, + "token_id": 19734, "o_rev_id": 1131883866, "in": [], "out": [ @@ -177952,7 +177768,7 @@ }, { "str": "defend", - "token_id": 19751, + "token_id": 19735, "o_rev_id": 1131883866, "in": [], "out": [ @@ -177961,63 +177777,63 @@ }, { "str": "\"", - "token_id": 19752, + "token_id": 19736, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "ultra", - "token_id": 19753, + "token_id": 19737, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "signal", - "token_id": 19754, + "token_id": 19738, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "\"", - "token_id": 19755, + "token_id": 19739, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "from", - "token_id": 19756, + "token_id": 19740, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "two", - "token_id": 19757, + "token_id": 19741, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "teams", - "token_id": 19758, + "token_id": 19742, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "of", - "token_id": 19759, + "token_id": 19743, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "two", - "token_id": 19760, + "token_id": 19744, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178026,7 +177842,7 @@ }, { "str": "\"", - "token_id": 19761, + "token_id": 19745, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178035,14 +177851,14 @@ }, { "str": "attacking", - "token_id": 19762, + "token_id": 19746, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "\"", - "token_id": 19763, + "token_id": 19747, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178051,21 +177867,21 @@ }, { "str": "players", - "token_id": 19764, + "token_id": 19748, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": ".", - "token_id": 19765, + "token_id": 19749, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "if", - "token_id": 19766, + "token_id": 19750, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178074,42 +177890,42 @@ }, { "str": "an", - "token_id": 19767, + "token_id": 19751, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "attacking", - "token_id": 19768, + "token_id": 19752, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "team", - "token_id": 19769, + "token_id": 19753, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "takes", - "token_id": 19770, + "token_id": 19754, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": ",", - "token_id": 19771, + "token_id": 19755, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "the", - "token_id": 19772, + "token_id": 19756, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178118,7 +177934,7 @@ }, { "str": "amount", - "token_id": 19773, + "token_id": 19757, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178127,14 +177943,14 @@ }, { "str": "of", - "token_id": 19774, + "token_id": 19758, "o_rev_id": 1131883866, "in": [], "out": [] }, { "str": "area", - "token_id": 19775, + "token_id": 19759, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178143,7 +177959,7 @@ }, { "str": "they", - "token_id": 19776, + "token_id": 19760, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178152,7 +177968,7 @@ }, { "str": "have", - "token_id": 19777, + "token_id": 19761, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178161,7 +177977,7 @@ }, { "str": "inked", - "token_id": 19778, + "token_id": 19762, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178170,7 +177986,7 @@ }, { "str": "automatically", - "token_id": 19779, + "token_id": 19763, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178179,7 +177995,7 @@ }, { "str": "increases", - "token_id": 19780, + "token_id": 19764, "o_rev_id": 1131883866, "in": [], "out": [ @@ -178188,7 +178004,7 @@ }, { "str": "are", - "token_id": 19781, + "token_id": 19765, "o_rev_id": 1131916954, "in": [], "out": [ @@ -178197,7 +178013,7 @@ }, { "str": "in", - "token_id": 19782, + "token_id": 19766, "o_rev_id": 1131936270, "in": [ 1178773007 @@ -178208,7 +178024,7 @@ }, { "str": "'", - "token_id": 19783, + "token_id": 19767, "o_rev_id": 1131936270, "in": [ 1178773007 @@ -178219,7 +178035,7 @@ }, { "str": "'", - "token_id": 19784, + "token_id": 19768, "o_rev_id": 1131936270, "in": [ 1178773007 @@ -178230,7 +178046,7 @@ }, { "str": "splatoon", - "token_id": 19785, + "token_id": 19769, "o_rev_id": 1131936270, "in": [ 1178773007 @@ -178241,7 +178057,7 @@ }, { "str": "2", - "token_id": 19786, + "token_id": 19770, "o_rev_id": 1131936270, "in": [ 1178773007 @@ -178252,7 +178068,7 @@ }, { "str": "'", - "token_id": 19787, + "token_id": 19771, "o_rev_id": 1131936270, "in": [ 1178773007 @@ -178263,7 +178079,7 @@ }, { "str": "'", - "token_id": 19788, + "token_id": 19772, "o_rev_id": 1131936270, "in": [ 1178773007 @@ -178274,7 +178090,7 @@ }, { "str": "money", - "token_id": 19789, + "token_id": 19773, "o_rev_id": 1131953542, "in": [], "out": [ @@ -178283,105 +178099,105 @@ }, { "str": "it", - "token_id": 19790, + "token_id": 19774, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "will", - "token_id": 19791, + "token_id": 19775, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "summon", - "token_id": 19792, + "token_id": 19776, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "\"", - "token_id": 19793, + "token_id": 19777, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "sprinkler", - "token_id": 19794, + "token_id": 19778, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "doom", - "token_id": 19795, + "token_id": 19779, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "\"", - "token_id": 19796, + "token_id": 19780, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "which", - "token_id": 19797, + "token_id": 19781, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "will", - "token_id": 19798, + "token_id": 19782, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "ink", - "token_id": 19799, + "token_id": 19783, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "a", - "token_id": 19800, + "token_id": 19784, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "portion", - "token_id": 19801, + "token_id": 19785, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "of", - "token_id": 19802, + "token_id": 19786, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "the", - "token_id": 19803, + "token_id": 19787, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "attacking", - "token_id": 19804, + "token_id": 19788, "o_rev_id": 1131954930, "in": [], "out": [ @@ -178390,7 +178206,7 @@ }, { "str": "team", - "token_id": 19805, + "token_id": 19789, "o_rev_id": 1131954930, "in": [], "out": [ @@ -178399,21 +178215,21 @@ }, { "str": "'", - "token_id": 19806, + "token_id": 19790, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "s", - "token_id": 19807, + "token_id": 19791, "o_rev_id": 1131954930, "in": [], "out": [] }, { "str": "side", - "token_id": 19808, + "token_id": 19792, "o_rev_id": 1131954930, "in": [], "out": [ @@ -178422,7 +178238,7 @@ }, { "str": "[[", - "token_id": 19809, + "token_id": 19793, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178435,7 +178251,7 @@ }, { "str": "list", - "token_id": 19810, + "token_id": 19794, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178448,22 +178264,20 @@ }, { "str": "of", - "token_id": 19811, + "token_id": 19795, "o_rev_id": 1132012904, "in": [ 1148919560, - 1149896665, - 1202097960 + 1149896665 ], "out": [ 1148919536, - 1149896621, - 1202071552 + 1149896621 ] }, { "str": "best", - "token_id": 19812, + "token_id": 19796, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178476,7 +178290,7 @@ }, { "str": "-", - "token_id": 19813, + "token_id": 19797, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178489,22 +178303,20 @@ }, { "str": "selling", - "token_id": 19814, + "token_id": 19798, "o_rev_id": 1132012904, "in": [ 1148919560, - 1149896665, - 1202097960 + 1149896665 ], "out": [ 1148919536, - 1149896621, - 1202071552 + 1149896621 ] }, { "str": "nintendo", - "token_id": 19815, + "token_id": 19799, "o_rev_id": 1132012904, "in": [ 1148919560 @@ -178515,7 +178327,7 @@ }, { "str": "switch", - "token_id": 19816, + "token_id": 19800, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178528,7 +178340,7 @@ }, { "str": "video", - "token_id": 19817, + "token_id": 19801, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178541,7 +178353,7 @@ }, { "str": "games", - "token_id": 19818, + "token_id": 19802, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178554,7 +178366,7 @@ }, { "str": "|", - "token_id": 19819, + "token_id": 19803, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178569,7 +178381,7 @@ }, { "str": "]]", - "token_id": 19820, + "token_id": 19804, "o_rev_id": 1132012904, "in": [ 1148919560, @@ -178582,56 +178394,56 @@ }, { "str": "when", - "token_id": 19821, + "token_id": 19805, "o_rev_id": 1132042946, "in": [], "out": [] }, { "str": "automatically", - "token_id": 19822, + "token_id": 19806, "o_rev_id": 1132042946, "in": [], "out": [] }, { "str": "map", - "token_id": 19823, + "token_id": 19807, "o_rev_id": 1132042946, "in": [], "out": [] }, { "str": "area", - "token_id": 19824, + "token_id": 19808, "o_rev_id": 1132042946, "in": [], "out": [] }, { "str": "for", - "token_id": 19825, + "token_id": 19809, "o_rev_id": 1132042946, "in": [], "out": [] }, { "str": "that", - "token_id": 19826, + "token_id": 19810, "o_rev_id": 1132042946, "in": [], "out": [] }, { "str": "team", - "token_id": 19827, + "token_id": 19811, "o_rev_id": 1132042946, "in": [], "out": [] }, { "str": "over", - "token_id": 19828, + "token_id": 19812, "o_rev_id": 1132042946, "in": [], "out": [ @@ -178640,7 +178452,7 @@ }, { "str": "time", - "token_id": 19829, + "token_id": 19813, "o_rev_id": 1132042946, "in": [], "out": [ @@ -178649,7 +178461,7 @@ }, { "str": "[[", - "token_id": 19830, + "token_id": 19814, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178658,7 +178470,7 @@ }, { "str": "]]", - "token_id": 19831, + "token_id": 19815, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178667,42 +178479,42 @@ }, { "str": "and", - "token_id": 19832, + "token_id": 19816, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "almost", - "token_id": 19833, + "token_id": 19817, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "all", - "token_id": 19834, + "token_id": 19818, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "mammal", - "token_id": 19835, + "token_id": 19819, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "life", - "token_id": 19836, + "token_id": 19820, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "upon", - "token_id": 19837, + "token_id": 19821, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178711,7 +178523,7 @@ }, { "str": "following", - "token_id": 19838, + "token_id": 19822, "o_rev_id": 1132059163, "in": [ 1254457577 @@ -178723,7 +178535,7 @@ }, { "str": "elderly", - "token_id": 19839, + "token_id": 19823, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -178735,7 +178547,7 @@ }, { "str": "squid", - "token_id": 19840, + "token_id": 19824, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -178747,7 +178559,7 @@ }, { "str": "craig", - "token_id": 19841, + "token_id": 19825, "o_rev_id": 1132059163, "in": [ 1254458588 @@ -178758,21 +178570,21 @@ }, { "str": "cuttlefish", - "token_id": 19842, + "token_id": 19826, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "into", - "token_id": 19843, + "token_id": 19827, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "a", - "token_id": 19844, + "token_id": 19828, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178781,21 +178593,21 @@ }, { "str": "covered", - "token_id": 19845, + "token_id": 19829, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "with", - "token_id": 19846, + "token_id": 19830, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "lethal", - "token_id": 19847, + "token_id": 19831, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178804,28 +178616,28 @@ }, { "str": "fuzzy", - "token_id": 19848, + "token_id": 19832, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "ooze", - "token_id": 19849, + "token_id": 19833, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "smallfry", - "token_id": 19850, + "token_id": 19834, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "little", - "token_id": 19851, + "token_id": 19835, "o_rev_id": 1132059163, "in": [ 1202097960 @@ -178837,7 +178649,7 @@ }, { "str": "buddy", - "token_id": 19852, + "token_id": 19836, "o_rev_id": 1132059163, "in": [ 1202097960 @@ -178849,42 +178661,42 @@ }, { "str": "is", - "token_id": 19853, + "token_id": 19837, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "able", - "token_id": 19854, + "token_id": 19838, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "to", - "token_id": 19855, + "token_id": 19839, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "eat", - "token_id": 19856, + "token_id": 19840, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "and", - "token_id": 19857, + "token_id": 19841, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "destroy", - "token_id": 19858, + "token_id": 19842, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178893,7 +178705,7 @@ }, { "str": "some", - "token_id": 19859, + "token_id": 19843, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178902,7 +178714,7 @@ }, { "str": "of", - "token_id": 19860, + "token_id": 19844, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178911,7 +178723,7 @@ }, { "str": "the", - "token_id": 19861, + "token_id": 19845, "o_rev_id": 1132059163, "in": [], "out": [ @@ -178920,84 +178732,84 @@ }, { "str": "ooze", - "token_id": 19862, + "token_id": 19846, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ",", - "token_id": 19863, + "token_id": 19847, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "allowing", - "token_id": 19864, + "token_id": 19848, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "passage", - "token_id": 19865, + "token_id": 19849, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "further", - "token_id": 19866, + "token_id": 19850, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "into", - "token_id": 19867, + "token_id": 19851, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 19868, + "token_id": 19852, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "crater", - "token_id": 19869, + "token_id": 19853, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 19870, + "token_id": 19854, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "fight", - "token_id": 19871, + "token_id": 19855, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ",", - "token_id": 19872, + "token_id": 19856, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "which", - "token_id": 19873, + "token_id": 19857, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179006,7 +178818,7 @@ }, { "str": "cuttlefish", - "token_id": 19874, + "token_id": 19858, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179015,7 +178827,7 @@ }, { "str": "believes", - "token_id": 19875, + "token_id": 19859, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179024,7 +178836,7 @@ }, { "str": "are", - "token_id": 19876, + "token_id": 19860, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179033,21 +178845,21 @@ }, { "str": "responsible", - "token_id": 19877, + "token_id": 19861, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "for", - "token_id": 19878, + "token_id": 19862, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "once", - "token_id": 19879, + "token_id": 19863, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179056,7 +178868,7 @@ }, { "str": "again", - "token_id": 19880, + "token_id": 19864, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179065,7 +178877,7 @@ }, { "str": "stealing", - "token_id": 19881, + "token_id": 19865, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179074,105 +178886,105 @@ }, { "str": "the", - "token_id": 19882, + "token_id": 19866, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "great", - "token_id": 19883, + "token_id": 19867, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "zapfish", - "token_id": 19884, + "token_id": 19868, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "that", - "token_id": 19885, + "token_id": 19869, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "powers", - "token_id": 19886, + "token_id": 19870, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "splatsville", - "token_id": 19887, + "token_id": 19871, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 19888, + "token_id": 19872, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "at", - "token_id": 19889, + "token_id": 19873, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 19890, + "token_id": 19874, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "crater", - "token_id": 19891, + "token_id": 19875, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "'", - "token_id": 19892, + "token_id": 19876, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "s", - "token_id": 19893, + "token_id": 19877, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "base", - "token_id": 19894, + "token_id": 19878, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ",", - "token_id": 19895, + "token_id": 19879, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "octarian", - "token_id": 19896, + "token_id": 19880, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179181,7 +178993,7 @@ }, { "str": "leader", - "token_id": 19897, + "token_id": 19881, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179190,7 +179002,7 @@ }, { "str": "dj", - "token_id": 19898, + "token_id": 19882, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179199,14 +179011,14 @@ }, { "str": "octavio", - "token_id": 19899, + "token_id": 19883, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "accuses", - "token_id": 19900, + "token_id": 19884, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179215,7 +179027,7 @@ }, { "str": "cuttlefish", - "token_id": 19901, + "token_id": 19885, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179224,7 +179036,7 @@ }, { "str": "of", - "token_id": 19902, + "token_id": 19886, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179233,7 +179045,7 @@ }, { "str": "taking", - "token_id": 19903, + "token_id": 19887, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179242,21 +179054,21 @@ }, { "str": "his", - "token_id": 19904, + "token_id": 19888, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "octarian", - "token_id": 19905, + "token_id": 19889, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "warriors", - "token_id": 19906, + "token_id": 19890, "o_rev_id": 1132059163, "in": [ 1148919560, @@ -179269,7 +179081,7 @@ }, { "str": "and", - "token_id": 19907, + "token_id": 19891, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179278,14 +179090,14 @@ }, { "str": "denies", - "token_id": 19908, + "token_id": 19892, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "taking", - "token_id": 19909, + "token_id": 19893, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179294,42 +179106,42 @@ }, { "str": "the", - "token_id": 19910, + "token_id": 19894, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "zapfish", - "token_id": 19911, + "token_id": 19895, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 19912, + "token_id": 19896, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "ground", - "token_id": 19913, + "token_id": 19897, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "breaks", - "token_id": 19914, + "token_id": 19898, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "open", - "token_id": 19915, + "token_id": 19899, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179338,14 +179150,14 @@ }, { "str": ",", - "token_id": 19916, + "token_id": 19900, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "and", - "token_id": 19917, + "token_id": 19901, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179354,28 +179166,28 @@ }, { "str": "the", - "token_id": 19918, + "token_id": 19902, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "remains", - "token_id": 19919, + "token_id": 19903, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "of", - "token_id": 19920, + "token_id": 19904, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 19921, + "token_id": 19905, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179384,7 +179196,7 @@ }, { "str": "[[", - "token_id": 19922, + "token_id": 19906, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179393,14 +179205,14 @@ }, { "str": "underground", - "token_id": 19923, + "token_id": 19907, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "city", - "token_id": 19924, + "token_id": 19908, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179409,7 +179221,7 @@ }, { "str": "]]", - "token_id": 19925, + "token_id": 19909, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179418,7 +179230,7 @@ }, { "str": ",", - "token_id": 19926, + "token_id": 19910, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179427,7 +179239,7 @@ }, { "str": "which", - "token_id": 19927, + "token_id": 19911, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179436,7 +179248,7 @@ }, { "str": "the", - "token_id": 19928, + "token_id": 19912, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179445,7 +179257,7 @@ }, { "str": "fuzzy", - "token_id": 19929, + "token_id": 19913, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179454,7 +179266,7 @@ }, { "str": "octarians", - "token_id": 19930, + "token_id": 19914, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179463,7 +179275,7 @@ }, { "str": "have", - "token_id": 19931, + "token_id": 19915, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179472,7 +179284,7 @@ }, { "str": "turned", - "token_id": 19932, + "token_id": 19916, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179481,7 +179293,7 @@ }, { "str": "into", - "token_id": 19933, + "token_id": 19917, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179490,7 +179302,7 @@ }, { "str": "a", - "token_id": 19934, + "token_id": 19918, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179499,7 +179311,7 @@ }, { "str": "base", - "token_id": 19935, + "token_id": 19919, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179508,7 +179320,7 @@ }, { "str": "player", - "token_id": 19936, + "token_id": 19920, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179519,7 +179331,7 @@ }, { "str": "[[", - "token_id": 19937, + "token_id": 19921, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179530,7 +179342,7 @@ }, { "str": "japanese", - "token_id": 19938, + "token_id": 19922, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179541,14 +179353,14 @@ }, { "str": "idol", - "token_id": 19939, + "token_id": 19923, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "|", - "token_id": 19940, + "token_id": 19924, "o_rev_id": 1132059163, "in": [ 1148919560, @@ -179561,7 +179373,7 @@ }, { "str": "idol", - "token_id": 19941, + "token_id": 19925, "o_rev_id": 1132059163, "in": [ 1148919560, @@ -179574,7 +179386,7 @@ }, { "str": "]]", - "token_id": 19942, + "token_id": 19926, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179585,7 +179397,7 @@ }, { "str": "and", - "token_id": 19943, + "token_id": 19927, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179594,7 +179406,7 @@ }, { "str": "believe", - "token_id": 19944, + "token_id": 19928, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179603,7 +179415,7 @@ }, { "str": "is", - "token_id": 19945, + "token_id": 19929, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179612,7 +179424,7 @@ }, { "str": "there", - "token_id": 19946, + "token_id": 19930, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179621,49 +179433,49 @@ }, { "str": "for", - "token_id": 19947, + "token_id": 19931, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "same", - "token_id": 19948, + "token_id": 19932, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "reason", - "token_id": 19949, + "token_id": 19933, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 19950, + "token_id": 19934, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "aided", - "token_id": 19951, + "token_id": 19935, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "by", - "token_id": 19952, + "token_id": 19936, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "an", - "token_id": 19953, + "token_id": 19937, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179674,7 +179486,7 @@ }, { "str": "[[", - "token_id": 19954, + "token_id": 19938, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179685,7 +179497,7 @@ }, { "str": "artificial", - "token_id": 19955, + "token_id": 19939, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179696,7 +179508,7 @@ }, { "str": "intelligence", - "token_id": 19956, + "token_id": 19940, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179707,7 +179519,7 @@ }, { "str": "]]", - "token_id": 19957, + "token_id": 19941, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -179718,63 +179530,63 @@ }, { "str": "named", - "token_id": 19958, + "token_id": 19942, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "o", - "token_id": 19959, + "token_id": 19943, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 19960, + "token_id": 19944, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "r", - "token_id": 19961, + "token_id": 19945, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 19962, + "token_id": 19946, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "c", - "token_id": 19963, + "token_id": 19947, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 19964, + "token_id": 19948, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "a", - "token_id": 19965, + "token_id": 19949, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "they", - "token_id": 19966, + "token_id": 19950, "o_rev_id": 1132059163, "in": [ 1327668959 @@ -179786,7 +179598,7 @@ }, { "str": "explore", - "token_id": 19967, + "token_id": 19951, "o_rev_id": 1132059163, "in": [ 1327668959 @@ -179797,63 +179609,63 @@ }, { "str": "the", - "token_id": 19968, + "token_id": 19952, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "city", - "token_id": 19969, + "token_id": 19953, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "in", - "token_id": 19970, + "token_id": 19954, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "search", - "token_id": 19971, + "token_id": 19955, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "of", - "token_id": 19972, + "token_id": 19956, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "cuttlefish", - "token_id": 19973, + "token_id": 19957, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ",", - "token_id": 19974, + "token_id": 19958, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "but", - "token_id": 19975, + "token_id": 19959, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "are", - "token_id": 19976, + "token_id": 19960, "o_rev_id": 1132059163, "in": [ 1327668959 @@ -179864,14 +179676,14 @@ }, { "str": "repeatedly", - "token_id": 19977, + "token_id": 19961, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "led", - "token_id": 19978, + "token_id": 19962, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179880,7 +179692,7 @@ }, { "str": "to", - "token_id": 19979, + "token_id": 19963, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179889,7 +179701,7 @@ }, { "str": "signals", - "token_id": 19980, + "token_id": 19964, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179898,7 +179710,7 @@ }, { "str": "from", - "token_id": 19981, + "token_id": 19965, "o_rev_id": 1132059163, "in": [ 1327668959 @@ -179910,7 +179722,7 @@ }, { "str": "the", - "token_id": 19982, + "token_id": 19966, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179919,35 +179731,35 @@ }, { "str": "and", - "token_id": 19983, + "token_id": 19967, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "forced", - "token_id": 19984, + "token_id": 19968, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "to", - "token_id": 19985, + "token_id": 19969, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "fight", - "token_id": 19986, + "token_id": 19970, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "them", - "token_id": 19987, + "token_id": 19971, "o_rev_id": 1132059163, "in": [ 1236243909 @@ -179958,21 +179770,21 @@ }, { "str": "over", - "token_id": 19988, + "token_id": 19972, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 19989, + "token_id": 19973, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "\"", - "token_id": 19990, + "token_id": 19974, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179981,14 +179793,14 @@ }, { "str": "treasure", - "token_id": 19991, + "token_id": 19975, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "\"", - "token_id": 19992, + "token_id": 19976, "o_rev_id": 1132059163, "in": [], "out": [ @@ -179997,7 +179809,7 @@ }, { "str": "which", - "token_id": 19993, + "token_id": 19977, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180006,7 +179818,7 @@ }, { "str": "appears", - "token_id": 19994, + "token_id": 19978, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180015,7 +179827,7 @@ }, { "str": "to", - "token_id": 19995, + "token_id": 19979, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180024,7 +179836,7 @@ }, { "str": "be", - "token_id": 19996, + "token_id": 19980, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180033,7 +179845,7 @@ }, { "str": "junk", - "token_id": 19997, + "token_id": 19981, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180042,7 +179854,7 @@ }, { "str": ".", - "token_id": 19998, + "token_id": 19982, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180051,130 +179863,126 @@ }, { "str": "has", - "token_id": 19999, + "token_id": 19983, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "cuttlefish", - "token_id": 20000, + "token_id": 19984, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "and", - "token_id": 20001, + "token_id": 19985, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "is", - "token_id": 20002, + "token_id": 19986, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "responsible", - "token_id": 20003, + "token_id": 19987, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "for", - "token_id": 20004, + "token_id": 19988, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "taking", - "token_id": 20005, + "token_id": 19989, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 20006, + "token_id": 19990, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "great", - "token_id": 20007, + "token_id": 19991, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "zapfish", - "token_id": 20008, + "token_id": 19992, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "and", - "token_id": 20009, + "token_id": 19993, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "octarian", - "token_id": 20010, + "token_id": 19994, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "army", - "token_id": 20011, + "token_id": 19995, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 20012, + "token_id": 19996, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "mr", - "token_id": 20013, + "token_id": 19997, "o_rev_id": 1132059163, - "in": [ - 1327668959 - ], - "out": [ - 1327622667 - ] + "in": [], + "out": [] }, { "str": ".", - "token_id": 20014, + "token_id": 19998, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "grizz", - "token_id": 20015, + "token_id": 19999, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "explains", - "token_id": 20016, + "token_id": 20000, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180183,49 +179991,49 @@ }, { "str": "that", - "token_id": 20017, + "token_id": 20001, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "he", - "token_id": 20018, + "token_id": 20002, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "aims", - "token_id": 20019, + "token_id": 20003, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "restore", - "token_id": 20020, + "token_id": 20004, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "to", - "token_id": 20021, + "token_id": 20005, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "earth", - "token_id": 20022, + "token_id": 20006, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "explain", - "token_id": 20023, + "token_id": 20007, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180234,7 +180042,7 @@ }, { "str": "[[", - "token_id": 20024, + "token_id": 20008, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180243,7 +180051,7 @@ }, { "str": "charity", - "token_id": 20025, + "token_id": 20009, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180252,7 +180060,7 @@ }, { "str": "auction", - "token_id": 20026, + "token_id": 20010, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180261,7 +180069,7 @@ }, { "str": "|", - "token_id": 20027, + "token_id": 20011, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180270,7 +180078,7 @@ }, { "str": "sell", - "token_id": 20028, + "token_id": 20012, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180279,7 +180087,7 @@ }, { "str": "]]", - "token_id": 20029, + "token_id": 20013, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180288,7 +180096,7 @@ }, { "str": "for", - "token_id": 20030, + "token_id": 20014, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180297,7 +180105,7 @@ }, { "str": "charity", - "token_id": 20031, + "token_id": 20015, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180306,28 +180114,28 @@ }, { "str": "mr", - "token_id": 20032, + "token_id": 20016, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 20033, + "token_id": 20017, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "treasure", - "token_id": 20034, + "token_id": 20018, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "flying", - "token_id": 20035, + "token_id": 20019, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180336,7 +180144,7 @@ }, { "str": "-", - "token_id": 20036, + "token_id": 20020, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180345,7 +180153,7 @@ }, { "str": "like", - "token_id": 20037, + "token_id": 20021, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180354,7 +180162,7 @@ }, { "str": "-", - "token_id": 20038, + "token_id": 20022, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180363,28 +180171,28 @@ }, { "str": "device", - "token_id": 20039, + "token_id": 20023, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 20040, + "token_id": 20024, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "rocket", - "token_id": 20041, + "token_id": 20025, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "at", - "token_id": 20042, + "token_id": 20026, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180393,7 +180201,7 @@ }, { "str": "the", - "token_id": 20043, + "token_id": 20027, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180402,7 +180210,7 @@ }, { "str": "center", - "token_id": 20044, + "token_id": 20028, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180411,7 +180219,7 @@ }, { "str": "of", - "token_id": 20045, + "token_id": 20029, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180420,7 +180228,7 @@ }, { "str": "alterna", - "token_id": 20046, + "token_id": 20030, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180429,42 +180237,42 @@ }, { "str": "where", - "token_id": 20047, + "token_id": 20031, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "cuttlefish", - "token_id": 20048, + "token_id": 20032, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "is", - "token_id": 20049, + "token_id": 20033, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "being", - "token_id": 20050, + "token_id": 20034, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "held", - "token_id": 20051, + "token_id": 20035, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ",", - "token_id": 20052, + "token_id": 20036, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180473,7 +180281,7 @@ }, { "str": "they", - "token_id": 20053, + "token_id": 20037, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180482,35 +180290,35 @@ }, { "str": "find", - "token_id": 20054, + "token_id": 20038, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "mr", - "token_id": 20055, + "token_id": 20039, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 20056, + "token_id": 20040, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "grizz", - "token_id": 20057, + "token_id": 20041, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "has", - "token_id": 20058, + "token_id": 20042, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180519,28 +180327,28 @@ }, { "str": "\"", - "token_id": 20059, + "token_id": 20043, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "dehydrated", - "token_id": 20060, + "token_id": 20044, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "\"", - "token_id": 20061, + "token_id": 20045, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "cuttlefish", - "token_id": 20062, + "token_id": 20046, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180549,49 +180357,49 @@ }, { "str": "for", - "token_id": 20063, + "token_id": 20047, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "his", - "token_id": 20064, + "token_id": 20048, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "\"", - "token_id": 20065, + "token_id": 20049, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "essence", - "token_id": 20066, + "token_id": 20050, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "\"", - "token_id": 20067, + "token_id": 20051, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ",", - "token_id": 20068, + "token_id": 20052, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "apparently", - "token_id": 20069, + "token_id": 20053, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180600,28 +180408,28 @@ }, { "str": "killing", - "token_id": 20070, + "token_id": 20054, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "him", - "token_id": 20071, + "token_id": 20055, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 20072, + "token_id": 20056, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "mr", - "token_id": 20073, + "token_id": 20057, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180630,7 +180438,7 @@ }, { "str": ".", - "token_id": 20074, + "token_id": 20058, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180639,7 +180447,7 @@ }, { "str": "who", - "token_id": 20075, + "token_id": 20059, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180648,7 +180456,7 @@ }, { "str": "is", - "token_id": 20076, + "token_id": 20060, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180657,7 +180465,7 @@ }, { "str": "a", - "token_id": 20077, + "token_id": 20061, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180666,7 +180474,7 @@ }, { "str": "massive", - "token_id": 20078, + "token_id": 20062, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180675,7 +180483,7 @@ }, { "str": "bear", - "token_id": 20079, + "token_id": 20063, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180684,7 +180492,7 @@ }, { "str": "and", - "token_id": 20080, + "token_id": 20064, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180693,7 +180501,7 @@ }, { "str": "one", - "token_id": 20081, + "token_id": 20065, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180702,7 +180510,7 @@ }, { "str": "of", - "token_id": 20082, + "token_id": 20066, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180711,7 +180519,7 @@ }, { "str": "the", - "token_id": 20083, + "token_id": 20067, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180720,7 +180528,7 @@ }, { "str": "only", - "token_id": 20084, + "token_id": 20068, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180729,7 +180537,7 @@ }, { "str": "remaining", - "token_id": 20085, + "token_id": 20069, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180738,7 +180546,7 @@ }, { "str": "mammals", - "token_id": 20086, + "token_id": 20070, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180747,7 +180555,7 @@ }, { "str": ",", - "token_id": 20087, + "token_id": 20071, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180756,7 +180564,7 @@ }, { "str": "explains", - "token_id": 20088, + "token_id": 20072, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180765,7 +180573,7 @@ }, { "str": "the", - "token_id": 20089, + "token_id": 20073, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180774,7 +180582,7 @@ }, { "str": "rocket", - "token_id": 20090, + "token_id": 20074, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180783,7 +180591,7 @@ }, { "str": "is", - "token_id": 20091, + "token_id": 20075, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180792,7 +180600,7 @@ }, { "str": "rigged", - "token_id": 20092, + "token_id": 20076, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180801,7 +180609,7 @@ }, { "str": "to", - "token_id": 20093, + "token_id": 20077, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180810,7 +180618,7 @@ }, { "str": "explode", - "token_id": 20094, + "token_id": 20078, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180819,7 +180627,7 @@ }, { "str": "and", - "token_id": 20095, + "token_id": 20079, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180828,7 +180636,7 @@ }, { "str": "cover", - "token_id": 20096, + "token_id": 20080, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180837,7 +180645,7 @@ }, { "str": "the", - "token_id": 20097, + "token_id": 20081, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180846,7 +180654,7 @@ }, { "str": "entire", - "token_id": 20098, + "token_id": 20082, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180855,7 +180663,7 @@ }, { "str": "earth", - "token_id": 20099, + "token_id": 20083, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180864,7 +180672,7 @@ }, { "str": "in", - "token_id": 20100, + "token_id": 20084, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180873,7 +180681,7 @@ }, { "str": "fuzzy", - "token_id": 20101, + "token_id": 20085, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180882,7 +180690,7 @@ }, { "str": "ooze", - "token_id": 20102, + "token_id": 20086, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180891,7 +180699,7 @@ }, { "str": ",", - "token_id": 20103, + "token_id": 20087, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180900,7 +180708,7 @@ }, { "str": "reviving", - "token_id": 20104, + "token_id": 20088, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180909,7 +180717,7 @@ }, { "str": "mammal", - "token_id": 20105, + "token_id": 20089, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180918,7 +180726,7 @@ }, { "str": "life", - "token_id": 20106, + "token_id": 20090, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180927,7 +180735,7 @@ }, { "str": "at", - "token_id": 20107, + "token_id": 20091, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180936,7 +180744,7 @@ }, { "str": "the", - "token_id": 20108, + "token_id": 20092, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180945,7 +180753,7 @@ }, { "str": "expense", - "token_id": 20109, + "token_id": 20093, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180954,7 +180762,7 @@ }, { "str": "of", - "token_id": 20110, + "token_id": 20094, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180963,7 +180771,7 @@ }, { "str": "all", - "token_id": 20111, + "token_id": 20095, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180972,7 +180780,7 @@ }, { "str": "other", - "token_id": 20112, + "token_id": 20096, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180981,7 +180789,7 @@ }, { "str": "life", - "token_id": 20113, + "token_id": 20097, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180990,7 +180798,7 @@ }, { "str": "on", - "token_id": 20114, + "token_id": 20098, "o_rev_id": 1132059163, "in": [], "out": [ @@ -180999,7 +180807,7 @@ }, { "str": "the", - "token_id": 20115, + "token_id": 20099, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181008,7 +180816,7 @@ }, { "str": "planet", - "token_id": 20116, + "token_id": 20100, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181017,7 +180825,7 @@ }, { "str": ".", - "token_id": 20117, + "token_id": 20101, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181026,21 +180834,21 @@ }, { "str": "the", - "token_id": 20118, + "token_id": 20102, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "captain", - "token_id": 20119, + "token_id": 20103, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "revives", - "token_id": 20120, + "token_id": 20104, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181049,77 +180857,77 @@ }, { "str": "as", - "token_id": 20121, + "token_id": 20105, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "mr", - "token_id": 20122, + "token_id": 20106, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 20123, + "token_id": 20107, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "grizz", - "token_id": 20124, + "token_id": 20108, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "launches", - "token_id": 20125, + "token_id": 20109, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 20126, + "token_id": 20110, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "rocket", - "token_id": 20127, + "token_id": 20111, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "into", - "token_id": 20128, + "token_id": 20112, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "space", - "token_id": 20129, + "token_id": 20113, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "and", - "token_id": 20130, + "token_id": 20114, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "deep", - "token_id": 20131, + "token_id": 20115, "o_rev_id": 1132059163, "in": [ 1327668959 @@ -181130,7 +180938,7 @@ }, { "str": "cut", - "token_id": 20132, + "token_id": 20116, "o_rev_id": 1132059163, "in": [ 1327668959 @@ -181141,49 +180949,49 @@ }, { "str": "provides", - "token_id": 20133, + "token_id": 20117, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "agent", - "token_id": 20134, + "token_id": 20118, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "3", - "token_id": 20135, + "token_id": 20119, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "a", - "token_id": 20136, + "token_id": 20120, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "lift", - "token_id": 20137, + "token_id": 20121, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "onto", - "token_id": 20138, + "token_id": 20122, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "it", - "token_id": 20139, + "token_id": 20123, "o_rev_id": 1132059163, "in": [ 1327668959 @@ -181194,21 +181002,21 @@ }, { "str": ".", - "token_id": 20140, + "token_id": 20124, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "agent", - "token_id": 20141, + "token_id": 20125, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "3", - "token_id": 20142, + "token_id": 20126, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181219,7 +181027,7 @@ }, { "str": "ultimately", - "token_id": 20143, + "token_id": 20127, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181228,7 +181036,7 @@ }, { "str": "defeats", - "token_id": 20144, + "token_id": 20128, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181237,7 +181045,7 @@ }, { "str": "mr", - "token_id": 20145, + "token_id": 20129, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181246,7 +181054,7 @@ }, { "str": ".", - "token_id": 20146, + "token_id": 20130, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181255,7 +181063,7 @@ }, { "str": "grizz", - "token_id": 20147, + "token_id": 20131, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181264,7 +181072,7 @@ }, { "str": ",", - "token_id": 20148, + "token_id": 20132, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181273,7 +181081,7 @@ }, { "str": "destroying", - "token_id": 20149, + "token_id": 20133, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181282,7 +181090,7 @@ }, { "str": "the", - "token_id": 20150, + "token_id": 20134, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181291,7 +181099,7 @@ }, { "str": "rocket", - "token_id": 20151, + "token_id": 20135, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181300,7 +181108,7 @@ }, { "str": ",", - "token_id": 20152, + "token_id": 20136, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181311,7 +181119,7 @@ }, { "str": "with", - "token_id": 20153, + "token_id": 20137, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181322,7 +181130,7 @@ }, { "str": "help", - "token_id": 20154, + "token_id": 20138, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181333,7 +181141,7 @@ }, { "str": "from", - "token_id": 20155, + "token_id": 20139, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181344,7 +181152,7 @@ }, { "str": "dj", - "token_id": 20156, + "token_id": 20140, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181356,7 +181164,7 @@ }, { "str": "octavio", - "token_id": 20157, + "token_id": 20141, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181367,14 +181175,14 @@ }, { "str": "and", - "token_id": 20158, + "token_id": 20142, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "little", - "token_id": 20159, + "token_id": 20143, "o_rev_id": 1132059163, "in": [ 1154926670, @@ -181388,7 +181196,7 @@ }, { "str": "buddy", - "token_id": 20160, + "token_id": 20144, "o_rev_id": 1132059163, "in": [ 1154926670, @@ -181402,7 +181210,7 @@ }, { "str": ",", - "token_id": 20161, + "token_id": 20145, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181414,7 +181222,7 @@ }, { "str": "who", - "token_id": 20162, + "token_id": 20146, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181426,7 +181234,7 @@ }, { "str": "transforms", - "token_id": 20163, + "token_id": 20147, "o_rev_id": 1132059163, "in": [ 1154926670 @@ -181438,7 +181246,7 @@ }, { "str": "\"", - "token_id": 20164, + "token_id": 20148, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181447,7 +181255,7 @@ }, { "str": "hugefry", - "token_id": 20165, + "token_id": 20149, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181456,7 +181264,7 @@ }, { "str": "\"", - "token_id": 20166, + "token_id": 20150, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181465,7 +181273,7 @@ }, { "str": "form", - "token_id": 20167, + "token_id": 20151, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181474,7 +181282,7 @@ }, { "str": "(", - "token_id": 20168, + "token_id": 20152, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181486,7 +181294,7 @@ }, { "str": "resembling", - "token_id": 20169, + "token_id": 20153, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181498,7 +181306,7 @@ }, { "str": "a", - "token_id": 20170, + "token_id": 20154, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181510,7 +181318,7 @@ }, { "str": "giant", - "token_id": 20171, + "token_id": 20155, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181522,7 +181330,7 @@ }, { "str": "[[", - "token_id": 20172, + "token_id": 20156, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181534,7 +181342,7 @@ }, { "str": "coho", - "token_id": 20173, + "token_id": 20157, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181546,7 +181354,7 @@ }, { "str": "salmon", - "token_id": 20174, + "token_id": 20158, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181558,7 +181366,7 @@ }, { "str": "]]", - "token_id": 20175, + "token_id": 20159, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181570,7 +181378,7 @@ }, { "str": ")", - "token_id": 20176, + "token_id": 20160, "o_rev_id": 1132059163, "in": [ 1148919560 @@ -181582,7 +181390,7 @@ }, { "str": "powered", - "token_id": 20177, + "token_id": 20161, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181591,7 +181399,7 @@ }, { "str": "by", - "token_id": 20178, + "token_id": 20162, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181600,7 +181408,7 @@ }, { "str": "a", - "token_id": 20179, + "token_id": 20163, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181609,7 +181417,7 @@ }, { "str": "new", - "token_id": 20180, + "token_id": 20164, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181618,7 +181426,7 @@ }, { "str": "rendition", - "token_id": 20181, + "token_id": 20165, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181627,7 +181435,7 @@ }, { "str": "of", - "token_id": 20182, + "token_id": 20166, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181636,14 +181444,14 @@ }, { "str": "the", - "token_id": 20183, + "token_id": 20167, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "\"", - "token_id": 20184, + "token_id": 20168, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181652,7 +181460,7 @@ }, { "str": "heavenly", - "token_id": 20185, + "token_id": 20169, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181661,7 +181469,7 @@ }, { "str": "melody", - "token_id": 20186, + "token_id": 20170, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181670,7 +181478,7 @@ }, { "str": "\"", - "token_id": 20187, + "token_id": 20171, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181679,7 +181487,7 @@ }, { "str": "calamari", - "token_id": 20188, + "token_id": 20172, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181688,7 +181496,7 @@ }, { "str": "inkantation", - "token_id": 20189, + "token_id": 20173, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181697,35 +181505,35 @@ }, { "str": ".", - "token_id": 20190, + "token_id": 20174, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "agent", - "token_id": 20191, + "token_id": 20175, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "3", - "token_id": 20192, + "token_id": 20176, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ",", - "token_id": 20193, + "token_id": 20177, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "smallfry", - "token_id": 20194, + "token_id": 20178, "o_rev_id": 1132059163, "in": [ 1202072482, @@ -181740,112 +181548,112 @@ }, { "str": "octavio", - "token_id": 20195, + "token_id": 20179, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "return", - "token_id": 20196, + "token_id": 20180, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "to", - "token_id": 20197, + "token_id": 20181, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "earth", - "token_id": 20198, + "token_id": 20182, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "great", - "token_id": 20199, + "token_id": 20183, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "zapfish", - "token_id": 20200, + "token_id": 20184, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ",", - "token_id": 20201, + "token_id": 20185, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "mr", - "token_id": 20202, + "token_id": 20186, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": ".", - "token_id": 20203, + "token_id": 20187, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "seen", - "token_id": 20204, + "token_id": 20188, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "floating", - "token_id": 20205, + "token_id": 20189, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "in", - "token_id": 20206, + "token_id": 20190, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "space", - "token_id": 20207, + "token_id": 20191, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "during", - "token_id": 20208, + "token_id": 20192, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "the", - "token_id": 20209, + "token_id": 20193, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "[[", - "token_id": 20210, + "token_id": 20194, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181854,7 +181662,7 @@ }, { "str": "closing", - "token_id": 20211, + "token_id": 20195, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181863,14 +181671,14 @@ }, { "str": "credits", - "token_id": 20212, + "token_id": 20196, "o_rev_id": 1132059163, "in": [], "out": [] }, { "str": "|", - "token_id": 20213, + "token_id": 20197, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181879,7 +181687,7 @@ }, { "str": "credits", - "token_id": 20214, + "token_id": 20198, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181888,7 +181696,7 @@ }, { "str": "]]", - "token_id": 20215, + "token_id": 20199, "o_rev_id": 1132059163, "in": [], "out": [ @@ -181897,7 +181705,7 @@ }, { "str": "-", - "token_id": 20216, + "token_id": 20200, "o_rev_id": 1132406984, "in": [ 1148919560 @@ -181908,7 +181716,7 @@ }, { "str": "8", - "token_id": 20217, + "token_id": 20201, "o_rev_id": 1132408113, "in": [ 1132663332, @@ -181922,7 +181730,7 @@ }, { "str": "8", - "token_id": 20218, + "token_id": 20202, "o_rev_id": 1132408113, "in": [ 1132663332 @@ -181934,77 +181742,77 @@ }, { "str": "<", - "token_id": 20219, + "token_id": 20203, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "ref", - "token_id": 20220, + "token_id": 20204, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": ">", - "token_id": 20221, + "token_id": 20205, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "{{", - "token_id": 20222, + "token_id": 20206, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "cite", - "token_id": 20223, + "token_id": 20207, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "web", - "token_id": 20224, + "token_id": 20208, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "|", - "token_id": 20225, + "token_id": 20209, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "title", - "token_id": 20226, + "token_id": 20210, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "=", - "token_id": 20227, + "token_id": 20211, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 20228, + "token_id": 20212, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "™", - "token_id": 20229, + "token_id": 20213, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182013,14 +181821,14 @@ }, { "str": "3", - "token_id": 20230, + "token_id": 20214, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "for", - "token_id": 20231, + "token_id": 20215, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182029,7 +181837,7 @@ }, { "str": "nintendo", - "token_id": 20232, + "token_id": 20216, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182038,7 +181846,7 @@ }, { "str": "switch", - "token_id": 20233, + "token_id": 20217, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182047,7 +181855,7 @@ }, { "str": "-", - "token_id": 20234, + "token_id": 20218, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182056,7 +181864,7 @@ }, { "str": "nintendo", - "token_id": 20235, + "token_id": 20219, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182065,7 +181873,7 @@ }, { "str": "official", - "token_id": 20236, + "token_id": 20220, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182074,7 +181882,7 @@ }, { "str": "site", - "token_id": 20237, + "token_id": 20221, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182083,70 +181891,70 @@ }, { "str": "|", - "token_id": 20238, + "token_id": 20222, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "url", - "token_id": 20239, + "token_id": 20223, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "=", - "token_id": 20240, + "token_id": 20224, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "https", - "token_id": 20241, + "token_id": 20225, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": ":", - "token_id": 20242, + "token_id": 20226, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "/", - "token_id": 20243, + "token_id": 20227, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "/", - "token_id": 20244, + "token_id": 20228, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "www", - "token_id": 20245, + "token_id": 20229, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": ".", - "token_id": 20246, + "token_id": 20230, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 20247, + "token_id": 20231, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182155,28 +181963,28 @@ }, { "str": ".", - "token_id": 20248, + "token_id": 20232, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "com", - "token_id": 20249, + "token_id": 20233, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "/", - "token_id": 20250, + "token_id": 20234, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "store", - "token_id": 20251, + "token_id": 20235, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182185,14 +181993,14 @@ }, { "str": "/", - "token_id": 20252, + "token_id": 20236, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "products", - "token_id": 20253, + "token_id": 20237, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182201,42 +182009,42 @@ }, { "str": "/", - "token_id": 20254, + "token_id": 20238, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 20255, + "token_id": 20239, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "-", - "token_id": 20256, + "token_id": 20240, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "3", - "token_id": 20257, + "token_id": 20241, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "-", - "token_id": 20258, + "token_id": 20242, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "switch", - "token_id": 20259, + "token_id": 20243, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182245,7 +182053,7 @@ }, { "str": "/", - "token_id": 20260, + "token_id": 20244, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182254,7 +182062,7 @@ }, { "str": "|", - "token_id": 20261, + "token_id": 20245, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182263,7 +182071,7 @@ }, { "str": "access", - "token_id": 20262, + "token_id": 20246, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182272,14 +182080,14 @@ }, { "str": "-", - "token_id": 20263, + "token_id": 20247, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "date", - "token_id": 20264, + "token_id": 20248, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182288,7 +182096,7 @@ }, { "str": "=", - "token_id": 20265, + "token_id": 20249, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182297,7 +182105,7 @@ }, { "str": "2023", - "token_id": 20266, + "token_id": 20250, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182306,14 +182114,14 @@ }, { "str": "-", - "token_id": 20267, + "token_id": 20251, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "01", - "token_id": 20268, + "token_id": 20252, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182322,14 +182130,14 @@ }, { "str": "-", - "token_id": 20269, + "token_id": 20253, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "10", - "token_id": 20270, + "token_id": 20254, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182338,7 +182146,7 @@ }, { "str": "|", - "token_id": 20271, + "token_id": 20255, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182347,7 +182155,7 @@ }, { "str": "website", - "token_id": 20272, + "token_id": 20256, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182356,7 +182164,7 @@ }, { "str": "=", - "token_id": 20273, + "token_id": 20257, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182365,7 +182173,7 @@ }, { "str": "www", - "token_id": 20274, + "token_id": 20258, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182374,7 +182182,7 @@ }, { "str": ".", - "token_id": 20275, + "token_id": 20259, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182383,7 +182191,7 @@ }, { "str": "nintendo", - "token_id": 20276, + "token_id": 20260, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182392,7 +182200,7 @@ }, { "str": ".", - "token_id": 20277, + "token_id": 20261, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182401,7 +182209,7 @@ }, { "str": "com", - "token_id": 20278, + "token_id": 20262, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182410,7 +182218,7 @@ }, { "str": "|", - "token_id": 20279, + "token_id": 20263, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182419,7 +182227,7 @@ }, { "str": "language", - "token_id": 20280, + "token_id": 20264, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182428,7 +182236,7 @@ }, { "str": "=", - "token_id": 20281, + "token_id": 20265, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182437,7 +182245,7 @@ }, { "str": "en", - "token_id": 20282, + "token_id": 20266, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182446,14 +182254,14 @@ }, { "str": "-", - "token_id": 20283, + "token_id": 20267, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "us", - "token_id": 20284, + "token_id": 20268, "o_rev_id": 1132679423, "in": [], "out": [ @@ -182462,21 +182270,21 @@ }, { "str": "}}", - "token_id": 20285, + "token_id": 20269, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "<", - "token_id": 20286, + "token_id": 20270, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "/", - "token_id": 20287, + "token_id": 20271, "o_rev_id": 1132679423, "in": [ 1180622889 @@ -182487,1109 +182295,1099 @@ }, { "str": "ref", - "token_id": 20288, + "token_id": 20272, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": ">", - "token_id": 20289, + "token_id": 20273, "o_rev_id": 1132679423, "in": [], "out": [] }, { "str": "|", - "token_id": 20290, + "token_id": 20274, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20291, + "token_id": 20275, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20292, + "token_id": 20276, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "style", - "token_id": 20293, + "token_id": 20277, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "=", - "token_id": 20294, + "token_id": 20278, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "\"", - "token_id": 20295, + "token_id": 20279, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "text", - "token_id": 20296, + "token_id": 20280, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20297, + "token_id": 20281, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "align", - "token_id": 20298, + "token_id": 20282, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ":", - "token_id": 20299, + "token_id": 20283, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "center", - "token_id": 20300, + "token_id": 20284, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ";", - "token_id": 20301, + "token_id": 20285, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "\"", - "token_id": 20302, + "token_id": 20286, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20303, + "token_id": 20287, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "2023", - "token_id": 20304, + "token_id": 20288, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20305, + "token_id": 20289, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "[[", - "token_id": 20306, + "token_id": 20290, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "new", - "token_id": 20307, + "token_id": 20291, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "york", - "token_id": 20308, + "token_id": 20292, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "game", - "token_id": 20309, + "token_id": 20293, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "awards", - "token_id": 20310, + "token_id": 20294, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "]]", - "token_id": 20311, + "token_id": 20295, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20312, + "token_id": 20296, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "central", - "token_id": 20313, + "token_id": 20297, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "park", - "token_id": 20314, + "token_id": 20298, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "children", - "token_id": 20315, + "token_id": 20299, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "'", - "token_id": 20316, + "token_id": 20300, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "s", - "token_id": 20317, + "token_id": 20301, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "zoo", - "token_id": 20318, + "token_id": 20302, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "award", - "token_id": 20319, + "token_id": 20303, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "for", - "token_id": 20320, + "token_id": 20304, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "best", - "token_id": 20321, + "token_id": 20305, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "kids", - "token_id": 20322, + "token_id": 20306, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "game", - "token_id": 20323, + "token_id": 20307, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20324, + "token_id": 20308, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "{{", - "token_id": 20325, + "token_id": 20309, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "nominated", - "token_id": 20326, + "token_id": 20310, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "}}", - "token_id": 20327, + "token_id": 20311, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20328, + "token_id": 20312, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "style", - "token_id": 20329, + "token_id": 20313, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "=", - "token_id": 20330, + "token_id": 20314, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "\"", - "token_id": 20331, + "token_id": 20315, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "text", - "token_id": 20332, + "token_id": 20316, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20333, + "token_id": 20317, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "align", - "token_id": 20334, + "token_id": 20318, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ":", - "token_id": 20335, + "token_id": 20319, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "center", - "token_id": 20336, + "token_id": 20320, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ";", - "token_id": 20337, + "token_id": 20321, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "\"", - "token_id": 20338, + "token_id": 20322, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20339, + "token_id": 20323, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "<", - "token_id": 20340, + "token_id": 20324, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "ref", - "token_id": 20341, + "token_id": 20325, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ">", - "token_id": 20342, + "token_id": 20326, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "{{", - "token_id": 20343, + "token_id": 20327, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "cite", - "token_id": 20344, + "token_id": 20328, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "web", - "token_id": 20345, + "token_id": 20329, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20346, + "token_id": 20330, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "url", - "token_id": 20347, + "token_id": 20331, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "=", - "token_id": 20348, + "token_id": 20332, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "https", - "token_id": 20349, + "token_id": 20333, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ":", - "token_id": 20350, + "token_id": 20334, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "/", - "token_id": 20351, + "token_id": 20335, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "/", - "token_id": 20352, + "token_id": 20336, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "www", - "token_id": 20353, + "token_id": 20337, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ".", - "token_id": 20354, + "token_id": 20338, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "ign", - "token_id": 20355, + "token_id": 20339, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ".", - "token_id": 20356, + "token_id": 20340, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "com", - "token_id": 20357, + "token_id": 20341, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "/", - "token_id": 20358, + "token_id": 20342, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "articles", - "token_id": 20359, + "token_id": 20343, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "/", - "token_id": 20360, + "token_id": 20344, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "new", - "token_id": 20361, + "token_id": 20345, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20362, + "token_id": 20346, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "york", - "token_id": 20363, + "token_id": 20347, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20364, + "token_id": 20348, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "game", - "token_id": 20365, + "token_id": 20349, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20366, + "token_id": 20350, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "awards", - "token_id": 20367, + "token_id": 20351, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20368, + "token_id": 20352, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "2023", - "token_id": 20369, + "token_id": 20353, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20370, + "token_id": 20354, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "elden", - "token_id": 20371, + "token_id": 20355, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20372, + "token_id": 20356, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "ring", - "token_id": 20373, + "token_id": 20357, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20374, + "token_id": 20358, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "wins", - "token_id": 20375, + "token_id": 20359, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20376, + "token_id": 20360, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "two", - "token_id": 20377, + "token_id": 20361, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20378, + "token_id": 20362, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "awards", - "token_id": 20379, + "token_id": 20363, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20380, + "token_id": 20364, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "as", - "token_id": 20381, + "token_id": 20365, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20382, + "token_id": 20366, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "phil", - "token_id": 20383, + "token_id": 20367, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20384, + "token_id": 20368, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "spencer", - "token_id": 20385, + "token_id": 20369, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20386, + "token_id": 20370, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "is", - "token_id": 20387, + "token_id": 20371, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20388, + "token_id": 20372, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "honored", - "token_id": 20389, + "token_id": 20373, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20390, + "token_id": 20374, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "title", - "token_id": 20391, + "token_id": 20375, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "=", - "token_id": 20392, + "token_id": 20376, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "new", - "token_id": 20393, + "token_id": 20377, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "york", - "token_id": 20394, + "token_id": 20378, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "game", - "token_id": 20395, + "token_id": 20379, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "awards", - "token_id": 20396, + "token_id": 20380, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "2023", - "token_id": 20397, + "token_id": 20381, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ":", - "token_id": 20398, + "token_id": 20382, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "elden", - "token_id": 20399, + "token_id": 20383, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "ring", - "token_id": 20400, + "token_id": 20384, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "wins", - "token_id": 20401, + "token_id": 20385, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "two", - "token_id": 20402, + "token_id": 20386, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "awards", - "token_id": 20403, + "token_id": 20387, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "as", - "token_id": 20404, + "token_id": 20388, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "phil", - "token_id": 20405, + "token_id": 20389, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "spencer", - "token_id": 20406, + "token_id": 20390, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "is", - "token_id": 20407, + "token_id": 20391, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "honored", - "token_id": 20408, + "token_id": 20392, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20409, + "token_id": 20393, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "last", - "token_id": 20410, + "token_id": 20394, "o_rev_id": 1136008931, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", - "token_id": 20411, + "token_id": 20395, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "bankhurst", - "token_id": 20412, + "token_id": 20396, "o_rev_id": 1136008931, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "|", - "token_id": 20413, + "token_id": 20397, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "first", - "token_id": 20414, + "token_id": 20398, "o_rev_id": 1136008931, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", - "token_id": 20415, + "token_id": 20399, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "adam", - "token_id": 20416, + "token_id": 20400, "o_rev_id": 1136008931, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "|", - "token_id": 20417, + "token_id": 20401, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "work", - "token_id": 20418, + "token_id": 20402, "o_rev_id": 1136008931, "in": [], - "out": [ - 1140535097 - ] + "out": [] }, { "str": "=", - "token_id": 20419, + "token_id": 20403, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "[[", - "token_id": 20420, + "token_id": 20404, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "ign", - "token_id": 20421, + "token_id": 20405, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "]]", - "token_id": 20422, + "token_id": 20406, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20423, + "token_id": 20407, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "date", - "token_id": 20424, + "token_id": 20408, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "=", - "token_id": 20425, + "token_id": 20409, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "18", - "token_id": 20426, + "token_id": 20410, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "january", - "token_id": 20427, + "token_id": 20411, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "2023", - "token_id": 20428, + "token_id": 20412, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "|", - "token_id": 20429, + "token_id": 20413, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "access", - "token_id": 20430, + "token_id": 20414, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "-", - "token_id": 20431, + "token_id": 20415, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "date", - "token_id": 20432, + "token_id": 20416, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "=", - "token_id": 20433, + "token_id": 20417, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "28", - "token_id": 20434, + "token_id": 20418, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "january", - "token_id": 20435, + "token_id": 20419, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "2023", - "token_id": 20436, + "token_id": 20420, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "}}", - "token_id": 20437, + "token_id": 20421, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "<", - "token_id": 20438, + "token_id": 20422, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "/", - "token_id": 20439, + "token_id": 20423, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "ref", - "token_id": 20440, + "token_id": 20424, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": ">", - "token_id": 20441, + "token_id": 20425, "o_rev_id": 1136008931, "in": [], "out": [] }, { "str": "seemingly", - "token_id": 20442, + "token_id": 20426, "o_rev_id": 1136158635, "in": [], "out": [] }, { "str": ",", - "token_id": 20443, + "token_id": 20427, "o_rev_id": 1136158635, "in": [], "out": [] }, { "str": "little", - "token_id": 20444, + "token_id": 20428, "o_rev_id": 1136158635, "in": [ 1202097960, @@ -183603,7 +183401,7 @@ }, { "str": "buddy", - "token_id": 20445, + "token_id": 20429, "o_rev_id": 1136158635, "in": [ 1202097960, @@ -183617,7 +183415,7 @@ }, { "str": "|", - "token_id": 20446, + "token_id": 20430, "o_rev_id": 1136544700, "in": [], "out": [ @@ -183626,7 +183424,7 @@ }, { "str": "king", - "token_id": 20447, + "token_id": 20431, "o_rev_id": 1136544700, "in": [], "out": [ @@ -183635,7 +183433,7 @@ }, { "str": "salmond", - "token_id": 20448, + "token_id": 20432, "o_rev_id": 1136544700, "in": [], "out": [ @@ -183644,7 +183442,7 @@ }, { "str": "new", - "token_id": 20449, + "token_id": 20433, "o_rev_id": 1136544700, "in": [], "out": [ @@ -183653,7 +183451,7 @@ }, { "str": "to", - "token_id": 20450, + "token_id": 20434, "o_rev_id": 1136544700, "in": [], "out": [ @@ -183662,7 +183460,7 @@ }, { "str": "the", - "token_id": 20451, + "token_id": 20435, "o_rev_id": 1136544700, "in": [], "out": [ @@ -183671,7 +183469,7 @@ }, { "str": "occasionally", - "token_id": 20452, + "token_id": 20436, "o_rev_id": 1136544700, "in": [], "out": [ @@ -183680,7 +183478,7 @@ }, { "str": "the", - "token_id": 20453, + "token_id": 20437, "o_rev_id": 1136544700, "in": [], "out": [ @@ -183689,7 +183487,7 @@ }, { "str": ",", - "token_id": 20454, + "token_id": 20438, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183698,7 +183496,7 @@ }, { "str": "the", - "token_id": 20455, + "token_id": 20439, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183707,7 +183505,7 @@ }, { "str": "later", - "token_id": 20456, + "token_id": 20440, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183716,7 +183514,7 @@ }, { "str": "now", - "token_id": 20457, + "token_id": 20441, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183725,7 +183523,7 @@ }, { "str": "being", - "token_id": 20458, + "token_id": 20442, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183734,7 +183532,7 @@ }, { "str": "a", - "token_id": 20459, + "token_id": 20443, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183743,7 +183541,7 @@ }, { "str": "default", - "token_id": 20460, + "token_id": 20444, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183752,7 +183550,7 @@ }, { "str": "customization", - "token_id": 20461, + "token_id": 20445, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183761,7 +183559,7 @@ }, { "str": "option", - "token_id": 20462, + "token_id": 20446, "o_rev_id": 1136545225, "in": [], "out": [ @@ -183770,21 +183568,21 @@ }, { "str": "[[", - "token_id": 20463, + "token_id": 20447, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "]]", - "token_id": 20464, + "token_id": 20448, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "checkpoint", - "token_id": 20465, + "token_id": 20449, "o_rev_id": 1136546179, "in": [], "out": [ @@ -183793,7 +183591,7 @@ }, { "str": "checkpoint", - "token_id": 20466, + "token_id": 20450, "o_rev_id": 1136546179, "in": [], "out": [ @@ -183802,28 +183600,28 @@ }, { "str": "until", - "token_id": 20467, + "token_id": 20451, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "they", - "token_id": 20468, + "token_id": 20452, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "reach", - "token_id": 20469, + "token_id": 20453, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "this", - "token_id": 20470, + "token_id": 20454, "o_rev_id": 1136546179, "in": [ 1229566085 @@ -183834,7 +183632,7 @@ }, { "str": "sees", - "token_id": 20471, + "token_id": 20455, "o_rev_id": 1136546179, "in": [ 1229566085 @@ -183845,7 +183643,7 @@ }, { "str": "the", - "token_id": 20472, + "token_id": 20456, "o_rev_id": 1136546179, "in": [ 1229566085 @@ -183856,7 +183654,7 @@ }, { "str": "return", - "token_id": 20473, + "token_id": 20457, "o_rev_id": 1136546179, "in": [ 1229566085 @@ -183867,7 +183665,7 @@ }, { "str": "of", - "token_id": 20474, + "token_id": 20458, "o_rev_id": 1136546179, "in": [ 1229566085 @@ -183878,35 +183676,35 @@ }, { "str": "the", - "token_id": 20475, + "token_id": 20459, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "teams", - "token_id": 20476, + "token_id": 20460, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "they", - "token_id": 20477, + "token_id": 20461, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "new", - "token_id": 20478, + "token_id": 20462, "o_rev_id": 1136546179, "in": [], "out": [] }, { "str": "by", - "token_id": 20479, + "token_id": 20463, "o_rev_id": 1136546179, "in": [], "out": [ @@ -183915,28 +183713,28 @@ }, { "str": "suggested", - "token_id": 20480, + "token_id": 20464, "o_rev_id": 1136566099, "in": [], "out": [] }, { "str": "to", - "token_id": 20481, + "token_id": 20465, "o_rev_id": 1136566099, "in": [], "out": [] }, { "str": "be", - "token_id": 20482, + "token_id": 20466, "o_rev_id": 1136566099, "in": [], "out": [] }, { "str": "(", - "token_id": 20483, + "token_id": 20467, "o_rev_id": 1136952803, "in": [], "out": [ @@ -183945,7 +183743,7 @@ }, { "str": "the", - "token_id": 20484, + "token_id": 20468, "o_rev_id": 1136952803, "in": [], "out": [ @@ -183954,7 +183752,7 @@ }, { "str": "idles", - "token_id": 20485, + "token_id": 20469, "o_rev_id": 1136952803, "in": [], "out": [ @@ -183963,7 +183761,7 @@ }, { "str": "are", - "token_id": 20486, + "token_id": 20470, "o_rev_id": 1136952803, "in": [], "out": [ @@ -183972,7 +183770,7 @@ }, { "str": "kinda", - "token_id": 20487, + "token_id": 20471, "o_rev_id": 1136952803, "in": [], "out": [ @@ -183981,7 +183779,7 @@ }, { "str": "hot", - "token_id": 20488, + "token_id": 20472, "o_rev_id": 1136952803, "in": [], "out": [ @@ -183990,7 +183788,7 @@ }, { "str": "tbh", - "token_id": 20489, + "token_id": 20473, "o_rev_id": 1136952803, "in": [], "out": [ @@ -183999,7 +183797,7 @@ }, { "str": ")", - "token_id": 20490, + "token_id": 20474, "o_rev_id": 1136952803, "in": [], "out": [ @@ -184008,7 +183806,7 @@ }, { "str": "idols", - "token_id": 20491, + "token_id": 20475, "o_rev_id": 1136952828, "in": [], "out": [ @@ -184017,7 +183815,7 @@ }, { "str": "4", - "token_id": 20492, + "token_id": 20476, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184026,7 +183824,7 @@ }, { "str": ",", - "token_id": 20493, + "token_id": 20477, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184035,7 +183833,7 @@ }, { "str": "but", - "token_id": 20494, + "token_id": 20478, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184044,7 +183842,7 @@ }, { "str": "nintendo", - "token_id": 20495, + "token_id": 20479, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184053,7 +183851,7 @@ }, { "str": "forgot", - "token_id": 20496, + "token_id": 20480, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184062,7 +183860,7 @@ }, { "str": "the", - "token_id": 20497, + "token_id": 20481, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184071,7 +183869,7 @@ }, { "str": "letter", - "token_id": 20498, + "token_id": 20482, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184080,7 +183878,7 @@ }, { "str": "4", - "token_id": 20499, + "token_id": 20483, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184089,7 +183887,7 @@ }, { "str": "existed", - "token_id": 20500, + "token_id": 20484, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184098,7 +183896,7 @@ }, { "str": "(", - "token_id": 20501, + "token_id": 20485, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184107,7 +183905,7 @@ }, { "str": "obviously", - "token_id": 20502, + "token_id": 20486, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184116,7 +183914,7 @@ }, { "str": ")", - "token_id": 20503, + "token_id": 20487, "o_rev_id": 1136953846, "in": [], "out": [ @@ -184125,14 +183923,14 @@ }, { "str": "compared", - "token_id": 20504, + "token_id": 20488, "o_rev_id": 1137019578, "in": [], "out": [] }, { "str": "decemeber", - "token_id": 20505, + "token_id": 20489, "o_rev_id": 1138063838, "in": [ 1138419614 @@ -184144,7 +183942,7 @@ }, { "str": "10", - "token_id": 20506, + "token_id": 20490, "o_rev_id": 1138063838, "in": [ 1148919560 @@ -184156,7 +183954,7 @@ }, { "str": "13", - "token_id": 20507, + "token_id": 20491, "o_rev_id": 1138063838, "in": [ 1148919560 @@ -184168,7 +183966,7 @@ }, { "str": "3rd", - "token_id": 20508, + "token_id": 20492, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184182,7 +183980,7 @@ }, { "str": "quarter", - "token_id": 20509, + "token_id": 20493, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184196,7 +183994,7 @@ }, { "str": "of", - "token_id": 20510, + "token_id": 20494, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184210,7 +184008,7 @@ }, { "str": "fiscal", - "token_id": 20511, + "token_id": 20495, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184224,7 +184022,7 @@ }, { "str": "year", - "token_id": 20512, + "token_id": 20496, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184238,7 +184036,7 @@ }, { "str": "ending", - "token_id": 20513, + "token_id": 20497, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184252,7 +184050,7 @@ }, { "str": "march", - "token_id": 20514, + "token_id": 20498, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184266,7 +184064,7 @@ }, { "str": "2023", - "token_id": 20515, + "token_id": 20499, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184280,7 +184078,7 @@ }, { "str": "2023", - "token_id": 20516, + "token_id": 20500, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184294,7 +184092,7 @@ }, { "str": "230207", - "token_id": 20517, + "token_id": 20501, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184308,7 +184106,7 @@ }, { "str": "4e", - "token_id": 20518, + "token_id": 20502, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184322,7 +184120,7 @@ }, { "str": "=", - "token_id": 20519, + "token_id": 20503, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184336,7 +184134,7 @@ }, { "str": "18", - "token_id": 20520, + "token_id": 20504, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184350,7 +184148,7 @@ }, { "str": "|", - "token_id": 20521, + "token_id": 20505, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184364,7 +184162,7 @@ }, { "str": "access", - "token_id": 20522, + "token_id": 20506, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184378,7 +184176,7 @@ }, { "str": "-", - "token_id": 20523, + "token_id": 20507, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184392,7 +184190,7 @@ }, { "str": "date", - "token_id": 20524, + "token_id": 20508, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184406,7 +184204,7 @@ }, { "str": "=", - "token_id": 20525, + "token_id": 20509, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184420,7 +184218,7 @@ }, { "str": "february", - "token_id": 20526, + "token_id": 20510, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184434,7 +184232,7 @@ }, { "str": "7", - "token_id": 20527, + "token_id": 20511, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184448,7 +184246,7 @@ }, { "str": ",", - "token_id": 20528, + "token_id": 20512, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184462,7 +184260,7 @@ }, { "str": "2022", - "token_id": 20529, + "token_id": 20513, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184476,7 +184274,7 @@ }, { "str": "|", - "token_id": 20530, + "token_id": 20514, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184490,7 +184288,7 @@ }, { "str": "archive", - "token_id": 20531, + "token_id": 20515, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184504,7 +184302,7 @@ }, { "str": "-", - "token_id": 20532, + "token_id": 20516, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184518,7 +184316,7 @@ }, { "str": "date", - "token_id": 20533, + "token_id": 20517, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184532,7 +184330,7 @@ }, { "str": "=", - "token_id": 20534, + "token_id": 20518, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184546,7 +184344,7 @@ }, { "str": "february", - "token_id": 20535, + "token_id": 20519, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184560,7 +184358,7 @@ }, { "str": "7", - "token_id": 20536, + "token_id": 20520, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184574,7 +184372,7 @@ }, { "str": ",", - "token_id": 20537, + "token_id": 20521, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184588,7 +184386,7 @@ }, { "str": "2023", - "token_id": 20538, + "token_id": 20522, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184602,7 +184400,7 @@ }, { "str": "|", - "token_id": 20539, + "token_id": 20523, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184616,7 +184414,7 @@ }, { "str": "archive", - "token_id": 20540, + "token_id": 20524, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184630,7 +184428,7 @@ }, { "str": "-", - "token_id": 20541, + "token_id": 20525, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184644,7 +184442,7 @@ }, { "str": "url", - "token_id": 20542, + "token_id": 20526, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184658,7 +184456,7 @@ }, { "str": "=", - "token_id": 20543, + "token_id": 20527, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184672,7 +184470,7 @@ }, { "str": "https", - "token_id": 20544, + "token_id": 20528, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184686,7 +184484,7 @@ }, { "str": ":", - "token_id": 20545, + "token_id": 20529, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184700,7 +184498,7 @@ }, { "str": "/", - "token_id": 20546, + "token_id": 20530, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184714,7 +184512,7 @@ }, { "str": "/", - "token_id": 20547, + "token_id": 20531, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184728,7 +184526,7 @@ }, { "str": "web", - "token_id": 20548, + "token_id": 20532, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184742,7 +184540,7 @@ }, { "str": ".", - "token_id": 20549, + "token_id": 20533, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184756,7 +184554,7 @@ }, { "str": "archive", - "token_id": 20550, + "token_id": 20534, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184770,7 +184568,7 @@ }, { "str": ".", - "token_id": 20551, + "token_id": 20535, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184784,7 +184582,7 @@ }, { "str": "org", - "token_id": 20552, + "token_id": 20536, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184798,7 +184596,7 @@ }, { "str": "/", - "token_id": 20553, + "token_id": 20537, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184812,7 +184610,7 @@ }, { "str": "web", - "token_id": 20554, + "token_id": 20538, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184826,7 +184624,7 @@ }, { "str": "/", - "token_id": 20555, + "token_id": 20539, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184840,7 +184638,7 @@ }, { "str": "20230207065826", - "token_id": 20556, + "token_id": 20540, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184854,7 +184652,7 @@ }, { "str": "/", - "token_id": 20557, + "token_id": 20541, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184868,7 +184666,7 @@ }, { "str": "https", - "token_id": 20558, + "token_id": 20542, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184882,7 +184680,7 @@ }, { "str": ":", - "token_id": 20559, + "token_id": 20543, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184896,7 +184694,7 @@ }, { "str": "/", - "token_id": 20560, + "token_id": 20544, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184910,7 +184708,7 @@ }, { "str": "/", - "token_id": 20561, + "token_id": 20545, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184924,7 +184722,7 @@ }, { "str": "www", - "token_id": 20562, + "token_id": 20546, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184938,7 +184736,7 @@ }, { "str": ".", - "token_id": 20563, + "token_id": 20547, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184952,7 +184750,7 @@ }, { "str": "ir", - "token_id": 20564, + "token_id": 20548, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184966,7 +184764,7 @@ }, { "str": "/", - "token_id": 20565, + "token_id": 20549, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184980,7 +184778,7 @@ }, { "str": "pdf", - "token_id": 20566, + "token_id": 20550, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -184994,7 +184792,7 @@ }, { "str": "/", - "token_id": 20567, + "token_id": 20551, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185008,7 +184806,7 @@ }, { "str": "2023", - "token_id": 20568, + "token_id": 20552, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185022,7 +184820,7 @@ }, { "str": "/", - "token_id": 20569, + "token_id": 20553, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185036,7 +184834,7 @@ }, { "str": "230207", - "token_id": 20570, + "token_id": 20554, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185050,7 +184848,7 @@ }, { "str": "_", - "token_id": 20571, + "token_id": 20555, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185064,7 +184862,7 @@ }, { "str": "4e", - "token_id": 20572, + "token_id": 20556, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185078,7 +184876,7 @@ }, { "str": ".", - "token_id": 20573, + "token_id": 20557, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185092,7 +184890,7 @@ }, { "str": "pdf", - "token_id": 20574, + "token_id": 20558, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185106,7 +184904,7 @@ }, { "str": "#", - "token_id": 20575, + "token_id": 20559, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185120,7 +184918,7 @@ }, { "str": "page", - "token_id": 20576, + "token_id": 20560, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185134,7 +184932,7 @@ }, { "str": "=", - "token_id": 20577, + "token_id": 20561, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185148,7 +184946,7 @@ }, { "str": "18", - "token_id": 20578, + "token_id": 20562, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185162,7 +184960,7 @@ }, { "str": "|", - "token_id": 20579, + "token_id": 20563, "o_rev_id": 1138063838, "in": [ 1148919560, @@ -185176,7 +184974,7 @@ }, { "str": "31", - "token_id": 20580, + "token_id": 20564, "o_rev_id": 1138063919, "in": [], "out": [ @@ -185185,7 +184983,7 @@ }, { "str": "december", - "token_id": 20581, + "token_id": 20565, "o_rev_id": 1138063919, "in": [], "out": [ @@ -185194,7 +184992,7 @@ }, { "str": "december", - "token_id": 20582, + "token_id": 20566, "o_rev_id": 1138422912, "in": [ 1148919560 @@ -185206,7 +185004,7 @@ }, { "str": "{{", - "token_id": 20583, + "token_id": 20567, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185215,7 +185013,7 @@ }, { "str": "update", - "token_id": 20584, + "token_id": 20568, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185224,7 +185022,7 @@ }, { "str": "|", - "token_id": 20585, + "token_id": 20569, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185233,7 +185031,7 @@ }, { "str": "part", - "token_id": 20586, + "token_id": 20570, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185242,7 +185040,7 @@ }, { "str": "=", - "token_id": 20587, + "token_id": 20571, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185251,7 +185049,7 @@ }, { "str": "development", - "token_id": 20588, + "token_id": 20572, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185260,7 +185058,7 @@ }, { "str": "|", - "token_id": 20589, + "token_id": 20573, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185269,7 +185067,7 @@ }, { "str": "reason", - "token_id": 20590, + "token_id": 20574, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185278,7 +185076,7 @@ }, { "str": "=", - "token_id": 20591, + "token_id": 20575, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185287,7 +185085,7 @@ }, { "str": "details", - "token_id": 20592, + "token_id": 20576, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185296,7 +185094,7 @@ }, { "str": "from", - "token_id": 20593, + "token_id": 20577, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185305,7 +185103,7 @@ }, { "str": "the", - "token_id": 20594, + "token_id": 20578, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185314,7 +185112,7 @@ }, { "str": "latest", - "token_id": 20595, + "token_id": 20579, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185323,7 +185121,7 @@ }, { "str": "nintendo", - "token_id": 20596, + "token_id": 20580, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185332,7 +185130,7 @@ }, { "str": "direct", - "token_id": 20597, + "token_id": 20581, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185341,7 +185139,7 @@ }, { "str": "need", - "token_id": 20598, + "token_id": 20582, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185350,7 +185148,7 @@ }, { "str": "to", - "token_id": 20599, + "token_id": 20583, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185359,7 +185157,7 @@ }, { "str": "be", - "token_id": 20600, + "token_id": 20584, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185368,7 +185166,7 @@ }, { "str": "added", - "token_id": 20601, + "token_id": 20585, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185377,7 +185175,7 @@ }, { "str": "regarding", - "token_id": 20602, + "token_id": 20586, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185386,7 +185184,7 @@ }, { "str": "the", - "token_id": 20603, + "token_id": 20587, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185395,7 +185193,7 @@ }, { "str": "dlc", - "token_id": 20604, + "token_id": 20588, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185404,7 +185202,7 @@ }, { "str": ".", - "token_id": 20605, + "token_id": 20589, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185413,7 +185211,7 @@ }, { "str": "|", - "token_id": 20606, + "token_id": 20590, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185422,7 +185220,7 @@ }, { "str": "date", - "token_id": 20607, + "token_id": 20591, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185431,7 +185229,7 @@ }, { "str": "=", - "token_id": 20608, + "token_id": 20592, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185440,7 +185238,7 @@ }, { "str": "february", - "token_id": 20609, + "token_id": 20593, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185449,7 +185247,7 @@ }, { "str": "2023", - "token_id": 20610, + "token_id": 20594, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185458,7 +185256,7 @@ }, { "str": "}}", - "token_id": 20611, + "token_id": 20595, "o_rev_id": 1138423094, "in": [], "out": [ @@ -185467,14 +185265,18 @@ }, { "str": "in", - "token_id": 20612, - "o_rev_id": 1138804941, - "in": [], - "out": [] - }, - { - "str": "a", - "token_id": 20613, + "token_id": 20596, + "o_rev_id": 1138804941, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "a", + "token_id": 20597, "o_rev_id": 1138804941, "in": [ 1202097960 @@ -185485,84 +185287,84 @@ }, { "str": "nintendo", - "token_id": 20614, + "token_id": 20598, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "direct", - "token_id": 20615, + "token_id": 20599, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "released", - "token_id": 20616, + "token_id": 20600, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "on", - "token_id": 20617, + "token_id": 20601, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "8", - "token_id": 20618, + "token_id": 20602, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "february", - "token_id": 20619, + "token_id": 20603, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "2023", - "token_id": 20620, + "token_id": 20604, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": ",", - "token_id": 20621, + "token_id": 20605, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "two", - "token_id": 20622, + "token_id": 20606, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "waves", - "token_id": 20623, + "token_id": 20607, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "of", - "token_id": 20624, + "token_id": 20608, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "[[", - "token_id": 20625, + "token_id": 20609, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185571,7 +185373,7 @@ }, { "str": "downloadable", - "token_id": 20626, + "token_id": 20610, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185580,7 +185382,7 @@ }, { "str": "content", - "token_id": 20627, + "token_id": 20611, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185589,7 +185391,7 @@ }, { "str": "|", - "token_id": 20628, + "token_id": 20612, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185598,14 +185400,14 @@ }, { "str": "dlc", - "token_id": 20629, + "token_id": 20613, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "]]", - "token_id": 20630, + "token_id": 20614, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185614,228 +185416,224 @@ }, { "str": "were", - "token_id": 20631, + "token_id": 20615, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "announced", - "token_id": 20632, + "token_id": 20616, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": ",", - "token_id": 20633, + "token_id": 20617, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "with", - "token_id": 20634, + "token_id": 20618, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "the", - "token_id": 20635, + "token_id": 20619, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "first", - "token_id": 20636, + "token_id": 20620, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "wave", - "token_id": 20637, + "token_id": 20621, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "including", - "token_id": 20638, + "token_id": 20622, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "inkopolis", - "token_id": 20639, + "token_id": 20623, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "(", - "token_id": 20640, + "token_id": 20624, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "the", - "token_id": 20641, + "token_id": 20625, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "main", - "token_id": 20642, + "token_id": 20626, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "hub", - "token_id": 20643, + "token_id": 20627, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "from", - "token_id": 20644, + "token_id": 20628, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "the", - "token_id": 20645, + "token_id": 20629, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "first", - "token_id": 20646, + "token_id": 20630, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "game", - "token_id": 20647, + "token_id": 20631, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": ")", - "token_id": 20648, + "token_id": 20632, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "and", - "token_id": 20649, + "token_id": 20633, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "the", - "token_id": 20650, + "token_id": 20634, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "second", - "token_id": 20651, + "token_id": 20635, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "wave", - "token_id": 20652, + "token_id": 20636, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "including", - "token_id": 20653, + "token_id": 20637, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "a", - "token_id": 20654, + "token_id": 20638, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "new", - "token_id": 20655, + "token_id": 20639, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "[[", - "token_id": 20656, + "token_id": 20640, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "single", - "token_id": 20657, + "token_id": 20641, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20658, + "token_id": 20642, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "player", - "token_id": 20659, + "token_id": 20643, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "video", - "token_id": 20660, + "token_id": 20644, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "game", - "token_id": 20661, + "token_id": 20645, "o_rev_id": 1138804941, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "|", - "token_id": 20662, + "token_id": 20646, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185844,39 +185642,35 @@ }, { "str": "single", - "token_id": 20663, + "token_id": 20647, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "player", - "token_id": 20664, + "token_id": 20648, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "campaign", - "token_id": 20665, + "token_id": 20649, "o_rev_id": 1138804941, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": ".", - "token_id": 20666, + "token_id": 20650, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "]]", - "token_id": 20667, + "token_id": 20651, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185885,77 +185679,77 @@ }, { "str": "<", - "token_id": 20668, + "token_id": 20652, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "ref", - "token_id": 20669, + "token_id": 20653, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": ">", - "token_id": 20670, + "token_id": 20654, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "{{", - "token_id": 20671, + "token_id": 20655, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "cite", - "token_id": 20672, + "token_id": 20656, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "news", - "token_id": 20673, + "token_id": 20657, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "|", - "token_id": 20674, + "token_id": 20658, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "date", - "token_id": 20675, + "token_id": 20659, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "=", - "token_id": 20676, + "token_id": 20660, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "2023", - "token_id": 20677, + "token_id": 20661, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20678, + "token_id": 20662, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185964,7 +185758,7 @@ }, { "str": "02", - "token_id": 20679, + "token_id": 20663, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185973,16 +185767,14 @@ }, { "str": "-", - "token_id": 20680, + "token_id": 20664, "o_rev_id": 1138804941, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "08", - "token_id": 20681, + "token_id": 20665, "o_rev_id": 1138804941, "in": [], "out": [ @@ -185991,84 +185783,84 @@ }, { "str": "|", - "token_id": 20682, + "token_id": 20666, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "title", - "token_id": 20683, + "token_id": 20667, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "=", - "token_id": 20684, + "token_id": 20668, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 20685, + "token_id": 20669, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "3", - "token_id": 20686, + "token_id": 20670, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "dlc", - "token_id": 20687, + "token_id": 20671, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "includes", - "token_id": 20688, + "token_id": 20672, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "inkopolis", - "token_id": 20689, + "token_id": 20673, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "and", - "token_id": 20690, + "token_id": 20674, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "new", - "token_id": 20691, + "token_id": 20675, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "campaign", - "token_id": 20692, + "token_id": 20676, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "|", - "token_id": 20693, + "token_id": 20677, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186077,7 +185869,7 @@ }, { "str": "language", - "token_id": 20694, + "token_id": 20678, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186086,7 +185878,7 @@ }, { "str": "=", - "token_id": 20695, + "token_id": 20679, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186095,7 +185887,7 @@ }, { "str": "en", - "token_id": 20696, + "token_id": 20680, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186104,7 +185896,7 @@ }, { "str": "-", - "token_id": 20697, + "token_id": 20681, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186113,7 +185905,7 @@ }, { "str": "gb", - "token_id": 20698, + "token_id": 20682, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186122,7 +185914,7 @@ }, { "str": "|", - "token_id": 20699, + "token_id": 20683, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186131,7 +185923,7 @@ }, { "str": "work", - "token_id": 20700, + "token_id": 20684, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186140,7 +185932,7 @@ }, { "str": "=", - "token_id": 20701, + "token_id": 20685, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186149,7 +185941,7 @@ }, { "str": "eurogamer", - "token_id": 20702, + "token_id": 20686, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186158,7 +185950,7 @@ }, { "str": ".", - "token_id": 20703, + "token_id": 20687, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186167,7 +185959,7 @@ }, { "str": "net", - "token_id": 20704, + "token_id": 20688, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186176,203 +185968,203 @@ }, { "str": "|", - "token_id": 20705, + "token_id": 20689, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "url", - "token_id": 20706, + "token_id": 20690, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "=", - "token_id": 20707, + "token_id": 20691, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "https", - "token_id": 20708, + "token_id": 20692, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": ":", - "token_id": 20709, + "token_id": 20693, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "/", - "token_id": 20710, + "token_id": 20694, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "/", - "token_id": 20711, + "token_id": 20695, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "www", - "token_id": 20712, + "token_id": 20696, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": ".", - "token_id": 20713, + "token_id": 20697, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "eurogamer", - "token_id": 20714, + "token_id": 20698, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": ".", - "token_id": 20715, + "token_id": 20699, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "net", - "token_id": 20716, + "token_id": 20700, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "/", - "token_id": 20717, + "token_id": 20701, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 20718, + "token_id": 20702, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20719, + "token_id": 20703, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "3", - "token_id": 20720, + "token_id": 20704, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20721, + "token_id": 20705, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "dlc", - "token_id": 20722, + "token_id": 20706, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20723, + "token_id": 20707, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "includes", - "token_id": 20724, + "token_id": 20708, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20725, + "token_id": 20709, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "inkopolis", - "token_id": 20726, + "token_id": 20710, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20727, + "token_id": 20711, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "and", - "token_id": 20728, + "token_id": 20712, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20729, + "token_id": 20713, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "new", - "token_id": 20730, + "token_id": 20714, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20731, + "token_id": 20715, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "campaign", - "token_id": 20732, + "token_id": 20716, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "|", - "token_id": 20733, + "token_id": 20717, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186381,7 +186173,7 @@ }, { "str": "access", - "token_id": 20734, + "token_id": 20718, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186390,14 +186182,16 @@ }, { "str": "-", - "token_id": 20735, + "token_id": 20719, "o_rev_id": 1138804941, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 20736, + "token_id": 20720, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186406,7 +186200,7 @@ }, { "str": "=", - "token_id": 20737, + "token_id": 20721, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186415,21 +186209,23 @@ }, { "str": "2023", - "token_id": 20738, + "token_id": 20722, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "-", - "token_id": 20739, + "token_id": 20723, "o_rev_id": 1138804941, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "02", - "token_id": 20740, + "token_id": 20724, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186438,25 +186234,21 @@ }, { "str": "-", - "token_id": 20741, + "token_id": 20725, "o_rev_id": 1138804941, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "11", - "token_id": 20742, + "token_id": 20726, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "}}", - "token_id": 20743, + "token_id": 20727, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186465,7 +186257,7 @@ }, { "str": "<", - "token_id": 20744, + "token_id": 20728, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186474,14 +186266,14 @@ }, { "str": "/", - "token_id": 20745, + "token_id": 20729, "o_rev_id": 1138804941, "in": [], "out": [] }, { "str": "ref", - "token_id": 20746, + "token_id": 20730, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186490,7 +186282,7 @@ }, { "str": ">", - "token_id": 20747, + "token_id": 20731, "o_rev_id": 1138804941, "in": [], "out": [ @@ -186499,14 +186291,14 @@ }, { "str": "squidbeak", - "token_id": 20748, + "token_id": 20732, "o_rev_id": 1138946947, "in": [], "out": [] }, { "str": "[[", - "token_id": 20749, + "token_id": 20733, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -186517,7 +186309,7 @@ }, { "str": "]]", - "token_id": 20750, + "token_id": 20734, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -186528,14 +186320,14 @@ }, { "str": "predecessors", - "token_id": 20751, + "token_id": 20735, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "stuck", - "token_id": 20752, + "token_id": 20736, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186544,7 +186336,7 @@ }, { "str": "it", - "token_id": 20753, + "token_id": 20737, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186553,21 +186345,21 @@ }, { "str": "alternative", - "token_id": 20754, + "token_id": 20738, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "methods", - "token_id": 20755, + "token_id": 20739, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "{{", - "token_id": 20756, + "token_id": 20740, "o_rev_id": 1139401322, "in": [ 1139410278 @@ -186579,7 +186371,7 @@ }, { "str": "notetag", - "token_id": 20757, + "token_id": 20741, "o_rev_id": 1139401322, "in": [ 1139410278 @@ -186591,7 +186383,7 @@ }, { "str": "|", - "token_id": 20758, + "token_id": 20742, "o_rev_id": 1139401322, "in": [ 1139410278 @@ -186603,7 +186395,7 @@ }, { "str": "named", - "token_id": 20759, + "token_id": 20743, "o_rev_id": 1139401322, "in": [ 1139410278 @@ -186614,56 +186406,56 @@ }, { "str": "\"", - "token_id": 20760, + "token_id": 20744, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "ranked", - "token_id": 20761, + "token_id": 20745, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "battles", - "token_id": 20762, + "token_id": 20746, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "\"", - "token_id": 20763, + "token_id": 20747, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "in", - "token_id": 20764, + "token_id": 20748, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "its", - "token_id": 20765, + "token_id": 20749, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "predecessors", - "token_id": 20766, + "token_id": 20750, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "}}", - "token_id": 20767, + "token_id": 20751, "o_rev_id": 1139401322, "in": [ 1139410278 @@ -186675,14 +186467,14 @@ }, { "str": "uses", - "token_id": 20768, + "token_id": 20752, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "if", - "token_id": 20769, + "token_id": 20753, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186691,7 +186483,7 @@ }, { "str": "a", - "token_id": 20770, + "token_id": 20754, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186700,7 +186492,7 @@ }, { "str": "player", - "token_id": 20771, + "token_id": 20755, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186709,7 +186501,7 @@ }, { "str": "gets", - "token_id": 20772, + "token_id": 20756, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186718,7 +186510,7 @@ }, { "str": "splatted", - "token_id": 20773, + "token_id": 20757, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186727,7 +186519,7 @@ }, { "str": ",", - "token_id": 20774, + "token_id": 20758, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186736,34 +186528,34 @@ }, { "str": "another", - "token_id": 20775, + "token_id": 20759, "o_rev_id": 1139401322, "in": [], "out": [ - 1141810947 + 1334188654 ] }, { "str": "player", - "token_id": 20776, + "token_id": 20760, "o_rev_id": 1139401322, "in": [], "out": [ - 1141810947 + 1334188654 ] }, { "str": "can", - "token_id": 20777, + "token_id": 20761, "o_rev_id": 1139401322, "in": [], "out": [ - 1141810947 + 1334188654 ] }, { "str": "save", - "token_id": 20778, + "token_id": 20762, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186772,7 +186564,7 @@ }, { "str": "them", - "token_id": 20779, + "token_id": 20763, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186781,7 +186573,7 @@ }, { "str": "by", - "token_id": 20780, + "token_id": 20764, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186790,7 +186582,7 @@ }, { "str": "inking", - "token_id": 20781, + "token_id": 20765, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186799,7 +186591,7 @@ }, { "str": "them", - "token_id": 20782, + "token_id": 20766, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186808,7 +186600,7 @@ }, { "str": ".", - "token_id": 20783, + "token_id": 20767, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186817,7 +186609,7 @@ }, { "str": "if", - "token_id": 20784, + "token_id": 20768, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186826,7 +186618,7 @@ }, { "str": "the", - "token_id": 20785, + "token_id": 20769, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186835,7 +186627,7 @@ }, { "str": "quota", - "token_id": 20786, + "token_id": 20770, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186844,7 +186636,7 @@ }, { "str": "for", - "token_id": 20787, + "token_id": 20771, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186853,7 +186645,7 @@ }, { "str": "eggs", - "token_id": 20788, + "token_id": 20772, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186862,7 +186654,7 @@ }, { "str": "is", - "token_id": 20789, + "token_id": 20773, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186871,7 +186663,7 @@ }, { "str": "not", - "token_id": 20790, + "token_id": 20774, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186880,7 +186672,7 @@ }, { "str": "met", - "token_id": 20791, + "token_id": 20775, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186889,7 +186681,7 @@ }, { "str": "within", - "token_id": 20792, + "token_id": 20776, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186898,7 +186690,7 @@ }, { "str": "the", - "token_id": 20793, + "token_id": 20777, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186907,7 +186699,7 @@ }, { "str": "time", - "token_id": 20794, + "token_id": 20778, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186916,7 +186708,7 @@ }, { "str": "limit", - "token_id": 20795, + "token_id": 20779, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186925,7 +186717,7 @@ }, { "str": "or", - "token_id": 20796, + "token_id": 20780, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186934,7 +186726,7 @@ }, { "str": "the", - "token_id": 20797, + "token_id": 20781, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186943,7 +186735,7 @@ }, { "str": "entire", - "token_id": 20798, + "token_id": 20782, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186952,7 +186744,7 @@ }, { "str": "team", - "token_id": 20799, + "token_id": 20783, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186961,7 +186753,7 @@ }, { "str": "is", - "token_id": 20800, + "token_id": 20784, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186970,7 +186762,7 @@ }, { "str": "wiped", - "token_id": 20801, + "token_id": 20785, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186979,7 +186771,7 @@ }, { "str": "out", - "token_id": 20802, + "token_id": 20786, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186988,7 +186780,7 @@ }, { "str": ",", - "token_id": 20803, + "token_id": 20787, "o_rev_id": 1139401322, "in": [], "out": [ @@ -186997,7 +186789,7 @@ }, { "str": "the", - "token_id": 20804, + "token_id": 20788, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187006,7 +186798,7 @@ }, { "str": "shift", - "token_id": 20805, + "token_id": 20789, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187015,7 +186807,7 @@ }, { "str": "ends", - "token_id": 20806, + "token_id": 20790, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187024,7 +186816,7 @@ }, { "str": ".", - "token_id": 20807, + "token_id": 20791, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187033,70 +186825,70 @@ }, { "str": "<", - "token_id": 20808, + "token_id": 20792, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "ref", - "token_id": 20809, + "token_id": 20793, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": ">", - "token_id": 20810, + "token_id": 20794, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "{{", - "token_id": 20811, + "token_id": 20795, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "cite", - "token_id": 20812, + "token_id": 20796, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "web", - "token_id": 20813, + "token_id": 20797, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "|", - "token_id": 20814, + "token_id": 20798, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "title", - "token_id": 20815, + "token_id": 20799, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "=", - "token_id": 20816, + "token_id": 20800, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "salmon", - "token_id": 20817, + "token_id": 20801, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187105,7 +186897,7 @@ }, { "str": "run", - "token_id": 20818, + "token_id": 20802, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187114,7 +186906,7 @@ }, { "str": "guide", - "token_id": 20819, + "token_id": 20803, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187123,7 +186915,7 @@ }, { "str": "-", - "token_id": 20820, + "token_id": 20804, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187132,21 +186924,21 @@ }, { "str": "splatoon", - "token_id": 20821, + "token_id": 20805, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "3", - "token_id": 20822, + "token_id": 20806, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "wiki", - "token_id": 20823, + "token_id": 20807, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187155,7 +186947,7 @@ }, { "str": "guide", - "token_id": 20824, + "token_id": 20808, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187164,70 +186956,70 @@ }, { "str": "|", - "token_id": 20825, + "token_id": 20809, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "url", - "token_id": 20826, + "token_id": 20810, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "=", - "token_id": 20827, + "token_id": 20811, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "https", - "token_id": 20828, + "token_id": 20812, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": ":", - "token_id": 20829, + "token_id": 20813, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "/", - "token_id": 20830, + "token_id": 20814, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "/", - "token_id": 20831, + "token_id": 20815, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "www", - "token_id": 20832, + "token_id": 20816, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": ".", - "token_id": 20833, + "token_id": 20817, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "ign", - "token_id": 20834, + "token_id": 20818, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187236,21 +187028,21 @@ }, { "str": ".", - "token_id": 20835, + "token_id": 20819, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "com", - "token_id": 20836, + "token_id": 20820, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "/", - "token_id": 20837, + "token_id": 20821, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187259,7 +187051,7 @@ }, { "str": "wikis", - "token_id": 20838, + "token_id": 20822, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187268,42 +187060,42 @@ }, { "str": "/", - "token_id": 20839, + "token_id": 20823, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 20840, + "token_id": 20824, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "-", - "token_id": 20841, + "token_id": 20825, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "3", - "token_id": 20842, + "token_id": 20826, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "/", - "token_id": 20843, + "token_id": 20827, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "salmon", - "token_id": 20844, + "token_id": 20828, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187312,7 +187104,7 @@ }, { "str": "_", - "token_id": 20845, + "token_id": 20829, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187321,7 +187113,7 @@ }, { "str": "run", - "token_id": 20846, + "token_id": 20830, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187330,7 +187122,7 @@ }, { "str": "_", - "token_id": 20847, + "token_id": 20831, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187339,7 +187131,7 @@ }, { "str": "guide", - "token_id": 20848, + "token_id": 20832, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187348,7 +187140,7 @@ }, { "str": "|", - "token_id": 20849, + "token_id": 20833, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187359,7 +187151,7 @@ }, { "str": "access", - "token_id": 20850, + "token_id": 20834, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187370,7 +187162,7 @@ }, { "str": "-", - "token_id": 20851, + "token_id": 20835, "o_rev_id": 1139401322, "in": [ 1202097960 @@ -187381,7 +187173,7 @@ }, { "str": "date", - "token_id": 20852, + "token_id": 20836, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187392,7 +187184,7 @@ }, { "str": "=", - "token_id": 20853, + "token_id": 20837, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187403,16 +187195,14 @@ }, { "str": "2023", - "token_id": 20854, + "token_id": 20838, "o_rev_id": 1139401322, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "-", - "token_id": 20855, + "token_id": 20839, "o_rev_id": 1139401322, "in": [ 1202097960 @@ -187423,7 +187213,7 @@ }, { "str": "02", - "token_id": 20856, + "token_id": 20840, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187432,21 +187222,21 @@ }, { "str": "-", - "token_id": 20857, + "token_id": 20841, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "14", - "token_id": 20858, + "token_id": 20842, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "|", - "token_id": 20859, + "token_id": 20843, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187457,7 +187247,7 @@ }, { "str": "website", - "token_id": 20860, + "token_id": 20844, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187468,7 +187258,7 @@ }, { "str": "=", - "token_id": 20861, + "token_id": 20845, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187479,7 +187269,7 @@ }, { "str": "ign", - "token_id": 20862, + "token_id": 20846, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187488,7 +187278,7 @@ }, { "str": "|", - "token_id": 20863, + "token_id": 20847, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187497,7 +187287,7 @@ }, { "str": "language", - "token_id": 20864, + "token_id": 20848, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187508,7 +187298,7 @@ }, { "str": "=", - "token_id": 20865, + "token_id": 20849, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187517,7 +187307,7 @@ }, { "str": "en", - "token_id": 20866, + "token_id": 20850, "o_rev_id": 1139401322, "in": [ 1178773007 @@ -187528,7 +187318,7 @@ }, { "str": "}}", - "token_id": 20867, + "token_id": 20851, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187537,7 +187327,7 @@ }, { "str": "<", - "token_id": 20868, + "token_id": 20852, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187546,14 +187336,14 @@ }, { "str": "/", - "token_id": 20869, + "token_id": 20853, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "ref", - "token_id": 20870, + "token_id": 20854, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187562,7 +187352,7 @@ }, { "str": ">", - "token_id": 20871, + "token_id": 20855, "o_rev_id": 1139401322, "in": [], "out": [ @@ -187571,21 +187361,21 @@ }, { "str": "|", - "token_id": 20872, + "token_id": 20856, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "]]", - "token_id": 20873, + "token_id": 20857, "o_rev_id": 1139401322, "in": [], "out": [] }, { "str": "(", - "token_id": 20874, + "token_id": 20858, "o_rev_id": 1139401887, "in": [], "out": [ @@ -187594,7 +187384,7 @@ }, { "str": "known", - "token_id": 20875, + "token_id": 20859, "o_rev_id": 1139401887, "in": [], "out": [ @@ -187603,7 +187393,7 @@ }, { "str": "as", - "token_id": 20876, + "token_id": 20860, "o_rev_id": 1139401887, "in": [], "out": [ @@ -187612,7 +187402,7 @@ }, { "str": ")", - "token_id": 20877, + "token_id": 20861, "o_rev_id": 1139401887, "in": [], "out": [ @@ -187621,7 +187411,7 @@ }, { "str": "{{", - "token_id": 20878, + "token_id": 20862, "o_rev_id": 1139484726, "in": [], "out": [ @@ -187630,7 +187420,7 @@ }, { "str": "reflist", - "token_id": 20879, + "token_id": 20863, "o_rev_id": 1139484726, "in": [], "out": [ @@ -187639,7 +187429,7 @@ }, { "str": "|", - "token_id": 20880, + "token_id": 20864, "o_rev_id": 1139484726, "in": [], "out": [ @@ -187648,7 +187438,7 @@ }, { "str": "group", - "token_id": 20881, + "token_id": 20865, "o_rev_id": 1139484726, "in": [], "out": [ @@ -187657,7 +187447,7 @@ }, { "str": "=", - "token_id": 20882, + "token_id": 20866, "o_rev_id": 1139484726, "in": [], "out": [ @@ -187666,7 +187456,7 @@ }, { "str": "note", - "token_id": 20883, + "token_id": 20867, "o_rev_id": 1139484726, "in": [], "out": [ @@ -187675,7 +187465,7 @@ }, { "str": "}}", - "token_id": 20884, + "token_id": 20868, "o_rev_id": 1139484726, "in": [], "out": [ @@ -187684,35 +187474,35 @@ }, { "str": "{{", - "token_id": 20885, + "token_id": 20869, "o_rev_id": 1139484961, "in": [], "out": [] }, { "str": "efn", - "token_id": 20886, + "token_id": 20870, "o_rev_id": 1139484961, "in": [], "out": [] }, { "str": "|", - "token_id": 20887, + "token_id": 20871, "o_rev_id": 1139484961, "in": [], "out": [] }, { "str": "}}", - "token_id": 20888, + "token_id": 20872, "o_rev_id": 1139484961, "in": [], "out": [] }, { "str": "{{", - "token_id": 20889, + "token_id": 20873, "o_rev_id": 1139547651, "in": [], "out": [ @@ -187721,7 +187511,7 @@ }, { "str": "cn", - "token_id": 20890, + "token_id": 20874, "o_rev_id": 1139547651, "in": [], "out": [ @@ -187730,7 +187520,7 @@ }, { "str": "}}", - "token_id": 20891, + "token_id": 20875, "o_rev_id": 1139547651, "in": [], "out": [ @@ -187739,7 +187529,7 @@ }, { "str": "in", - "token_id": 20892, + "token_id": 20876, "o_rev_id": 1139548319, "in": [], "out": [ @@ -187748,7 +187538,7 @@ }, { "str": "|", - "token_id": 20893, + "token_id": 20877, "o_rev_id": 1139552486, "in": [], "out": [ @@ -187757,7 +187547,7 @@ }, { "str": "date", - "token_id": 20894, + "token_id": 20878, "o_rev_id": 1139552486, "in": [], "out": [ @@ -187766,7 +187556,7 @@ }, { "str": "=", - "token_id": 20895, + "token_id": 20879, "o_rev_id": 1139552486, "in": [], "out": [ @@ -187775,7 +187565,7 @@ }, { "str": "february", - "token_id": 20896, + "token_id": 20880, "o_rev_id": 1139552486, "in": [], "out": [ @@ -187784,7 +187574,7 @@ }, { "str": "2023", - "token_id": 20897, + "token_id": 20881, "o_rev_id": 1139552486, "in": [], "out": [ @@ -187793,231 +187583,231 @@ }, { "str": "<", - "token_id": 20898, + "token_id": 20882, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "ref", - "token_id": 20899, + "token_id": 20883, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ">", - "token_id": 20900, + "token_id": 20884, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "{{", - "token_id": 20901, + "token_id": 20885, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "cite", - "token_id": 20902, + "token_id": 20886, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "web", - "token_id": 20903, + "token_id": 20887, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "|", - "token_id": 20904, + "token_id": 20888, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "title", - "token_id": 20905, + "token_id": 20889, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "=", - "token_id": 20906, + "token_id": 20890, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "game", - "token_id": 20907, + "token_id": 20891, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "modes", - "token_id": 20908, + "token_id": 20892, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "|", - "token_id": 20909, + "token_id": 20893, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "url", - "token_id": 20910, + "token_id": 20894, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "=", - "token_id": 20911, + "token_id": 20895, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "https", - "token_id": 20912, + "token_id": 20896, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ":", - "token_id": 20913, + "token_id": 20897, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20914, + "token_id": 20898, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20915, + "token_id": 20899, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 20916, + "token_id": 20900, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ".", - "token_id": 20917, + "token_id": 20901, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 20918, + "token_id": 20902, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ".", - "token_id": 20919, + "token_id": 20903, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "com", - "token_id": 20920, + "token_id": 20904, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20921, + "token_id": 20905, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "game", - "token_id": 20922, + "token_id": 20906, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "-", - "token_id": 20923, + "token_id": 20907, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "modes", - "token_id": 20924, + "token_id": 20908, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20925, + "token_id": 20909, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "|", - "token_id": 20926, + "token_id": 20910, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "website", - "token_id": 20927, + "token_id": 20911, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "=", - "token_id": 20928, + "token_id": 20912, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 20929, + "token_id": 20913, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "2", - "token_id": 20930, + "token_id": 20914, "o_rev_id": 1139564590, "in": [ 1178773007 @@ -188028,63 +187818,63 @@ }, { "str": "-", - "token_id": 20931, + "token_id": 20915, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 20932, + "token_id": 20916, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "|", - "token_id": 20933, + "token_id": 20917, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "publisher", - "token_id": 20934, + "token_id": 20918, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "=", - "token_id": 20935, + "token_id": 20919, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 20936, + "token_id": 20920, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "|", - "token_id": 20937, + "token_id": 20921, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "access", - "token_id": 20938, + "token_id": 20922, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "-", - "token_id": 20939, + "token_id": 20923, "o_rev_id": 1139564590, "in": [ 1202071552 @@ -188096,35 +187886,35 @@ }, { "str": "date", - "token_id": 20940, + "token_id": 20924, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "=", - "token_id": 20941, + "token_id": 20925, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "february", - "token_id": 20942, + "token_id": 20926, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "15", - "token_id": 20943, + "token_id": 20927, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ",", - "token_id": 20944, + "token_id": 20928, "o_rev_id": 1139564590, "in": [ 1202071552 @@ -188136,7 +187926,7 @@ }, { "str": "2023", - "token_id": 20945, + "token_id": 20929, "o_rev_id": 1139564590, "in": [], "out": [ @@ -188145,21 +187935,21 @@ }, { "str": "|", - "token_id": 20946, + "token_id": 20930, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "url", - "token_id": 20947, + "token_id": 20931, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "-", - "token_id": 20948, + "token_id": 20932, "o_rev_id": 1139564590, "in": [ 1202071552 @@ -188171,21 +187961,21 @@ }, { "str": "status", - "token_id": 20949, + "token_id": 20933, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "=", - "token_id": 20950, + "token_id": 20934, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "live", - "token_id": 20951, + "token_id": 20935, "o_rev_id": 1139564590, "in": [], "out": [ @@ -188194,21 +187984,21 @@ }, { "str": "|", - "token_id": 20952, + "token_id": 20936, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "archive", - "token_id": 20953, + "token_id": 20937, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "-", - "token_id": 20954, + "token_id": 20938, "o_rev_id": 1139564590, "in": [ 1202071552 @@ -188220,231 +188010,231 @@ }, { "str": "url", - "token_id": 20955, + "token_id": 20939, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "=", - "token_id": 20956, + "token_id": 20940, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "https", - "token_id": 20957, + "token_id": 20941, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ":", - "token_id": 20958, + "token_id": 20942, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20959, + "token_id": 20943, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20960, + "token_id": 20944, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "web", - "token_id": 20961, + "token_id": 20945, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ".", - "token_id": 20962, + "token_id": 20946, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "archive", - "token_id": 20963, + "token_id": 20947, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ".", - "token_id": 20964, + "token_id": 20948, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "org", - "token_id": 20965, + "token_id": 20949, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20966, + "token_id": 20950, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "web", - "token_id": 20967, + "token_id": 20951, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20968, + "token_id": 20952, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "20180218210602", - "token_id": 20969, + "token_id": 20953, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20970, + "token_id": 20954, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "https", - "token_id": 20971, + "token_id": 20955, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ":", - "token_id": 20972, + "token_id": 20956, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20973, + "token_id": 20957, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20974, + "token_id": 20958, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 20975, + "token_id": 20959, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ".", - "token_id": 20976, + "token_id": 20960, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 20977, + "token_id": 20961, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ".", - "token_id": 20978, + "token_id": 20962, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "com", - "token_id": 20979, + "token_id": 20963, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20980, + "token_id": 20964, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "game", - "token_id": 20981, + "token_id": 20965, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "-", - "token_id": 20982, + "token_id": 20966, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "modes", - "token_id": 20983, + "token_id": 20967, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20984, + "token_id": 20968, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "|", - "token_id": 20985, + "token_id": 20969, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "archive", - "token_id": 20986, + "token_id": 20970, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "-", - "token_id": 20987, + "token_id": 20971, "o_rev_id": 1139564590, "in": [], "out": [ @@ -188453,14 +188243,14 @@ }, { "str": "date", - "token_id": 20988, + "token_id": 20972, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "=", - "token_id": 20989, + "token_id": 20973, "o_rev_id": 1139564590, "in": [ 1202097960 @@ -188471,21 +188261,21 @@ }, { "str": "february", - "token_id": 20990, + "token_id": 20974, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "18", - "token_id": 20991, + "token_id": 20975, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ",", - "token_id": 20992, + "token_id": 20976, "o_rev_id": 1139564590, "in": [], "out": [ @@ -188494,140 +188284,140 @@ }, { "str": "2018", - "token_id": 20993, + "token_id": 20977, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "}}", - "token_id": 20994, + "token_id": 20978, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "<", - "token_id": 20995, + "token_id": 20979, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "/", - "token_id": 20996, + "token_id": 20980, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "ref", - "token_id": 20997, + "token_id": 20981, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": ">", - "token_id": 20998, + "token_id": 20982, "o_rev_id": 1139564590, "in": [], "out": [] }, { "str": "<", - "token_id": 20999, + "token_id": 20983, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "ref", - "token_id": 21000, + "token_id": 20984, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": ">", - "token_id": 21001, + "token_id": 20985, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "{{", - "token_id": 21002, + "token_id": 20986, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "cite", - "token_id": 21003, + "token_id": 20987, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "web", - "token_id": 21004, + "token_id": 20988, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21005, + "token_id": 20989, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "last", - "token_id": 21006, + "token_id": 20990, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21007, + "token_id": 20991, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "wood", - "token_id": 21008, + "token_id": 20992, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21009, + "token_id": 20993, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "first", - "token_id": 21010, + "token_id": 20994, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21011, + "token_id": 20995, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "wood", - "token_id": 21012, + "token_id": 20996, "o_rev_id": 1139565249, "in": [], "out": [ @@ -188636,35 +188426,35 @@ }, { "str": "|", - "token_id": 21013, + "token_id": 20997, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "date", - "token_id": 21014, + "token_id": 20998, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21015, + "token_id": 20999, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "2022", - "token_id": 21016, + "token_id": 21000, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21017, + "token_id": 21001, "o_rev_id": 1139565249, "in": [], "out": [ @@ -188673,7 +188463,7 @@ }, { "str": "09", - "token_id": 21018, + "token_id": 21002, "o_rev_id": 1139565249, "in": [], "out": [ @@ -188682,7 +188472,7 @@ }, { "str": "-", - "token_id": 21019, + "token_id": 21003, "o_rev_id": 1139565249, "in": [], "out": [ @@ -188691,364 +188481,364 @@ }, { "str": "12", - "token_id": 21020, + "token_id": 21004, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21021, + "token_id": 21005, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "title", - "token_id": 21022, + "token_id": 21006, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21023, + "token_id": 21007, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "xenoblade", - "token_id": 21024, + "token_id": 21008, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "chronicles", - "token_id": 21025, + "token_id": 21009, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "3", - "token_id": 21026, + "token_id": 21010, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "creator", - "token_id": 21027, + "token_id": 21011, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "boosted", - "token_id": 21028, + "token_id": 21012, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21029, + "token_id": 21013, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "3", - "token_id": 21030, + "token_id": 21014, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "during", - "token_id": 21031, + "token_id": 21015, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "development", - "token_id": 21032, + "token_id": 21016, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21033, + "token_id": 21017, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "url", - "token_id": 21034, + "token_id": 21018, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21035, + "token_id": 21019, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "https", - "token_id": 21036, + "token_id": 21020, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": ":", - "token_id": 21037, + "token_id": 21021, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21038, + "token_id": 21022, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21039, + "token_id": 21023, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "www", - "token_id": 21040, + "token_id": 21024, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": ".", - "token_id": 21041, + "token_id": 21025, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "techradar", - "token_id": 21042, + "token_id": 21026, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": ".", - "token_id": 21043, + "token_id": 21027, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "com", - "token_id": 21044, + "token_id": 21028, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21045, + "token_id": 21029, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "news", - "token_id": 21046, + "token_id": 21030, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21047, + "token_id": 21031, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "xenoblade", - "token_id": 21048, + "token_id": 21032, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21049, + "token_id": 21033, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "chronicles", - "token_id": 21050, + "token_id": 21034, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21051, + "token_id": 21035, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "3", - "token_id": 21052, + "token_id": 21036, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21053, + "token_id": 21037, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "creator", - "token_id": 21054, + "token_id": 21038, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21055, + "token_id": 21039, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "boosted", - "token_id": 21056, + "token_id": 21040, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21057, + "token_id": 21041, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21058, + "token_id": 21042, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21059, + "token_id": 21043, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "3", - "token_id": 21060, + "token_id": 21044, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21061, + "token_id": 21045, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "during", - "token_id": 21062, + "token_id": 21046, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21063, + "token_id": 21047, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "development", - "token_id": 21064, + "token_id": 21048, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21065, + "token_id": 21049, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "access", - "token_id": 21066, + "token_id": 21050, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21067, + "token_id": 21051, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "date", - "token_id": 21068, + "token_id": 21052, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21069, + "token_id": 21053, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "2022", - "token_id": 21070, + "token_id": 21054, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21071, + "token_id": 21055, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189057,7 +188847,7 @@ }, { "str": "10", - "token_id": 21072, + "token_id": 21056, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189066,7 +188856,7 @@ }, { "str": "-", - "token_id": 21073, + "token_id": 21057, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189075,70 +188865,70 @@ }, { "str": "12", - "token_id": 21074, + "token_id": 21058, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21075, + "token_id": 21059, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "website", - "token_id": 21076, + "token_id": 21060, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21077, + "token_id": 21061, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "techradar", - "token_id": 21078, + "token_id": 21062, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21079, + "token_id": 21063, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "language", - "token_id": 21080, + "token_id": 21064, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21081, + "token_id": 21065, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "en", - "token_id": 21082, + "token_id": 21066, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "}}", - "token_id": 21083, + "token_id": 21067, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189147,7 +188937,7 @@ }, { "str": "<", - "token_id": 21084, + "token_id": 21068, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189156,14 +188946,14 @@ }, { "str": "/", - "token_id": 21085, + "token_id": 21069, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "ref", - "token_id": 21086, + "token_id": 21070, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189172,7 +188962,7 @@ }, { "str": ">", - "token_id": 21087, + "token_id": 21071, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189181,133 +188971,133 @@ }, { "str": "<", - "token_id": 21088, + "token_id": 21072, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "ref", - "token_id": 21089, + "token_id": 21073, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": ">", - "token_id": 21090, + "token_id": 21074, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "{{", - "token_id": 21091, + "token_id": 21075, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "cite", - "token_id": 21092, + "token_id": 21076, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "web", - "token_id": 21093, + "token_id": 21077, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21094, + "token_id": 21078, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "last", - "token_id": 21095, + "token_id": 21079, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21096, + "token_id": 21080, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "doolan", - "token_id": 21097, + "token_id": 21081, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21098, + "token_id": 21082, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "first", - "token_id": 21099, + "token_id": 21083, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21100, + "token_id": 21084, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "liam", - "token_id": 21101, + "token_id": 21085, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21102, + "token_id": 21086, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "date", - "token_id": 21103, + "token_id": 21087, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21104, + "token_id": 21088, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "2022", - "token_id": 21105, + "token_id": 21089, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21106, + "token_id": 21090, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189316,7 +189106,7 @@ }, { "str": "09", - "token_id": 21107, + "token_id": 21091, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189325,7 +189115,7 @@ }, { "str": "-", - "token_id": 21108, + "token_id": 21092, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189334,378 +189124,378 @@ }, { "str": "11", - "token_id": 21109, + "token_id": 21093, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21110, + "token_id": 21094, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "title", - "token_id": 21111, + "token_id": 21095, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21112, + "token_id": 21096, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "xenoblade", - "token_id": 21113, + "token_id": 21097, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "chronicles", - "token_id": 21114, + "token_id": 21098, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "studio", - "token_id": 21115, + "token_id": 21099, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "monolith", - "token_id": 21116, + "token_id": 21100, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "soft", - "token_id": 21117, + "token_id": 21101, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "helped", - "token_id": 21118, + "token_id": 21102, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "out", - "token_id": 21119, + "token_id": 21103, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "with", - "token_id": 21120, + "token_id": 21104, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21121, + "token_id": 21105, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "3", - "token_id": 21122, + "token_id": 21106, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21123, + "token_id": 21107, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "url", - "token_id": 21124, + "token_id": 21108, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21125, + "token_id": 21109, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "https", - "token_id": 21126, + "token_id": 21110, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": ":", - "token_id": 21127, + "token_id": 21111, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21128, + "token_id": 21112, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21129, + "token_id": 21113, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "www", - "token_id": 21130, + "token_id": 21114, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": ".", - "token_id": 21131, + "token_id": 21115, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 21132, + "token_id": 21116, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": ".", - "token_id": 21133, + "token_id": 21117, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "com", - "token_id": 21134, + "token_id": 21118, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21135, + "token_id": 21119, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "news", - "token_id": 21136, + "token_id": 21120, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21137, + "token_id": 21121, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "2022", - "token_id": 21138, + "token_id": 21122, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21139, + "token_id": 21123, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "09", - "token_id": 21140, + "token_id": 21124, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "/", - "token_id": 21141, + "token_id": 21125, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "xenoblade", - "token_id": 21142, + "token_id": 21126, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21143, + "token_id": 21127, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "chronicles", - "token_id": 21144, + "token_id": 21128, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21145, + "token_id": 21129, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "studio", - "token_id": 21146, + "token_id": 21130, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21147, + "token_id": 21131, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "monolith", - "token_id": 21148, + "token_id": 21132, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21149, + "token_id": 21133, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "soft", - "token_id": 21150, + "token_id": 21134, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21151, + "token_id": 21135, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "helped", - "token_id": 21152, + "token_id": 21136, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21153, + "token_id": 21137, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "out", - "token_id": 21154, + "token_id": 21138, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21155, + "token_id": 21139, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "with", - "token_id": 21156, + "token_id": 21140, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21157, + "token_id": 21141, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21158, + "token_id": 21142, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21159, + "token_id": 21143, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "3", - "token_id": 21160, + "token_id": 21144, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "|", - "token_id": 21161, + "token_id": 21145, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "access", - "token_id": 21162, + "token_id": 21146, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189714,42 +189504,42 @@ }, { "str": "-", - "token_id": 21163, + "token_id": 21147, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "date", - "token_id": 21164, + "token_id": 21148, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "=", - "token_id": 21165, + "token_id": 21149, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "2022", - "token_id": 21166, + "token_id": 21150, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "-", - "token_id": 21167, + "token_id": 21151, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "10", - "token_id": 21168, + "token_id": 21152, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189758,7 +189548,7 @@ }, { "str": "-", - "token_id": 21169, + "token_id": 21153, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189767,7 +189557,7 @@ }, { "str": "12", - "token_id": 21170, + "token_id": 21154, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189776,14 +189566,14 @@ }, { "str": "|", - "token_id": 21171, + "token_id": 21155, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "website", - "token_id": 21172, + "token_id": 21156, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189792,14 +189582,14 @@ }, { "str": "=", - "token_id": 21173, + "token_id": 21157, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 21174, + "token_id": 21158, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189808,7 +189598,7 @@ }, { "str": "life", - "token_id": 21175, + "token_id": 21159, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189817,7 +189607,7 @@ }, { "str": "|", - "token_id": 21176, + "token_id": 21160, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189826,7 +189616,7 @@ }, { "str": "language", - "token_id": 21177, + "token_id": 21161, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189835,7 +189625,7 @@ }, { "str": "=", - "token_id": 21178, + "token_id": 21162, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189844,7 +189634,7 @@ }, { "str": "en", - "token_id": 21179, + "token_id": 21163, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189853,7 +189643,7 @@ }, { "str": "-", - "token_id": 21180, + "token_id": 21164, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189862,7 +189652,7 @@ }, { "str": "gb", - "token_id": 21181, + "token_id": 21165, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189871,7 +189661,7 @@ }, { "str": "}}", - "token_id": 21182, + "token_id": 21166, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189880,7 +189670,7 @@ }, { "str": "<", - "token_id": 21183, + "token_id": 21167, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189889,14 +189679,14 @@ }, { "str": "/", - "token_id": 21184, + "token_id": 21168, "o_rev_id": 1139565249, "in": [], "out": [] }, { "str": "ref", - "token_id": 21185, + "token_id": 21169, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189905,7 +189695,7 @@ }, { "str": ">", - "token_id": 21186, + "token_id": 21170, "o_rev_id": 1139565249, "in": [], "out": [ @@ -189914,7 +189704,7 @@ }, { "str": "splatoon", - "token_id": 21187, + "token_id": 21171, "o_rev_id": 1139580573, "in": [], "out": [ @@ -189923,7 +189713,7 @@ }, { "str": "is", - "token_id": 21188, + "token_id": 21172, "o_rev_id": 1139580573, "in": [], "out": [ @@ -189932,7 +189722,7 @@ }, { "str": "good", - "token_id": 21189, + "token_id": 21173, "o_rev_id": 1139580573, "in": [], "out": [ @@ -189941,14 +189731,14 @@ }, { "str": "3", - "token_id": 21190, + "token_id": 21174, "o_rev_id": 1139580950, "in": [], "out": [] }, { "str": "-", - "token_id": 21191, + "token_id": 21175, "o_rev_id": 1139580950, "in": [], "out": [ @@ -189957,42 +189747,42 @@ }, { "str": "3", - "token_id": 21192, + "token_id": 21176, "o_rev_id": 1139580950, "in": [], "out": [] }, { "str": "-", - "token_id": 21193, + "token_id": 21177, "o_rev_id": 1139580950, "in": [], "out": [] }, { "str": "[[", - "token_id": 21194, + "token_id": 21178, "o_rev_id": 1139580950, "in": [], "out": [] }, { "str": "]]", - "token_id": 21195, + "token_id": 21179, "o_rev_id": 1139580950, "in": [], "out": [] }, { "str": "japan", - "token_id": 21196, + "token_id": 21180, "o_rev_id": 1139580950, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 21197, + "token_id": 21181, "o_rev_id": 1139581131, "in": [], "out": [ @@ -190001,21 +189791,21 @@ }, { "str": "it", - "token_id": 21198, + "token_id": 21182, "o_rev_id": 1139598091, "in": [], "out": [] }, { "str": "is", - "token_id": 21199, + "token_id": 21183, "o_rev_id": 1139598091, "in": [], "out": [] }, { "str": "the", - "token_id": 21200, + "token_id": 21184, "o_rev_id": 1139598091, "in": [ 1176122921 @@ -190026,7 +189816,7 @@ }, { "str": "third", - "token_id": 21201, + "token_id": 21185, "o_rev_id": 1139598091, "in": [ 1149845326, @@ -190039,7 +189829,7 @@ }, { "str": "game", - "token_id": 21202, + "token_id": 21186, "o_rev_id": 1139598091, "in": [ 1176122921 @@ -190050,30 +189840,28 @@ }, { "str": "in", - "token_id": 21203, + "token_id": 21187, "o_rev_id": 1139598091, "in": [], "out": [] }, { "str": "the", - "token_id": 21204, + "token_id": 21188, "o_rev_id": 1139598091, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21205, + "token_id": 21189, "o_rev_id": 1139598091, "in": [], - "out": [ - 1294910906 - ] + "out": [] }, { "str": "series", - "token_id": 21206, + "token_id": 21190, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190082,7 +189870,7 @@ }, { "str": "following", - "token_id": 21207, + "token_id": 21191, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190091,7 +189879,7 @@ }, { "str": "'", - "token_id": 21208, + "token_id": 21192, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190100,7 +189888,7 @@ }, { "str": "'", - "token_id": 21209, + "token_id": 21193, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190109,7 +189897,7 @@ }, { "str": "[[", - "token_id": 21210, + "token_id": 21194, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190118,7 +189906,7 @@ }, { "str": "splatoon", - "token_id": 21211, + "token_id": 21195, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190127,7 +189915,7 @@ }, { "str": "2", - "token_id": 21212, + "token_id": 21196, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190136,7 +189924,7 @@ }, { "str": "]]", - "token_id": 21213, + "token_id": 21197, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190145,7 +189933,7 @@ }, { "str": "'", - "token_id": 21214, + "token_id": 21198, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190154,7 +189942,7 @@ }, { "str": "'", - "token_id": 21215, + "token_id": 21199, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190163,7 +189951,7 @@ }, { "str": ".", - "token_id": 21216, + "token_id": 21200, "o_rev_id": 1139598091, "in": [], "out": [ @@ -190172,112 +189960,112 @@ }, { "str": "dead", - "token_id": 21217, + "token_id": 21201, "o_rev_id": 1139598605, "in": [], "out": [] }, - { - "str": "<", - "token_id": 21218, - "o_rev_id": 1139604253, - "in": [], - "out": [] - }, { "str": "name", - "token_id": 21219, + "token_id": 21202, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "=", - "token_id": 21220, + "token_id": 21203, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "\"", - "token_id": 21221, + "token_id": 21204, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "dotesports", - "token_id": 21222, + "token_id": 21205, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "\"", - "token_id": 21223, + "token_id": 21206, + "o_rev_id": 1139604253, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 21207, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "ref", - "token_id": 21224, + "token_id": 21208, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "name", - "token_id": 21225, + "token_id": 21209, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "=", - "token_id": 21226, + "token_id": 21210, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "\"", - "token_id": 21227, + "token_id": 21211, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "dotesports", - "token_id": 21228, + "token_id": 21212, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "\"", - "token_id": 21229, + "token_id": 21213, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "/", - "token_id": 21230, + "token_id": 21214, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": ">", - "token_id": 21231, + "token_id": 21215, "o_rev_id": 1139604253, "in": [], "out": [] }, { "str": "one", - "token_id": 21232, + "token_id": 21216, "o_rev_id": 1139607026, "in": [ 1229566085 @@ -190288,7 +190076,7 @@ }, { "str": "or", - "token_id": 21233, + "token_id": 21217, "o_rev_id": 1139607026, "in": [ 1229566085 @@ -190299,7 +190087,7 @@ }, { "str": "two", - "token_id": 21234, + "token_id": 21218, "o_rev_id": 1139607026, "in": [ 1229566085 @@ -190310,14 +190098,14 @@ }, { "str": "if", - "token_id": 21235, + "token_id": 21219, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "a", - "token_id": 21236, + "token_id": 21220, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190326,35 +190114,35 @@ }, { "str": "map", - "token_id": 21237, + "token_id": 21221, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "has", - "token_id": 21238, + "token_id": 21222, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "two", - "token_id": 21239, + "token_id": 21223, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "zones", - "token_id": 21240, + "token_id": 21224, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "to", - "token_id": 21241, + "token_id": 21225, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190363,7 +190151,7 @@ }, { "str": "control", - "token_id": 21242, + "token_id": 21226, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190372,7 +190160,7 @@ }, { "str": ",", - "token_id": 21243, + "token_id": 21227, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190381,7 +190169,7 @@ }, { "str": "a", - "token_id": 21244, + "token_id": 21228, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190390,7 +190178,7 @@ }, { "str": "team", - "token_id": 21245, + "token_id": 21229, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190399,14 +190187,14 @@ }, { "str": "must", - "token_id": 21246, + "token_id": 21230, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "control", - "token_id": 21247, + "token_id": 21231, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190415,7 +190203,7 @@ }, { "str": "both", - "token_id": 21248, + "token_id": 21232, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190424,7 +190212,7 @@ }, { "str": "of", - "token_id": 21249, + "token_id": 21233, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190433,7 +190221,7 @@ }, { "str": "them", - "token_id": 21250, + "token_id": 21234, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190442,56 +190230,56 @@ }, { "str": "for", - "token_id": 21251, + "token_id": 21235, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "the", - "token_id": 21252, + "token_id": 21236, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "timer", - "token_id": 21253, + "token_id": 21237, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "to", - "token_id": 21254, + "token_id": 21238, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "count", - "token_id": 21255, + "token_id": 21239, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "down", - "token_id": 21256, + "token_id": 21240, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": ".", - "token_id": 21257, + "token_id": 21241, "o_rev_id": 1139607026, "in": [], "out": [] }, { "str": "functions", - "token_id": 21258, + "token_id": 21242, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190500,7 +190288,7 @@ }, { "str": "similarly", - "token_id": 21259, + "token_id": 21243, "o_rev_id": 1139607026, "in": [ 1229566085 @@ -190512,7 +190300,7 @@ }, { "str": "to", - "token_id": 21260, + "token_id": 21244, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190521,7 +190309,7 @@ }, { "str": "[[", - "token_id": 21261, + "token_id": 21245, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190530,7 +190318,7 @@ }, { "str": "king", - "token_id": 21262, + "token_id": 21246, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190539,7 +190327,7 @@ }, { "str": "of", - "token_id": 21263, + "token_id": 21247, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190548,7 +190336,7 @@ }, { "str": "the", - "token_id": 21264, + "token_id": 21248, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190557,7 +190345,7 @@ }, { "str": "hill", - "token_id": 21265, + "token_id": 21249, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190566,7 +190354,7 @@ }, { "str": "(", - "token_id": 21266, + "token_id": 21250, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190575,7 +190363,7 @@ }, { "str": "game", - "token_id": 21267, + "token_id": 21251, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190584,7 +190372,7 @@ }, { "str": ")", - "token_id": 21268, + "token_id": 21252, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190593,7 +190381,7 @@ }, { "str": "|", - "token_id": 21269, + "token_id": 21253, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190602,7 +190390,7 @@ }, { "str": "king", - "token_id": 21270, + "token_id": 21254, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190611,7 +190399,7 @@ }, { "str": "of", - "token_id": 21271, + "token_id": 21255, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190620,7 +190408,7 @@ }, { "str": "the", - "token_id": 21272, + "token_id": 21256, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190629,7 +190417,7 @@ }, { "str": "hill", - "token_id": 21273, + "token_id": 21257, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190638,7 +190426,7 @@ }, { "str": "]]", - "token_id": 21274, + "token_id": 21258, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190647,7 +190435,7 @@ }, { "str": ",", - "token_id": 21275, + "token_id": 21259, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190656,7 +190444,7 @@ }, { "str": "requiring", - "token_id": 21276, + "token_id": 21260, "o_rev_id": 1139607026, "in": [], "out": [ @@ -190665,35 +190453,35 @@ }, { "str": "three", - "token_id": 21277, + "token_id": 21261, "o_rev_id": 1139607640, "in": [], "out": [] }, { "str": "a", - "token_id": 21278, + "token_id": 21262, "o_rev_id": 1139608388, "in": [], "out": [] }, { "str": "zone", - "token_id": 21279, + "token_id": 21263, "o_rev_id": 1139608388, "in": [], "out": [] }, { "str": "is", - "token_id": 21280, + "token_id": 21264, "o_rev_id": 1139608388, "in": [], "out": [] }, { "str": "it", - "token_id": 21281, + "token_id": 21265, "o_rev_id": 1139608388, "in": [ 1229566085 @@ -190704,7 +190492,7 @@ }, { "str": "is", - "token_id": 21282, + "token_id": 21266, "o_rev_id": 1139608388, "in": [ 1229566085 @@ -190715,14 +190503,14 @@ }, { "str": "teams", - "token_id": 21283, + "token_id": 21267, "o_rev_id": 1139608388, "in": [], "out": [] }, { "str": ",", - "token_id": 21284, + "token_id": 21268, "o_rev_id": 1139608388, "in": [ 1229566085 @@ -190733,7 +190521,7 @@ }, { "str": "and", - "token_id": 21285, + "token_id": 21269, "o_rev_id": 1139608388, "in": [ 1229566085 @@ -190744,7 +190532,7 @@ }, { "str": "the", - "token_id": 21286, + "token_id": 21270, "o_rev_id": 1139608388, "in": [ 1229566085 @@ -190755,35 +190543,35 @@ }, { "str": "both", - "token_id": 21287, + "token_id": 21271, "o_rev_id": 1139608388, "in": [], "out": [] }, { "str": "be", - "token_id": 21288, + "token_id": 21272, "o_rev_id": 1139608388, "in": [], "out": [] }, { "str": "controlled", - "token_id": 21289, + "token_id": 21273, "o_rev_id": 1139608388, "in": [], "out": [] }, { "str": ",", - "token_id": 21290, + "token_id": 21274, "o_rev_id": 1139631288, "in": [], "out": [] }, { "str": "all", - "token_id": 21291, + "token_id": 21275, "o_rev_id": 1139631288, "in": [], "out": [ @@ -190792,14 +190580,14 @@ }, { "str": "featuring", - "token_id": 21292, + "token_id": 21276, "o_rev_id": 1139631288, "in": [], "out": [] }, { "str": "ink", - "token_id": 21293, + "token_id": 21277, "o_rev_id": 1139631288, "in": [ 1215941376 @@ -190810,7 +190598,7 @@ }, { "str": "-", - "token_id": 21294, + "token_id": 21278, "o_rev_id": 1139631288, "in": [], "out": [ @@ -190819,7 +190607,7 @@ }, { "str": "based", - "token_id": 21295, + "token_id": 21279, "o_rev_id": 1139631288, "in": [], "out": [ @@ -190828,7 +190616,7 @@ }, { "str": "combat", - "token_id": 21296, + "token_id": 21280, "o_rev_id": 1139631288, "in": [], "out": [ @@ -190837,7 +190625,7 @@ }, { "str": "first", - "token_id": 21297, + "token_id": 21281, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190848,7 +190636,7 @@ }, { "str": "revealed", - "token_id": 21298, + "token_id": 21282, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190859,7 +190647,7 @@ }, { "str": "in", - "token_id": 21299, + "token_id": 21283, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190870,7 +190658,7 @@ }, { "str": "a", - "token_id": 21300, + "token_id": 21284, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190881,7 +190669,7 @@ }, { "str": "teaser", - "token_id": 21301, + "token_id": 21285, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190892,7 +190680,7 @@ }, { "str": "trailer", - "token_id": 21302, + "token_id": 21286, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190903,7 +190691,7 @@ }, { "str": "on", - "token_id": 21303, + "token_id": 21287, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190914,7 +190702,7 @@ }, { "str": "17", - "token_id": 21304, + "token_id": 21288, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190925,7 +190713,7 @@ }, { "str": "february", - "token_id": 21305, + "token_id": 21289, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190936,7 +190724,7 @@ }, { "str": "2021", - "token_id": 21306, + "token_id": 21290, "o_rev_id": 1139632963, "in": [ 1148919560, @@ -190949,7 +190737,7 @@ }, { "str": "and", - "token_id": 21307, + "token_id": 21291, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190960,7 +190748,7 @@ }, { "str": "was", - "token_id": 21308, + "token_id": 21292, "o_rev_id": 1139632963, "in": [ 1148919560 @@ -190971,7 +190759,7 @@ }, { "str": "subsequently", - "token_id": 21309, + "token_id": 21293, "o_rev_id": 1139632963, "in": [ 1148919560, @@ -190984,7 +190772,7 @@ }, { "str": "{{", - "token_id": 21310, + "token_id": 21294, "o_rev_id": 1139633216, "in": [], "out": [ @@ -190993,7 +190781,7 @@ }, { "str": "under", - "token_id": 21311, + "token_id": 21295, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191002,7 +190790,7 @@ }, { "str": "construction", - "token_id": 21312, + "token_id": 21296, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191011,7 +190799,7 @@ }, { "str": "|", - "token_id": 21313, + "token_id": 21297, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191020,7 +190808,7 @@ }, { "str": "date", - "token_id": 21314, + "token_id": 21298, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191029,7 +190817,7 @@ }, { "str": "=", - "token_id": 21315, + "token_id": 21299, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191038,7 +190826,7 @@ }, { "str": "february", - "token_id": 21316, + "token_id": 21300, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191047,7 +190835,7 @@ }, { "str": "2023", - "token_id": 21317, + "token_id": 21301, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191056,7 +190844,7 @@ }, { "str": "}}", - "token_id": 21318, + "token_id": 21302, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191065,7 +190853,7 @@ }, { "str": "{{", - "token_id": 21319, + "token_id": 21303, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191074,7 +190862,7 @@ }, { "str": "update", - "token_id": 21320, + "token_id": 21304, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191083,7 +190871,7 @@ }, { "str": "|", - "token_id": 21321, + "token_id": 21305, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191092,7 +190880,7 @@ }, { "str": "part", - "token_id": 21322, + "token_id": 21306, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191101,7 +190889,7 @@ }, { "str": "=", - "token_id": 21323, + "token_id": 21307, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191110,7 +190898,7 @@ }, { "str": "development", - "token_id": 21324, + "token_id": 21308, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191119,7 +190907,7 @@ }, { "str": "|", - "token_id": 21325, + "token_id": 21309, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191128,7 +190916,7 @@ }, { "str": "reason", - "token_id": 21326, + "token_id": 21310, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191137,7 +190925,7 @@ }, { "str": "=", - "token_id": 21327, + "token_id": 21311, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191146,7 +190934,7 @@ }, { "str": "details", - "token_id": 21328, + "token_id": 21312, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191155,7 +190943,7 @@ }, { "str": "regarding", - "token_id": 21329, + "token_id": 21313, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191164,7 +190952,7 @@ }, { "str": "the", - "token_id": 21330, + "token_id": 21314, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191173,7 +190961,7 @@ }, { "str": "game", - "token_id": 21331, + "token_id": 21315, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191182,7 +190970,7 @@ }, { "str": "'", - "token_id": 21332, + "token_id": 21316, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191191,7 +190979,7 @@ }, { "str": "s", - "token_id": 21333, + "token_id": 21317, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191200,7 +190988,7 @@ }, { "str": "update", - "token_id": 21334, + "token_id": 21318, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191209,7 +190997,7 @@ }, { "str": "cycle", - "token_id": 21335, + "token_id": 21319, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191218,7 +191006,7 @@ }, { "str": "need", - "token_id": 21336, + "token_id": 21320, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191227,7 +191015,7 @@ }, { "str": "to", - "token_id": 21337, + "token_id": 21321, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191236,7 +191024,7 @@ }, { "str": "be", - "token_id": 21338, + "token_id": 21322, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191245,7 +191033,7 @@ }, { "str": "added", - "token_id": 21339, + "token_id": 21323, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191254,7 +191042,7 @@ }, { "str": "along", - "token_id": 21340, + "token_id": 21324, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191263,7 +191051,7 @@ }, { "str": "with", - "token_id": 21341, + "token_id": 21325, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191272,7 +191060,7 @@ }, { "str": "any", - "token_id": 21342, + "token_id": 21326, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191281,7 +191069,7 @@ }, { "str": "other", - "token_id": 21343, + "token_id": 21327, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191290,7 +191078,7 @@ }, { "str": "relevant", - "token_id": 21344, + "token_id": 21328, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191299,7 +191087,7 @@ }, { "str": "info", - "token_id": 21345, + "token_id": 21329, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191308,7 +191096,7 @@ }, { "str": "|", - "token_id": 21346, + "token_id": 21330, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191317,7 +191105,7 @@ }, { "str": "date", - "token_id": 21347, + "token_id": 21331, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191326,7 +191114,7 @@ }, { "str": "=", - "token_id": 21348, + "token_id": 21332, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191335,7 +191123,7 @@ }, { "str": "february", - "token_id": 21349, + "token_id": 21333, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191344,7 +191132,7 @@ }, { "str": "2023", - "token_id": 21350, + "token_id": 21334, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191353,7 +191141,7 @@ }, { "str": "}}", - "token_id": 21351, + "token_id": 21335, "o_rev_id": 1139633216, "in": [], "out": [ @@ -191362,7 +191150,7 @@ }, { "str": ".", - "token_id": 21352, + "token_id": 21336, "o_rev_id": 1139678244, "in": [ 1178773007 @@ -191373,7 +191161,7 @@ }, { "str": "'", - "token_id": 21353, + "token_id": 21337, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -191384,7 +191172,7 @@ }, { "str": "'", - "token_id": 21354, + "token_id": 21338, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -191395,7 +191183,7 @@ }, { "str": "splatoon", - "token_id": 21355, + "token_id": 21339, "o_rev_id": 1139709691, "in": [ 1202097960, @@ -191408,7 +191196,7 @@ }, { "str": "3", - "token_id": 21356, + "token_id": 21340, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -191419,322 +191207,322 @@ }, { "str": "'", - "token_id": 21357, + "token_id": 21341, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "'", - "token_id": 21358, + "token_id": 21342, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "direct", - "token_id": 21359, + "token_id": 21343, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "on", - "token_id": 21360, + "token_id": 21344, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "10", - "token_id": 21361, + "token_id": 21345, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "august", - "token_id": 21362, + "token_id": 21346, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "2022", - "token_id": 21363, + "token_id": 21347, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ",", - "token_id": 21364, + "token_id": 21348, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 21365, + "token_id": 21349, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "confirmed", - "token_id": 21366, + "token_id": 21350, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "that", - "token_id": 21367, + "token_id": 21351, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "the", - "token_id": 21368, + "token_id": 21352, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "game", - "token_id": 21369, + "token_id": 21353, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "would", - "token_id": 21370, + "token_id": 21354, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "receive", - "token_id": 21371, + "token_id": 21355, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "two", - "token_id": 21372, + "token_id": 21356, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "years", - "token_id": 21373, + "token_id": 21357, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "of", - "token_id": 21374, + "token_id": 21358, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "updates", - "token_id": 21375, + "token_id": 21359, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "releasing", - "token_id": 21376, + "token_id": 21360, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "every", - "token_id": 21377, + "token_id": 21361, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "three", - "token_id": 21378, + "token_id": 21362, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "months", - "token_id": 21379, + "token_id": 21363, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ",", - "token_id": 21380, + "token_id": 21364, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "which", - "token_id": 21381, + "token_id": 21365, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "would", - "token_id": 21382, + "token_id": 21366, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "feature", - "token_id": 21383, + "token_id": 21367, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "the", - "token_id": 21384, + "token_id": 21368, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "addition", - "token_id": 21385, + "token_id": 21369, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "of", - "token_id": 21386, + "token_id": 21370, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "more", - "token_id": 21387, + "token_id": 21371, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "stages", - "token_id": 21388, + "token_id": 21372, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "and", - "token_id": 21389, + "token_id": 21373, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "weapons", - "token_id": 21390, + "token_id": 21374, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ",", - "token_id": 21391, + "token_id": 21375, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "as", - "token_id": 21392, + "token_id": 21376, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "well", - "token_id": 21393, + "token_id": 21377, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "as", - "token_id": 21394, + "token_id": 21378, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "large", - "token_id": 21395, + "token_id": 21379, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21396, + "token_id": 21380, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "scale", - "token_id": 21397, + "token_id": 21381, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "paid", - "token_id": 21398, + "token_id": 21382, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "[[", - "token_id": 21399, + "token_id": 21383, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "downloadable", - "token_id": 21400, + "token_id": 21384, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "content", - "token_id": 21401, + "token_id": 21385, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "|", - "token_id": 21402, + "token_id": 21386, "o_rev_id": 1139709691, "in": [], "out": [ @@ -191743,18 +191531,14 @@ }, { "str": "dlc", - "token_id": 21403, + "token_id": 21387, "o_rev_id": 1139709691, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "]]", - "token_id": 21404, + "token_id": 21388, "o_rev_id": 1139709691, "in": [], "out": [ @@ -191763,147 +191547,151 @@ }, { "str": ".", - "token_id": 21405, + "token_id": 21389, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "<", - "token_id": 21406, + "token_id": 21390, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "ref", - "token_id": 21407, + "token_id": 21391, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ">", - "token_id": 21408, + "token_id": 21392, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "{{", - "token_id": 21409, + "token_id": 21393, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "cite", - "token_id": 21410, + "token_id": 21394, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "web", - "token_id": 21411, + "token_id": 21395, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "|", - "token_id": 21412, + "token_id": 21396, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "last", - "token_id": 21413, + "token_id": 21397, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21414, + "token_id": 21398, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "shutler", - "token_id": 21415, + "token_id": 21399, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "|", - "token_id": 21416, + "token_id": 21400, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "first", - "token_id": 21417, + "token_id": 21401, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21418, + "token_id": 21402, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "ali", - "token_id": 21419, + "token_id": 21403, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "|", - "token_id": 21420, + "token_id": 21404, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "date", - "token_id": 21421, + "token_id": 21405, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21422, + "token_id": 21406, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "2022", - "token_id": 21423, + "token_id": 21407, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21424, + "token_id": 21408, "o_rev_id": 1139709691, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "08", - "token_id": 21425, + "token_id": 21409, "o_rev_id": 1139709691, "in": [], "out": [ @@ -191912,7 +191700,7 @@ }, { "str": "-", - "token_id": 21426, + "token_id": 21410, "o_rev_id": 1139709691, "in": [], "out": [ @@ -191921,7 +191709,7 @@ }, { "str": "10", - "token_id": 21427, + "token_id": 21411, "o_rev_id": 1139709691, "in": [], "out": [ @@ -191930,77 +191718,77 @@ }, { "str": "|", - "token_id": 21428, + "token_id": 21412, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "title", - "token_id": 21429, + "token_id": 21413, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21430, + "token_id": 21414, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 21431, + "token_id": 21415, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "confirms", - "token_id": 21432, + "token_id": 21416, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "post", - "token_id": 21433, + "token_id": 21417, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21434, + "token_id": 21418, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "release", - "token_id": 21435, + "token_id": 21419, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "roadmap", - "token_id": 21436, + "token_id": 21420, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "for", - "token_id": 21437, + "token_id": 21421, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "‘splatoon", - "token_id": 21438, + "token_id": 21422, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192009,14 +191797,14 @@ }, { "str": "3", - "token_id": 21439, + "token_id": 21423, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "’", - "token_id": 21440, + "token_id": 21424, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192025,367 +191813,357 @@ }, { "str": "alongside", - "token_id": 21441, + "token_id": 21425, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "new", - "token_id": 21442, + "token_id": 21426, "o_rev_id": 1139709691, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "weapons", - "token_id": 21443, + "token_id": 21427, "o_rev_id": 1139709691, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "|", - "token_id": 21444, + "token_id": 21428, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "url", - "token_id": 21445, + "token_id": 21429, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21446, + "token_id": 21430, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "https", - "token_id": 21447, + "token_id": 21431, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ":", - "token_id": 21448, + "token_id": 21432, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21449, + "token_id": 21433, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21450, + "token_id": 21434, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "www", - "token_id": 21451, + "token_id": 21435, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ".", - "token_id": 21452, + "token_id": 21436, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "nme", - "token_id": 21453, + "token_id": 21437, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ".", - "token_id": 21454, + "token_id": 21438, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "com", - "token_id": 21455, + "token_id": 21439, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21456, + "token_id": 21440, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "news", - "token_id": 21457, + "token_id": 21441, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21458, + "token_id": 21442, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "gaming", - "token_id": 21459, + "token_id": 21443, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21460, + "token_id": 21444, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "news", - "token_id": 21461, + "token_id": 21445, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21462, + "token_id": 21446, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 21463, + "token_id": 21447, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21464, + "token_id": 21448, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "confirms", - "token_id": 21465, + "token_id": 21449, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21466, + "token_id": 21450, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "post", - "token_id": 21467, + "token_id": 21451, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21468, + "token_id": 21452, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "release", - "token_id": 21469, + "token_id": 21453, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21470, + "token_id": 21454, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "roadmap", - "token_id": 21471, + "token_id": 21455, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21472, + "token_id": 21456, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "for", - "token_id": 21473, + "token_id": 21457, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21474, + "token_id": 21458, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21475, + "token_id": 21459, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21476, + "token_id": 21460, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "3", - "token_id": 21477, + "token_id": 21461, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21478, + "token_id": 21462, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "alongside", - "token_id": 21479, + "token_id": 21463, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21480, + "token_id": 21464, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "new", - "token_id": 21481, + "token_id": 21465, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21482, + "token_id": 21466, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "weapons", - "token_id": 21483, + "token_id": 21467, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21484, + "token_id": 21468, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "3287192", - "token_id": 21485, + "token_id": 21469, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "|", - "token_id": 21486, + "token_id": 21470, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "access", - "token_id": 21487, + "token_id": 21471, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21488, + "token_id": 21472, "o_rev_id": 1139709691, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "date", - "token_id": 21489, + "token_id": 21473, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21490, + "token_id": 21474, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "2023", - "token_id": 21491, + "token_id": 21475, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192396,14 +192174,14 @@ }, { "str": "-", - "token_id": 21492, + "token_id": 21476, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "02", - "token_id": 21493, + "token_id": 21477, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192412,14 +192190,14 @@ }, { "str": "-", - "token_id": 21494, + "token_id": 21478, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "16", - "token_id": 21495, + "token_id": 21479, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192428,28 +192206,28 @@ }, { "str": "|", - "token_id": 21496, + "token_id": 21480, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "website", - "token_id": 21497, + "token_id": 21481, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21498, + "token_id": 21482, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "nme", - "token_id": 21499, + "token_id": 21483, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192458,7 +192236,7 @@ }, { "str": "|", - "token_id": 21500, + "token_id": 21484, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192469,7 +192247,7 @@ }, { "str": "language", - "token_id": 21501, + "token_id": 21485, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192480,14 +192258,14 @@ }, { "str": "=", - "token_id": 21502, + "token_id": 21486, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "en", - "token_id": 21503, + "token_id": 21487, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192498,14 +192276,14 @@ }, { "str": "-", - "token_id": 21504, + "token_id": 21488, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "gb", - "token_id": 21505, + "token_id": 21489, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192514,7 +192292,7 @@ }, { "str": "}}", - "token_id": 21506, + "token_id": 21490, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192523,7 +192301,7 @@ }, { "str": "<", - "token_id": 21507, + "token_id": 21491, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192532,14 +192310,14 @@ }, { "str": "/", - "token_id": 21508, + "token_id": 21492, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "ref", - "token_id": 21509, + "token_id": 21493, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192548,7 +192326,7 @@ }, { "str": ">", - "token_id": 21510, + "token_id": 21494, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192557,7 +192335,7 @@ }, { "str": "<", - "token_id": 21511, + "token_id": 21495, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192568,14 +192346,18 @@ }, { "str": "ref", - "token_id": 21512, + "token_id": 21496, "o_rev_id": 1139709691, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": ">", - "token_id": 21513, + "token_id": 21497, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192586,7 +192368,7 @@ }, { "str": "{{", - "token_id": 21514, + "token_id": 21498, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192597,21 +192379,29 @@ }, { "str": "cite", - "token_id": 21515, + "token_id": 21499, "o_rev_id": 1139709691, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "web", - "token_id": 21516, + "token_id": 21500, "o_rev_id": 1139709691, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 21517, + "token_id": 21501, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192622,14 +192412,14 @@ }, { "str": "date", - "token_id": 21518, + "token_id": 21502, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21519, + "token_id": 21503, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192640,14 +192430,14 @@ }, { "str": "2022", - "token_id": 21520, + "token_id": 21504, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21521, + "token_id": 21505, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192656,7 +192446,7 @@ }, { "str": "08", - "token_id": 21522, + "token_id": 21506, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192665,7 +192455,7 @@ }, { "str": "-", - "token_id": 21523, + "token_id": 21507, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192674,7 +192464,7 @@ }, { "str": "10", - "token_id": 21524, + "token_id": 21508, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192683,274 +192473,266 @@ }, { "str": "|", - "token_id": 21525, + "token_id": 21509, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "title", - "token_id": 21526, + "token_id": 21510, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21527, + "token_id": 21511, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21528, + "token_id": 21512, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "3", - "token_id": 21529, + "token_id": 21513, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "promises", - "token_id": 21530, + "token_id": 21514, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "2", - "token_id": 21531, + "token_id": 21515, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "years", - "token_id": 21532, + "token_id": 21516, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "of", - "token_id": 21533, + "token_id": 21517, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "support", - "token_id": 21534, + "token_id": 21518, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ",", - "token_id": 21535, + "token_id": 21519, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "expansion", - "token_id": 21536, + "token_id": 21520, "o_rev_id": 1139709691, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "teased", - "token_id": 21537, + "token_id": 21521, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "|", - "token_id": 21538, + "token_id": 21522, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "url", - "token_id": 21539, + "token_id": 21523, "o_rev_id": 1139709691, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "=", - "token_id": 21540, + "token_id": 21524, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "https", - "token_id": 21541, + "token_id": 21525, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ":", - "token_id": 21542, + "token_id": 21526, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21543, + "token_id": 21527, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21544, + "token_id": 21528, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "www", - "token_id": 21545, + "token_id": 21529, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ".", - "token_id": 21546, + "token_id": 21530, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "digitaltrends", - "token_id": 21547, + "token_id": 21531, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": ".", - "token_id": 21548, + "token_id": 21532, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "com", - "token_id": 21549, + "token_id": 21533, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21550, + "token_id": 21534, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "gaming", - "token_id": 21551, + "token_id": 21535, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21552, + "token_id": 21536, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21553, + "token_id": 21537, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21554, + "token_id": 21538, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "3", - "token_id": 21555, + "token_id": 21539, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21556, + "token_id": 21540, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "support", - "token_id": 21557, + "token_id": 21541, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21558, + "token_id": 21542, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "update", - "token_id": 21559, + "token_id": 21543, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "/", - "token_id": 21560, + "token_id": 21544, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "|", - "token_id": 21561, + "token_id": 21545, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "access", - "token_id": 21562, + "token_id": 21546, "o_rev_id": 1139709691, "in": [], "out": [ @@ -192959,21 +192741,23 @@ }, { "str": "-", - "token_id": 21563, + "token_id": 21547, "o_rev_id": 1139709691, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 21564, + "token_id": 21548, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "=", - "token_id": 21565, + "token_id": 21549, "o_rev_id": 1139709691, "in": [ 1202097960 @@ -192984,14 +192768,14 @@ }, { "str": "2023", - "token_id": 21566, + "token_id": 21550, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21567, + "token_id": 21551, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193000,14 +192784,14 @@ }, { "str": "02", - "token_id": 21568, + "token_id": 21552, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "-", - "token_id": 21569, + "token_id": 21553, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193016,7 +192800,7 @@ }, { "str": "16", - "token_id": 21570, + "token_id": 21554, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193025,14 +192809,14 @@ }, { "str": "|", - "token_id": 21571, + "token_id": 21555, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "website", - "token_id": 21572, + "token_id": 21556, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193041,14 +192825,14 @@ }, { "str": "=", - "token_id": 21573, + "token_id": 21557, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "digital", - "token_id": 21574, + "token_id": 21558, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193057,7 +192841,7 @@ }, { "str": "trends", - "token_id": 21575, + "token_id": 21559, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193066,14 +192850,14 @@ }, { "str": "|", - "token_id": 21576, + "token_id": 21560, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "language", - "token_id": 21577, + "token_id": 21561, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193082,14 +192866,14 @@ }, { "str": "=", - "token_id": 21578, + "token_id": 21562, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "en", - "token_id": 21579, + "token_id": 21563, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193098,7 +192882,7 @@ }, { "str": "}}", - "token_id": 21580, + "token_id": 21564, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193107,7 +192891,7 @@ }, { "str": "<", - "token_id": 21581, + "token_id": 21565, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193116,14 +192900,14 @@ }, { "str": "/", - "token_id": 21582, + "token_id": 21566, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "ref", - "token_id": 21583, + "token_id": 21567, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193132,7 +192916,7 @@ }, { "str": ">", - "token_id": 21584, + "token_id": 21568, "o_rev_id": 1139709691, "in": [], "out": [ @@ -193141,21 +192925,21 @@ }, { "str": "in", - "token_id": 21585, + "token_id": 21569, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "a", - "token_id": 21586, + "token_id": 21570, "o_rev_id": 1139709691, "in": [], "out": [] }, { "str": "the", - "token_id": 21587, + "token_id": 21571, "o_rev_id": 1139711715, "in": [ 1229566085 @@ -193166,14 +192950,14 @@ }, { "str": "rainmaker", - "token_id": 21588, + "token_id": 21572, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "gamemode", - "token_id": 21589, + "token_id": 21573, "o_rev_id": 1139711715, "in": [], "out": [ @@ -193182,14 +192966,14 @@ }, { "str": "functions", - "token_id": 21590, + "token_id": 21574, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "similarly", - "token_id": 21591, + "token_id": 21575, "o_rev_id": 1139711715, "in": [ 1229566085 @@ -193200,315 +192984,315 @@ }, { "str": "to", - "token_id": 21592, + "token_id": 21576, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "[[", - "token_id": 21593, + "token_id": 21577, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "capture", - "token_id": 21594, + "token_id": 21578, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "the", - "token_id": 21595, + "token_id": 21579, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "flag", - "token_id": 21596, + "token_id": 21580, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "]]", - "token_id": 21597, + "token_id": 21581, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": ",", - "token_id": 21598, + "token_id": 21582, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "which", - "token_id": 21599, + "token_id": 21583, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "the", - "token_id": 21600, + "token_id": 21584, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "center", - "token_id": 21601, + "token_id": 21585, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "of", - "token_id": 21602, + "token_id": 21586, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "the", - "token_id": 21603, + "token_id": 21587, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "stage", - "token_id": 21604, + "token_id": 21588, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "various", - "token_id": 21605, + "token_id": 21589, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "checkpoints", - "token_id": 21606, + "token_id": 21590, "o_rev_id": 1139711715, "in": [], "out": [] }, { "str": "players", - "token_id": 21607, + "token_id": 21591, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "by", - "token_id": 21608, + "token_id": 21592, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "fighting", - "token_id": 21609, + "token_id": 21593, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "invading", - "token_id": 21610, + "token_id": 21594, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "salmonids", - "token_id": 21611, + "token_id": 21595, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "on", - "token_id": 21612, + "token_id": 21596, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "an", - "token_id": 21613, + "token_id": 21597, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "online", - "token_id": 21614, + "token_id": 21598, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "competitive", - "token_id": 21615, + "token_id": 21599, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "map", - "token_id": 21616, + "token_id": 21600, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": ",", - "token_id": 21617, + "token_id": 21601, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "instead", - "token_id": 21618, + "token_id": 21602, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "of", - "token_id": 21619, + "token_id": 21603, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "the", - "token_id": 21620, + "token_id": 21604, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "unique", - "token_id": 21621, + "token_id": 21605, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "stages", - "token_id": 21622, + "token_id": 21606, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "typically", - "token_id": 21623, + "token_id": 21607, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "used", - "token_id": 21624, + "token_id": 21608, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "for", - "token_id": 21625, + "token_id": 21609, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "salmon", - "token_id": 21626, + "token_id": 21610, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "run", - "token_id": 21627, + "token_id": 21611, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "participating", - "token_id": 21628, + "token_id": 21612, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "receive", - "token_id": 21629, + "token_id": 21613, "o_rev_id": 1139882003, "in": [], "out": [] }, { "str": "archive", - "token_id": 21630, + "token_id": 21614, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 21631, + "token_id": 21615, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21632, + "token_id": 21616, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21633, + "token_id": 21617, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21634, + "token_id": 21618, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21635, + "token_id": 21619, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21636, + "token_id": 21620, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193519,7 +193303,7 @@ }, { "str": ".", - "token_id": 21637, + "token_id": 21621, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193530,7 +193314,7 @@ }, { "str": "archive", - "token_id": 21638, + "token_id": 21622, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193541,7 +193325,7 @@ }, { "str": ".", - "token_id": 21639, + "token_id": 21623, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193552,7 +193336,7 @@ }, { "str": "org", - "token_id": 21640, + "token_id": 21624, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193563,7 +193347,7 @@ }, { "str": "web", - "token_id": 21641, + "token_id": 21625, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193574,7 +193358,7 @@ }, { "str": "20221014212721", - "token_id": 21642, + "token_id": 21626, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193585,7 +193369,7 @@ }, { "str": "https", - "token_id": 21643, + "token_id": 21627, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193596,315 +193380,322 @@ }, { "str": ":", - "token_id": 21644, + "token_id": 21628, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 21645, + "token_id": 21629, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21646, + "token_id": 21630, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21647, + "token_id": 21631, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21648, + "token_id": 21632, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 21649, + "token_id": 21633, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "xenoblade", - "token_id": 21650, + "token_id": 21634, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "chronicles", - "token_id": 21651, + "token_id": 21635, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "creator", - "token_id": 21652, + "token_id": 21636, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "boosted", - "token_id": 21653, + "token_id": 21637, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "during", - "token_id": 21654, + "token_id": 21638, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "development", - "token_id": 21655, + "token_id": 21639, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21656, + "token_id": 21640, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 21657, + "token_id": 21641, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 21658, + "token_id": 21642, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21659, + "token_id": 21643, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "september", + "token_id": 21644, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21660, + "token_id": 21645, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21661, + "token_id": 21646, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21662, + "token_id": 21647, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21663, + "token_id": 21648, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21664, + "token_id": 21649, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21665, + "token_id": 21650, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21666, + "token_id": 21651, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21667, + "token_id": 21652, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 21668, + "token_id": 21653, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21669, + "token_id": 21654, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220911172034", - "token_id": 21670, + "token_id": 21655, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21671, + "token_id": 21656, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21672, + "token_id": 21657, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 21673, + "token_id": 21658, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21674, + "token_id": 21659, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 21675, + "token_id": 21660, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21676, + "token_id": 21661, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21677, + "token_id": 21662, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 21678, + "token_id": 21663, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "xenoblade", - "token_id": 21679, + "token_id": 21664, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "chronicles", - "token_id": 21680, + "token_id": 21665, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "studio", - "token_id": 21681, + "token_id": 21666, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "monolith", - "token_id": 21682, + "token_id": 21667, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "soft", - "token_id": 21683, + "token_id": 21668, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "helped", - "token_id": 21684, + "token_id": 21669, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "out", - "token_id": 21685, + "token_id": 21670, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "with", - "token_id": 21686, + "token_id": 21671, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 21687, + "token_id": 21672, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21688, + "token_id": 21673, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193915,7 +193706,7 @@ }, { "str": "status", - "token_id": 21689, + "token_id": 21674, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193926,18 +193717,7 @@ }, { "str": "live", - "token_id": 21690, - "o_rev_id": 1140535097, - "in": [ - 1180622889 - ], - "out": [ - 1180622793 - ] - }, - { - "str": "/", - "token_id": 21691, + "token_id": 21675, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -193948,7 +193728,7 @@ }, { "str": "archive", - "token_id": 21692, + "token_id": 21676, "o_rev_id": 1140535097, "in": [], "out": [ @@ -193957,7 +193737,7 @@ }, { "str": "january", - "token_id": 21693, + "token_id": 21677, "o_rev_id": 1140535097, "in": [], "out": [ @@ -193966,77 +193746,77 @@ }, { "str": "archive", - "token_id": 21694, + "token_id": 21678, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21695, + "token_id": 21679, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21696, + "token_id": 21680, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21697, + "token_id": 21681, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21698, + "token_id": 21682, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21699, + "token_id": 21683, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21700, + "token_id": 21684, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21701, + "token_id": 21685, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 21702, + "token_id": 21686, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21703, + "token_id": 21687, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20230110011936", - "token_id": 21704, + "token_id": 21688, "o_rev_id": 1140535097, "in": [], "out": [ @@ -194045,49 +193825,49 @@ }, { "str": "https", - "token_id": 21705, + "token_id": 21689, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21706, + "token_id": 21690, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 21707, + "token_id": 21691, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21708, + "token_id": 21692, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21709, + "token_id": 21693, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21710, + "token_id": 21694, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "store", - "token_id": 21711, + "token_id": 21695, "o_rev_id": 1140535097, "in": [], "out": [ @@ -194096,7 +193876,7 @@ }, { "str": "products", - "token_id": 21712, + "token_id": 21696, "o_rev_id": 1140535097, "in": [], "out": [ @@ -194105,21 +193885,21 @@ }, { "str": "splatoon", - "token_id": 21713, + "token_id": 21697, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 21714, + "token_id": 21698, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 21715, + "token_id": 21699, "o_rev_id": 1140535097, "in": [], "out": [ @@ -194128,7 +193908,7 @@ }, { "str": "url", - "token_id": 21716, + "token_id": 21700, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -194139,7 +193919,7 @@ }, { "str": "status", - "token_id": 21717, + "token_id": 21701, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -194150,7 +193930,7 @@ }, { "str": "live", - "token_id": 21718, + "token_id": 21702, "o_rev_id": 1140535097, "in": [ 1180622889 @@ -194161,7 +193941,7 @@ }, { "str": "archive", - "token_id": 21719, + "token_id": 21703, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194172,7 +193952,7 @@ }, { "str": "2", - "token_id": 21720, + "token_id": 21704, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194183,7 +193963,7 @@ }, { "str": "may", - "token_id": 21721, + "token_id": 21705, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194194,7 +193974,7 @@ }, { "str": "archive", - "token_id": 21722, + "token_id": 21706, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194205,7 +193985,7 @@ }, { "str": "url", - "token_id": 21723, + "token_id": 21707, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194216,7 +193996,7 @@ }, { "str": "https", - "token_id": 21724, + "token_id": 21708, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194227,7 +194007,73 @@ }, { "str": ":", - "token_id": 21725, + "token_id": 21709, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "web", + "token_id": 21710, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": ".", + "token_id": 21711, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "archive", + "token_id": 21712, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": ".", + "token_id": 21713, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "org", + "token_id": 21714, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "/", + "token_id": 21715, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194238,6 +194084,116 @@ }, { "str": "web", + "token_id": 21716, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "/", + "token_id": 21717, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "20220502170703", + "token_id": 21718, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "/", + "token_id": 21719, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "https", + "token_id": 21720, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": ":", + "token_id": 21721, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "/", + "token_id": 21722, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "/", + "token_id": 21723, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "www", + "token_id": 21724, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": ".", + "token_id": 21725, + "o_rev_id": 1140535097, + "in": [ + 1178773007 + ], + "out": [ + 1178772974 + ] + }, + { + "str": "nintendolife", "token_id": 21726, "o_rev_id": 1140535097, "in": [ @@ -194259,7 +194215,7 @@ ] }, { - "str": "archive", + "str": "com", "token_id": 21728, "o_rev_id": 1140535097, "in": [ @@ -194270,7 +194226,7 @@ ] }, { - "str": ".", + "str": "/", "token_id": 21729, "o_rev_id": 1140535097, "in": [ @@ -194281,7 +194237,7 @@ ] }, { - "str": "org", + "str": "news", "token_id": 21730, "o_rev_id": 1140535097, "in": [ @@ -194302,185 +194258,9 @@ 1178772974 ] }, - { - "str": "web", - "token_id": 21732, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "/", - "token_id": 21733, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "20220502170703", - "token_id": 21734, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "/", - "token_id": 21735, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "https", - "token_id": 21736, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": ":", - "token_id": 21737, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "/", - "token_id": 21738, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "/", - "token_id": 21739, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "www", - "token_id": 21740, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": ".", - "token_id": 21741, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "nintendolife", - "token_id": 21742, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": ".", - "token_id": 21743, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "com", - "token_id": 21744, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "/", - "token_id": 21745, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "news", - "token_id": 21746, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, - { - "str": "/", - "token_id": 21747, - "o_rev_id": 1140535097, - "in": [ - 1178773007 - ], - "out": [ - 1178772974 - ] - }, { "str": "/", - "token_id": 21748, + "token_id": 21732, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194491,7 +194271,7 @@ }, { "str": "05", - "token_id": 21749, + "token_id": 21733, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194502,7 +194282,7 @@ }, { "str": "/", - "token_id": 21750, + "token_id": 21734, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194513,7 +194293,7 @@ }, { "str": "dont", - "token_id": 21751, + "token_id": 21735, "o_rev_id": 1140535097, "in": [ 1178773007, @@ -194526,7 +194306,7 @@ }, { "str": "worry", - "token_id": 21752, + "token_id": 21736, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194537,7 +194317,7 @@ }, { "str": "splatoon", - "token_id": 21753, + "token_id": 21737, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194548,7 +194328,7 @@ }, { "str": "3", - "token_id": 21754, + "token_id": 21738, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194559,7 +194339,7 @@ }, { "str": "will", - "token_id": 21755, + "token_id": 21739, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194570,7 +194350,7 @@ }, { "str": "have", - "token_id": 21756, + "token_id": 21740, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194581,7 +194361,7 @@ }, { "str": "all", - "token_id": 21757, + "token_id": 21741, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194592,7 +194372,7 @@ }, { "str": "basic", - "token_id": 21758, + "token_id": 21742, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194603,7 +194383,7 @@ }, { "str": "weapons", - "token_id": 21759, + "token_id": 21743, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194614,7 +194394,7 @@ }, { "str": "from", - "token_id": 21760, + "token_id": 21744, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194625,7 +194405,7 @@ }, { "str": "the", - "token_id": 21761, + "token_id": 21745, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194636,7 +194416,7 @@ }, { "str": "previous", - "token_id": 21762, + "token_id": 21746, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194647,7 +194427,7 @@ }, { "str": "games", - "token_id": 21763, + "token_id": 21747, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194658,7 +194438,7 @@ }, { "str": "url", - "token_id": 21764, + "token_id": 21748, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194669,7 +194449,7 @@ }, { "str": "status", - "token_id": 21765, + "token_id": 21749, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194680,7 +194460,7 @@ }, { "str": "live", - "token_id": 21766, + "token_id": 21750, "o_rev_id": 1140535097, "in": [ 1178773007 @@ -194691,546 +194471,543 @@ }, { "str": "archive", - "token_id": 21767, + "token_id": 21751, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 21768, + "token_id": 21752, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21769, + "token_id": 21753, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21770, + "token_id": 21754, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21771, + "token_id": 21755, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21772, + "token_id": 21756, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21773, + "token_id": 21757, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21774, + "token_id": 21758, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21775, + "token_id": 21759, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21776, + "token_id": 21760, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 21777, + "token_id": 21761, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21778, + "token_id": 21762, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21779, + "token_id": 21763, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21780, + "token_id": 21764, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012001603", - "token_id": 21781, + "token_id": 21765, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21782, + "token_id": 21766, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21783, + "token_id": 21767, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21784, + "token_id": 21768, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21785, + "token_id": 21769, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 21786, + "token_id": 21770, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21787, + "token_id": 21771, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21788, + "token_id": 21772, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21789, + "token_id": 21773, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21790, + "token_id": 21774, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "article", - "token_id": 21791, + "token_id": 21775, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21792, + "token_id": 21776, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "132358", - "token_id": 21793, + "token_id": 21777, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21794, + "token_id": 21778, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21795, + "token_id": 21779, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 21796, + "token_id": 21780, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "weapon", - "token_id": 21797, + "token_id": 21781, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "sub", - "token_id": 21798, + "token_id": 21782, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "special", - "token_id": 21799, + "token_id": 21783, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "list", - "token_id": 21800, + "token_id": 21784, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21801, + "token_id": 21785, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 21802, + "token_id": 21786, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 21803, + "token_id": 21787, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21804, + "token_id": 21788, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 21805, + "token_id": 21789, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21806, + "token_id": 21790, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21807, + "token_id": 21791, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 21808, + "token_id": 21792, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21809, + "token_id": 21793, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21810, + "token_id": 21794, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21811, + "token_id": 21795, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21812, + "token_id": 21796, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21813, + "token_id": 21797, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 21814, + "token_id": 21798, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21815, + "token_id": 21799, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21816, + "token_id": 21800, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21817, + "token_id": 21801, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012001602", - "token_id": 21818, + "token_id": 21802, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21819, + "token_id": 21803, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21820, + "token_id": 21804, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21821, + "token_id": 21805, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21822, + "token_id": 21806, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21823, + "token_id": 21807, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dotesports", - "token_id": 21824, + "token_id": 21808, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21825, + "token_id": 21809, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21826, + "token_id": 21810, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21827, + "token_id": 21811, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21828, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "/", - "token_id": 21829, + "token_id": 21812, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 21830, + "token_id": 21813, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21831, + "token_id": 21814, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "how", - "token_id": 21832, + "token_id": 21815, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "to", - "token_id": 21833, + "token_id": 21816, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "unlock", - "token_id": 21834, + "token_id": 21817, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "anarchy", - "token_id": 21835, + "token_id": 21818, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "battle", - "token_id": 21836, + "token_id": 21819, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ranked", - "token_id": 21837, + "token_id": 21820, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 21838, + "token_id": 21821, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 21839, + "token_id": 21822, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 21840, + "token_id": 21823, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21841, + "token_id": 21824, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 21842, + "token_id": 21825, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 21843, + "token_id": 21826, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 21844, + "token_id": 21827, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -195241,7 +195018,7 @@ }, { "str": "archive", - "token_id": 21845, + "token_id": 21828, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -195250,9 +195027,16 @@ 1202071552 ] }, + { + "str": "date", + "token_id": 21829, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "=", - "token_id": 21846, + "token_id": 21830, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -195263,21 +195047,21 @@ }, { "str": "october", - "token_id": 21847, + "token_id": 21831, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 21848, + "token_id": 21832, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 21849, + "token_id": 21833, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -195288,7 +195072,7 @@ }, { "str": "archive", - "token_id": 21850, + "token_id": 21834, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -195299,14 +195083,18 @@ }, { "str": "url", - "token_id": 21851, + "token_id": 21835, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 21852, + "token_id": 21836, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -195317,1050 +195105,1041 @@ }, { "str": "https", - "token_id": 21853, + "token_id": 21837, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21854, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "/", - "token_id": 21855, + "token_id": 21838, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21856, + "token_id": 21839, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21857, + "token_id": 21840, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21858, + "token_id": 21841, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21859, + "token_id": 21842, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21860, + "token_id": 21843, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 21861, + "token_id": 21844, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21862, + "token_id": 21845, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21863, + "token_id": 21846, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21864, + "token_id": 21847, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012001602", - "token_id": 21865, + "token_id": 21848, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21866, + "token_id": 21849, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21867, + "token_id": 21850, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21868, + "token_id": 21851, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21869, + "token_id": 21852, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dotesports", - "token_id": 21870, + "token_id": 21853, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21871, + "token_id": 21854, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21872, + "token_id": 21855, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21873, + "token_id": 21856, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21874, + "token_id": 21857, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 21875, + "token_id": 21858, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21876, + "token_id": 21859, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "anarchy", - "token_id": 21877, + "token_id": 21860, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "battles", - "token_id": 21878, + "token_id": 21861, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 21879, + "token_id": 21862, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "splatoon", + "token_id": 21863, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ranked", - "token_id": 21880, + "token_id": 21864, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "mode", - "token_id": 21881, + "token_id": 21865, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "explained", - "token_id": 21882, + "token_id": 21866, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21883, + "token_id": 21867, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "6", - "token_id": 21884, + "token_id": 21868, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "january", - "token_id": 21885, + "token_id": 21869, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21886, + "token_id": 21870, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21887, + "token_id": 21871, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21888, + "token_id": 21872, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21889, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "/", - "token_id": 21890, + "token_id": 21873, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21891, + "token_id": 21874, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21892, + "token_id": 21875, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21893, + "token_id": 21876, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21894, + "token_id": 21877, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21895, + "token_id": 21878, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 21896, + "token_id": 21879, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21897, + "token_id": 21880, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21898, + "token_id": 21881, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21899, + "token_id": 21882, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20230106032533", - "token_id": 21900, + "token_id": 21883, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21901, + "token_id": 21884, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21902, + "token_id": 21885, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21903, + "token_id": 21886, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21904, + "token_id": 21887, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21905, + "token_id": 21888, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "americas", - "token_id": 21906, + "token_id": 21889, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "support", - "token_id": 21907, + "token_id": 21890, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21908, + "token_id": 21891, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21909, + "token_id": 21892, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21910, + "token_id": 21893, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "app", - "token_id": 21911, + "token_id": 21894, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21912, + "token_id": 21895, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "answers", - "token_id": 21913, + "token_id": 21896, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21914, + "token_id": 21897, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "detail", - "token_id": 21915, + "token_id": 21898, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21916, + "token_id": 21899, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "a", - "token_id": 21917, + "token_id": 21900, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "_", - "token_id": 21918, + "token_id": 21901, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "id", - "token_id": 21919, + "token_id": 21902, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21920, + "token_id": 21903, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "59461", - "token_id": 21921, + "token_id": 21904, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21922, + "token_id": 21905, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 21923, + "token_id": 21906, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 21924, + "token_id": 21907, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21925, + "token_id": 21908, "o_rev_id": 1140535097, "in": [], "out": [] }, + { + "str": "3", + "token_id": 21909, + "o_rev_id": 1140535097, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, { "str": "archive", - "token_id": 21926, + "token_id": 21910, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "5", - "token_id": 21927, + "token_id": 21911, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "january", - "token_id": 21928, + "token_id": 21912, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21929, + "token_id": 21913, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21930, + "token_id": 21914, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 21931, + "token_id": 21915, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21932, + "token_id": 21916, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21933, + "token_id": 21917, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21934, + "token_id": 21918, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21935, + "token_id": 21919, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21936, + "token_id": 21920, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 21937, + "token_id": 21921, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21938, + "token_id": 21922, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21939, + "token_id": 21923, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20230105154848", - "token_id": 21940, + "token_id": 21924, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21941, + "token_id": 21925, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21942, + "token_id": 21926, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21943, + "token_id": 21927, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21944, + "token_id": 21928, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21945, + "token_id": 21929, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21946, + "token_id": 21930, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21947, + "token_id": 21931, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21948, + "token_id": 21932, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21949, + "token_id": 21933, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21950, + "token_id": 21934, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 21951, + "token_id": 21935, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21952, + "token_id": 21936, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "squid", - "token_id": 21953, + "token_id": 21937, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "research", - "token_id": 21954, + "token_id": 21938, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "lab", - "token_id": 21955, + "token_id": 21939, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dives", - "token_id": 21956, + "token_id": 21940, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "deep", - "token_id": 21957, + "token_id": 21941, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "into", - "token_id": 21958, + "token_id": 21942, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 21959, + "token_id": 21943, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatlands", - "token_id": 21960, + "token_id": 21944, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21961, + "token_id": 21945, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 21962, + "token_id": 21946, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 21963, + "token_id": 21947, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21964, + "token_id": 21948, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21965, + "token_id": 21949, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 21966, + "token_id": 21950, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21967, + "token_id": 21951, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 21968, + "token_id": 21952, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 21969, + "token_id": 21953, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21970, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "/", - "token_id": 21971, + "token_id": 21954, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21972, + "token_id": 21955, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21973, + "token_id": 21956, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21974, + "token_id": 21957, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 21975, + "token_id": 21958, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21976, + "token_id": 21959, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 21977, + "token_id": 21960, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21978, + "token_id": 21961, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 21979, + "token_id": 21962, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21980, + "token_id": 21963, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221011230938", - "token_id": 21981, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "/", - "token_id": 21982, + "token_id": 21964, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 21983, + "token_id": 21965, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 21984, + "token_id": 21966, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21985, + "token_id": 21967, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21986, + "token_id": 21968, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 21987, + "token_id": 21969, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21988, + "token_id": 21970, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "shacknews", - "token_id": 21989, + "token_id": 21971, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 21990, + "token_id": 21972, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 21991, + "token_id": 21973, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21992, + "token_id": 21974, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "article", - "token_id": 21993, + "token_id": 21975, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21994, + "token_id": 21976, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "131781", - "token_id": 21995, + "token_id": 21977, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 21996, + "token_id": 21978, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 21997, + "token_id": 21979, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "tricolor", - "token_id": 21998, + "token_id": 21980, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "turf", - "token_id": 21999, + "token_id": 21981, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "wars", - "token_id": 22000, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "/", - "token_id": 22001, + "token_id": 21982, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22002, + "token_id": 21983, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196369,7 +196148,7 @@ }, { "str": "14", - "token_id": 22003, + "token_id": 21984, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196378,18 +196157,14 @@ }, { "str": "february", - "token_id": 22004, + "token_id": 21985, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "2023", - "token_id": 22005, + "token_id": 21986, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196398,7 +196173,7 @@ }, { "str": "archive", - "token_id": 22006, + "token_id": 21987, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196407,14 +196182,18 @@ }, { "str": "url", - "token_id": 22007, + "token_id": 21988, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 22008, + "token_id": 21989, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196423,7 +196202,7 @@ }, { "str": ":", - "token_id": 22009, + "token_id": 21990, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196432,7 +196211,7 @@ }, { "str": "/", - "token_id": 22010, + "token_id": 21991, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196441,7 +196220,7 @@ }, { "str": "/", - "token_id": 22011, + "token_id": 21992, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196450,7 +196229,7 @@ }, { "str": "web", - "token_id": 22012, + "token_id": 21993, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196459,7 +196238,7 @@ }, { "str": ".", - "token_id": 22013, + "token_id": 21994, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196468,7 +196247,7 @@ }, { "str": "archive", - "token_id": 22014, + "token_id": 21995, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196477,7 +196256,7 @@ }, { "str": ".", - "token_id": 22015, + "token_id": 21996, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196486,7 +196265,7 @@ }, { "str": "org", - "token_id": 22016, + "token_id": 21997, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196495,7 +196274,7 @@ }, { "str": "/", - "token_id": 22017, + "token_id": 21998, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196504,7 +196283,7 @@ }, { "str": "web", - "token_id": 22018, + "token_id": 21999, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196513,7 +196292,7 @@ }, { "str": "/", - "token_id": 22019, + "token_id": 22000, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196522,7 +196301,7 @@ }, { "str": "20230214233906", - "token_id": 22020, + "token_id": 22001, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196531,7 +196310,7 @@ }, { "str": "/", - "token_id": 22021, + "token_id": 22002, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196540,63 +196319,63 @@ }, { "str": "https", - "token_id": 22022, + "token_id": 22003, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22023, + "token_id": 22004, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22024, + "token_id": 22005, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22025, + "token_id": 22006, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22026, + "token_id": 22007, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22027, + "token_id": 22008, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22028, + "token_id": 22009, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22029, + "token_id": 22010, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "wikis", - "token_id": 22030, + "token_id": 22011, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196605,21 +196384,28 @@ }, { "str": "/", - "token_id": 22031, + "token_id": 22012, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "splatoon", + "token_id": 22013, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22032, + "token_id": 22014, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "salmon", - "token_id": 22033, + "token_id": 22015, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196628,7 +196414,7 @@ }, { "str": "_", - "token_id": 22034, + "token_id": 22016, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196637,7 +196423,7 @@ }, { "str": "run", - "token_id": 22035, + "token_id": 22017, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196646,7 +196432,7 @@ }, { "str": "_", - "token_id": 22036, + "token_id": 22018, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196655,7 +196441,7 @@ }, { "str": "guide", - "token_id": 22037, + "token_id": 22019, "o_rev_id": 1140535097, "in": [], "out": [ @@ -196664,637 +196450,631 @@ }, { "str": "url", - "token_id": 22038, + "token_id": 22020, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22039, + "token_id": 22021, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22040, + "token_id": 22022, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22041, + "token_id": 22023, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dot", - "token_id": 22042, + "token_id": 22024, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "esports", - "token_id": 22043, + "token_id": 22025, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22044, + "token_id": 22026, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22045, + "token_id": 22027, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22046, + "token_id": 22028, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22047, + "token_id": 22029, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 22048, + "token_id": 22030, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22049, + "token_id": 22031, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22050, + "token_id": 22032, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22051, + "token_id": 22033, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22052, + "token_id": 22034, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22053, + "token_id": 22035, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22054, + "token_id": 22036, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22055, + "token_id": 22037, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22056, + "token_id": 22038, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221011191559", - "token_id": 22057, + "token_id": 22039, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22058, + "token_id": 22040, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22059, + "token_id": 22041, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22060, + "token_id": 22042, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22061, + "token_id": 22043, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22062, + "token_id": 22044, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dotesports", - "token_id": 22063, + "token_id": 22045, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22064, + "token_id": 22046, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22065, + "token_id": 22047, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22066, + "token_id": 22048, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22067, + "token_id": 22049, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22068, + "token_id": 22050, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22069, + "token_id": 22051, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "how", - "token_id": 22070, + "token_id": 22052, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "to", - "token_id": 22071, + "token_id": 22053, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "play", - "token_id": 22072, + "token_id": 22054, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "salmon", - "token_id": 22073, + "token_id": 22055, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "run", - "token_id": 22074, + "token_id": 22056, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 22075, + "token_id": 22057, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22076, + "token_id": 22058, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22077, + "token_id": 22059, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22078, + "token_id": 22060, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22079, + "token_id": 22061, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22080, + "token_id": 22062, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22081, + "token_id": 22063, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22082, + "token_id": 22064, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "11", - "token_id": 22083, + "token_id": 22065, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22084, + "token_id": 22066, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "11", - "token_id": 22085, + "token_id": 22067, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22086, + "token_id": 22068, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22087, + "token_id": 22069, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22088, + "token_id": 22070, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 22089, + "token_id": 22071, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22090, + "token_id": 22072, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22091, + "token_id": 22073, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22092, + "token_id": 22074, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22093, + "token_id": 22075, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22094, + "token_id": 22076, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22095, + "token_id": 22077, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221011191559", - "token_id": 22096, + "token_id": 22078, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22097, + "token_id": 22079, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22098, + "token_id": 22080, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22099, + "token_id": 22081, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22100, + "token_id": 22082, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22101, + "token_id": 22083, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22102, + "token_id": 22084, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22103, + "token_id": 22085, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22104, + "token_id": 22086, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22105, + "token_id": 22087, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22106, + "token_id": 22088, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 22107, + "token_id": 22089, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22108, + "token_id": 22090, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22109, + "token_id": 22091, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22110, + "token_id": 22092, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "reveals", - "token_id": 22111, + "token_id": 22093, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 22112, + "token_id": 22094, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22113, + "token_id": 22095, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "next", - "token_id": 22114, + "token_id": 22096, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "wave", - "token_id": 22115, + "token_id": 22097, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "of", - "token_id": 22116, + "token_id": 22098, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "salmon", - "token_id": 22117, + "token_id": 22099, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "run", - "token_id": 22118, + "token_id": 22100, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "for", - "token_id": 22119, + "token_id": 22101, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22120, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "url", - "token_id": 22121, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "status", - "token_id": 22122, + "token_id": 22102, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "live", - "token_id": 22123, + "str": "3", + "token_id": 22103, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "}}", - "token_id": 22124, + "str": "url", + "token_id": 22104, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "<", - "token_id": 22125, + "str": "status", + "token_id": 22105, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": ">", - "token_id": 22126, + "str": "live", + "token_id": 22106, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22127, + "token_id": 22107, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22128, + "token_id": 22108, "o_rev_id": 1140535097, "in": [], "out": [ @@ -197303,7 +197083,7 @@ }, { "str": "-", - "token_id": 22129, + "token_id": 22109, "o_rev_id": 1140535097, "in": [], "out": [ @@ -197312,84 +197092,84 @@ }, { "str": "11", - "token_id": 22130, + "token_id": 22110, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22131, + "token_id": 22111, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 22112, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22132, + "token_id": 22113, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22133, + "token_id": 22114, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22134, + "token_id": 22115, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22135, + "token_id": 22116, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22136, + "token_id": 22117, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "-", - "token_id": 22137, + "str": "date", + "token_id": 22118, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "14", - "token_id": 22138, + "token_id": 22119, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22139, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "archive", - "token_id": 22140, + "token_id": 22120, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "-", - "token_id": 22141, + "str": "2022", + "token_id": 22121, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -197398,1473 +197178,1457 @@ 1202071552 ] }, + { + "str": "archive", + "token_id": 22122, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "url", - "token_id": 22142, + "token_id": 22123, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22143, + "token_id": 22124, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22144, + "token_id": 22125, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22145, + "token_id": 22126, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22146, + "token_id": 22127, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22147, + "token_id": 22128, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22148, + "token_id": 22129, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22149, + "token_id": 22130, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22150, + "token_id": 22131, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22151, + "token_id": 22132, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22152, + "token_id": 22133, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221014032647", - "token_id": 22153, + "token_id": 22134, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22154, + "token_id": 22135, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22155, + "token_id": 22136, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22156, + "token_id": 22137, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22157, + "token_id": 22138, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22158, + "token_id": 22139, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22159, + "token_id": 22140, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22160, + "token_id": 22141, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "cnet", - "token_id": 22161, + "token_id": 22142, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22162, + "token_id": 22143, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22163, + "token_id": 22144, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22164, + "token_id": 22145, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "tech", - "token_id": 22165, + "token_id": 22146, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22166, + "token_id": 22147, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gaming", - "token_id": 22167, + "token_id": 22148, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22168, + "token_id": 22149, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22169, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 22170, + "token_id": 22150, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22171, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 22172, + "token_id": 22151, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "salmon", - "token_id": 22173, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 22174, + "token_id": 22152, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "run", - "token_id": 22175, + "token_id": 22153, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22176, + "token_id": 22154, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "guide", - "token_id": 22177, + "token_id": 22155, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22178, + "token_id": 22156, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "how", - "token_id": 22179, + "token_id": 22157, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22180, + "token_id": 22158, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "to", - "token_id": 22181, + "token_id": 22159, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22182, + "token_id": 22160, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "beat", - "token_id": 22183, + "token_id": 22161, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22184, + "token_id": 22162, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "cohozuna", - "token_id": 22185, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "/", - "token_id": 22186, + "token_id": 22163, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22187, + "token_id": 22164, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22188, + "token_id": 22165, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22189, + "token_id": 22166, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22190, + "token_id": 22167, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22191, + "token_id": 22168, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22192, + "token_id": 22169, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22193, + "token_id": 22170, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "11", - "token_id": 22194, + "token_id": 22171, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "shacknews", - "token_id": 22195, + "token_id": 22172, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22196, + "token_id": 22173, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22197, + "token_id": 22174, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22198, + "token_id": 22175, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22199, + "token_id": 22176, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 22200, + "token_id": 22177, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22201, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "/", - "token_id": 22202, + "token_id": 22178, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22203, + "token_id": 22179, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22204, + "token_id": 22180, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22205, + "token_id": 22181, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22206, + "token_id": 22182, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22207, + "token_id": 22183, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22208, + "token_id": 22184, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22209, + "token_id": 22185, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22210, + "token_id": 22186, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22211, + "token_id": 22187, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012082428", - "token_id": 22212, + "token_id": 22188, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22213, + "token_id": 22189, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22214, + "token_id": 22190, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22215, + "token_id": 22191, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22216, + "token_id": 22192, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22217, + "token_id": 22193, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22218, + "token_id": 22194, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22219, + "token_id": 22195, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "shacknews", - "token_id": 22220, + "token_id": 22196, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22221, + "token_id": 22197, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22222, + "token_id": 22198, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22223, + "token_id": 22199, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "article", - "token_id": 22224, + "token_id": 22200, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22225, + "token_id": 22201, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "132381", - "token_id": 22226, + "token_id": 22202, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22227, + "token_id": 22203, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "salmon", - "token_id": 22228, + "token_id": 22204, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "run", - "token_id": 22229, + "token_id": 22205, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ranks", - "token_id": 22230, + "token_id": 22206, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22231, + "token_id": 22207, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22232, + "token_id": 22208, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22233, + "token_id": 22209, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22234, + "token_id": 22210, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22235, + "token_id": 22211, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22236, + "token_id": 22212, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22237, + "token_id": 22213, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22238, + "token_id": 22214, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22239, + "token_id": 22215, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "access", + "token_id": 22216, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 22217, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22240, + "token_id": 22218, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "2022", + "token_id": 22219, "o_rev_id": 1140535097, "in": [], "out": [] }, + { + "str": "nintendo", + "token_id": 22220, + "o_rev_id": 1140535097, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, { "str": "archive", - "token_id": 22241, + "token_id": 22221, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "october", - "token_id": 22242, + "str": "15", + "token_id": 22222, "o_rev_id": 1140535097, "in": [], "out": [] }, + { + "str": "october", + "token_id": 22223, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1168453704 + ] + }, { "str": "archive", - "token_id": 22243, + "token_id": 22224, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22244, + "token_id": 22225, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 22245, + "token_id": 22226, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22246, + "token_id": 22227, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22247, + "token_id": 22228, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22248, + "token_id": 22229, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22249, + "token_id": 22230, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22250, + "token_id": 22231, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22251, + "token_id": 22232, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22252, + "token_id": 22233, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22253, + "token_id": 22234, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22254, + "token_id": 22235, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22255, + "token_id": 22236, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22256, + "token_id": 22237, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221015003831", - "token_id": 22257, + "token_id": 22238, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22258, + "token_id": 22239, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22259, + "token_id": 22240, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22260, + "token_id": 22241, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22261, + "token_id": 22242, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22262, + "token_id": 22243, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22263, + "token_id": 22244, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22264, + "token_id": 22245, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 22265, + "token_id": 22246, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22266, + "token_id": 22247, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22267, + "token_id": 22248, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22268, + "token_id": 22249, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 22269, + "token_id": 22250, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22270, + "token_id": 22251, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22271, + "token_id": 22252, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22272, + "token_id": 22253, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "nintendo", + "token_id": 22254, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "reiterates", - "token_id": 22273, + "token_id": 22255, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "that", - "token_id": 22274, + "token_id": 22256, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22275, + "token_id": 22257, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3s", - "token_id": 22276, + "token_id": 22258, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "salmon", - "token_id": 22277, + "token_id": 22259, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "run", - "token_id": 22278, + "token_id": 22260, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "mode", - "token_id": 22279, + "token_id": 22261, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "will", - "token_id": 22280, + "token_id": 22262, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "be", - "token_id": 22281, + "token_id": 22263, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "available", - "token_id": 22282, + "token_id": 22264, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "247", - "token_id": 22283, + "token_id": 22265, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22284, + "token_id": 22266, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22285, + "token_id": 22267, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22286, + "token_id": 22268, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22287, + "token_id": 22269, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "11", - "token_id": 22288, + "token_id": 22270, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22289, + "token_id": 22271, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22290, + "token_id": 22272, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22291, + "token_id": 22273, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "11", - "token_id": 22292, + "token_id": 22274, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22293, + "token_id": 22275, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22294, + "token_id": 22276, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22295, + "token_id": 22277, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22296, + "token_id": 22278, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22297, + "token_id": 22279, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22298, + "token_id": 22280, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22299, + "token_id": 22281, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22300, + "token_id": 22282, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22301, + "token_id": 22283, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22302, + "token_id": 22284, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22303, + "token_id": 22285, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22304, + "token_id": 22286, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22305, + "token_id": 22287, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22306, + "token_id": 22288, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22307, + "token_id": 22289, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22308, + "token_id": 22290, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22309, + "token_id": 22291, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221011191559", - "token_id": 22310, + "token_id": 22292, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22311, + "token_id": 22293, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22312, + "token_id": 22294, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22313, + "token_id": 22295, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22314, + "token_id": 22296, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22315, + "token_id": 22297, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22316, + "token_id": 22298, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22317, + "token_id": 22299, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "ign", + "token_id": 22300, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22318, + "token_id": 22301, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22319, + "token_id": 22302, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22320, + "token_id": 22303, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "articles", - "token_id": 22321, + "token_id": 22304, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22322, + "token_id": 22305, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "we", - "token_id": 22323, + "token_id": 22306, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "learned", - "token_id": 22324, + "token_id": 22307, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "about", - "token_id": 22325, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 22326, + "token_id": 22308, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22327, + "token_id": 22309, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22328, + "token_id": 22310, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22329, + "token_id": 22311, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22330, + "token_id": 22312, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "from", - "token_id": 22331, + "token_id": 22313, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22332, + "token_id": 22314, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 22333, + "token_id": 22315, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22334, + "token_id": 22316, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22335, + "token_id": 22317, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "direct", - "token_id": 22336, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 22337, + "token_id": 22318, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22338, + "token_id": 22319, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22339, + "token_id": 22320, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22340, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 22341, + "token_id": 22321, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22342, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "}}", - "token_id": 22343, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "<", - "token_id": 22344, + "token_id": 22322, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22345, + "token_id": 22323, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": ">", - "token_id": 22346, + "str": "-", + "token_id": 22324, "o_rev_id": 1140535097, "in": [], "out": [] }, - { - "str": "|", - "token_id": 22347, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, { "str": "-", - "token_id": 22348, + "token_id": 22325, "o_rev_id": 1140535097, "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 22349, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], "out": [ - 1202071552 + 1168453704 ] }, { - "str": "-", - "token_id": 22350, + "str": "10", + "token_id": 22326, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198873,7 +198637,7 @@ }, { "str": "-", - "token_id": 22351, + "token_id": 22327, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198882,56 +198646,42 @@ }, { "str": "11", - "token_id": 22352, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 22353, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 22354, + "token_id": 22328, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dot", - "token_id": 22355, + "token_id": 22329, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "esports", - "token_id": 22356, + "token_id": 22330, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22357, + "token_id": 22331, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22358, + "token_id": 22332, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22359, + "token_id": 22333, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198940,7 +198690,7 @@ }, { "str": "|", - "token_id": 22360, + "token_id": 22334, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198949,7 +198699,7 @@ }, { "str": "archive", - "token_id": 22361, + "token_id": 22335, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198958,7 +198708,16 @@ }, { "str": "-", - "token_id": 22362, + "token_id": 22336, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1141810947 + ] + }, + { + "str": "date", + "token_id": 22337, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198967,7 +198726,7 @@ }, { "str": "=", - "token_id": 22363, + "token_id": 22338, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198976,7 +198735,7 @@ }, { "str": "11", - "token_id": 22364, + "token_id": 22339, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198985,7 +198744,16 @@ }, { "str": "october", - "token_id": 22365, + "token_id": 22340, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1141810947 + ] + }, + { + "str": "2022", + "token_id": 22341, "o_rev_id": 1140535097, "in": [], "out": [ @@ -198994,7 +198762,7 @@ }, { "str": "|", - "token_id": 22366, + "token_id": 22342, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199003,7 +198771,7 @@ }, { "str": "archive", - "token_id": 22367, + "token_id": 22343, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199012,7 +198780,7 @@ }, { "str": "-", - "token_id": 22368, + "token_id": 22344, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199021,7 +198789,7 @@ }, { "str": "url", - "token_id": 22369, + "token_id": 22345, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199030,7 +198798,7 @@ }, { "str": "=", - "token_id": 22370, + "token_id": 22346, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199039,399 +198807,408 @@ }, { "str": "https", - "token_id": 22371, + "token_id": 22347, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22372, + "token_id": 22348, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22373, + "token_id": 22349, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22374, + "token_id": 22350, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22375, + "token_id": 22351, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22376, + "token_id": 22352, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22377, + "token_id": 22353, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22378, + "token_id": 22354, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22379, + "token_id": 22355, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22380, + "token_id": 22356, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22381, + "token_id": 22357, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22382, + "token_id": 22358, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221011191559", - "token_id": 22383, + "token_id": 22359, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22384, + "token_id": 22360, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22385, + "token_id": 22361, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22386, + "token_id": 22362, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22387, + "token_id": 22363, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22388, + "token_id": 22364, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dotesports", - "token_id": 22389, + "token_id": 22365, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22390, + "token_id": 22366, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22391, + "token_id": 22367, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22392, + "token_id": 22368, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22393, + "token_id": 22369, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22394, + "token_id": 22370, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 22395, + "token_id": 22371, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22396, + "token_id": 22372, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "is", - "token_id": 22397, + "token_id": 22373, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22398, + "token_id": 22374, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "salmon", - "token_id": 22399, + "token_id": 22375, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22400, + "token_id": 22376, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "run", - "token_id": 22401, + "token_id": 22377, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22402, + "token_id": 22378, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "next", - "token_id": 22403, + "token_id": 22379, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22404, + "token_id": 22380, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "wave", - "token_id": 22405, + "token_id": 22381, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22406, + "token_id": 22382, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "time", - "token_id": 22407, + "token_id": 22383, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22408, + "token_id": 22384, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "restricted", - "token_id": 22409, + "token_id": 22385, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22410, + "token_id": 22386, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "or", - "token_id": 22411, + "token_id": 22387, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22412, + "token_id": 22388, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "permanent", - "token_id": 22413, + "token_id": 22389, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22414, + "token_id": 22390, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 22415, + "token_id": 22391, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22416, + "token_id": 22392, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22417, + "token_id": 22393, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22418, + "token_id": 22394, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22419, + "token_id": 22395, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22420, + "token_id": 22396, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22421, + "token_id": 22397, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22422, + "token_id": 22398, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22423, + "token_id": 22399, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22424, + "token_id": 22400, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22425, + "token_id": 22401, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1168453704 + ] + }, + { + "str": "2023", + "token_id": 22402, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22426, + "token_id": 22403, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "01", - "token_id": 22427, + "token_id": 22404, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199440,7 +199217,7 @@ }, { "str": "-", - "token_id": 22428, + "token_id": 22405, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199449,7 +199226,7 @@ }, { "str": "06", - "token_id": 22429, + "token_id": 22406, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199458,7 +199235,7 @@ }, { "str": "splatoon", - "token_id": 22430, + "token_id": 22407, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -199469,7 +199246,7 @@ }, { "str": "3", - "token_id": 22431, + "token_id": 22408, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -199480,21 +199257,21 @@ }, { "str": "-", - "token_id": 22432, + "token_id": 22409, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22433, + "token_id": 22410, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22434, + "token_id": 22411, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199503,28 +199280,35 @@ }, { "str": "6", - "token_id": 22435, + "token_id": 22412, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "january", + "token_id": 22413, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2023", - "token_id": 22436, + "token_id": 22414, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22437, + "token_id": 22415, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22438, + "token_id": 22416, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199533,378 +199317,387 @@ }, { "str": "url", - "token_id": 22439, + "token_id": 22417, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22440, + "token_id": 22418, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22441, + "token_id": 22419, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22442, + "token_id": 22420, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22443, + "token_id": 22421, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22444, + "token_id": 22422, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22445, + "token_id": 22423, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22446, + "token_id": 22424, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22447, + "token_id": 22425, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22448, + "token_id": 22426, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22449, + "token_id": 22427, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22450, + "token_id": 22428, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22451, + "token_id": 22429, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20230106032540", - "token_id": 22452, + "token_id": 22430, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22453, + "token_id": 22431, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22454, + "token_id": 22432, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22455, + "token_id": 22433, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22456, + "token_id": 22434, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22457, + "token_id": 22435, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22458, + "token_id": 22436, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22459, + "token_id": 22437, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22460, + "token_id": 22438, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22461, + "token_id": 22439, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22462, + "token_id": 22440, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22463, + "token_id": 22441, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 22464, + "token_id": 22442, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22465, + "token_id": 22443, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "catch", - "token_id": 22466, + "token_id": 22444, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22467, + "token_id": 22445, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "up", - "token_id": 22468, + "token_id": 22446, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22469, + "token_id": 22447, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "on", - "token_id": 22470, + "token_id": 22448, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22471, + "token_id": 22449, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "all", - "token_id": 22472, + "token_id": 22450, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22473, + "token_id": 22451, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 22452, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22474, + "token_id": 22453, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "latest", - "token_id": 22475, + "token_id": 22454, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22476, + "token_id": 22455, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "from", - "token_id": 22477, + "token_id": 22456, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22478, + "token_id": 22457, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22479, + "token_id": 22458, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22480, + "token_id": 22459, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22481, + "token_id": 22460, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22482, + "token_id": 22461, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22483, + "token_id": 22462, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "direct", - "token_id": 22484, + "token_id": 22463, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22485, + "token_id": 22464, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22486, + "token_id": 22465, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22487, + "token_id": 22466, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22488, + "token_id": 22467, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22489, + "token_id": 22468, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22490, + "token_id": 22469, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22491, + "token_id": 22470, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "-", - "token_id": 22492, + "token_id": 22471, "o_rev_id": 1140535097, "in": [], "out": [ @@ -199913,410 +199706,412 @@ }, { "str": "-", - "token_id": 22493, + "token_id": 22472, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "[[", - "token_id": 22494, + "token_id": 22473, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 22495, + "token_id": 22474, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 22496, + "token_id": 22475, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "televisaunivision", - "token_id": 22497, + "token_id": 22476, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 22498, + "token_id": 22477, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22499, + "token_id": 22478, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22500, + "token_id": 22479, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22501, + "token_id": 22480, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "archive", - "token_id": 22502, + "token_id": 22481, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22503, + "token_id": 22482, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22504, + "token_id": 22483, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22505, + "token_id": 22484, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22506, + "token_id": 22485, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22507, + "token_id": 22486, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22508, + "token_id": 22487, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22509, + "token_id": 22488, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22510, + "token_id": 22489, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22511, + "token_id": 22490, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22512, + "token_id": 22491, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22513, + "token_id": 22492, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22514, + "token_id": 22493, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22515, + "token_id": 22494, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22516, + "token_id": 22495, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221015003555", - "token_id": 22517, + "token_id": 22496, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22518, + "token_id": 22497, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22519, + "token_id": 22498, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22520, + "token_id": 22499, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22521, + "token_id": 22500, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22522, + "token_id": 22501, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "kotaku", - "token_id": 22523, + "token_id": 22502, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22524, + "token_id": 22503, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22525, + "token_id": 22504, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22526, + "token_id": 22505, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "yes", - "token_id": 22527, + "token_id": 22506, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22528, + "token_id": 22507, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22529, + "token_id": 22508, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22530, + "token_id": 22509, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "is", - "token_id": 22531, + "token_id": 22510, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22532, + "token_id": 22511, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "set", - "token_id": 22533, + "token_id": 22512, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22534, + "token_id": 22513, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "after", - "token_id": 22535, + "token_id": 22514, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22536, + "token_id": 22515, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "a", - "token_id": 22537, + "token_id": 22516, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22538, + "token_id": 22517, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "climate", - "token_id": 22539, + "token_id": 22518, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22540, + "token_id": 22519, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "apocalypse", - "token_id": 22541, + "token_id": 22520, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22542, + "token_id": 22521, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "1846301239", - "token_id": 22543, + "token_id": 22522, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22544, + "token_id": 22523, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22545, + "token_id": 22524, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22546, + "token_id": 22525, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22547, + "token_id": 22526, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22548, + "token_id": 22527, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22549, + "token_id": 22528, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "-", - "token_id": 22550, + "token_id": 22529, "o_rev_id": 1140535097, "in": [], "out": [ @@ -200325,534 +200120,491 @@ }, { "str": "-", - "token_id": 22551, + "token_id": 22530, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "[[", - "token_id": 22552, + "token_id": 22531, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "polygon", - "token_id": 22553, + "token_id": 22532, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22554, + "token_id": 22533, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "polygon", - "token_id": 22555, + "token_id": 22534, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 22556, + "token_id": 22535, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 22557, + "token_id": 22536, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "vox", - "token_id": 22558, + "token_id": 22537, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 22559, + "token_id": 22538, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22560, + "token_id": 22539, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "us", - "token_id": 22561, + "token_id": 22540, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "archive", - "token_id": 22562, + "token_id": 22541, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22563, + "token_id": 22542, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "15", - "token_id": 22564, + "token_id": 22543, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22565, + "token_id": 22544, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22566, + "token_id": 22545, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22567, + "token_id": 22546, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "url", - "token_id": 22568, + "token_id": 22547, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22569, + "token_id": 22548, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22570, + "token_id": 22549, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22571, + "token_id": 22550, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22572, + "token_id": 22551, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22573, + "token_id": 22552, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22574, + "token_id": 22553, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22575, + "token_id": 22554, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22576, + "token_id": 22555, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22577, + "token_id": 22556, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22578, + "token_id": 22557, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22579, + "token_id": 22558, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22580, + "token_id": 22559, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221015003550", - "token_id": 22581, + "token_id": 22560, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22582, + "token_id": 22561, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22583, + "token_id": 22562, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22584, + "token_id": 22563, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22585, + "token_id": 22564, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22586, + "token_id": 22565, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22587, + "token_id": 22566, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22588, + "token_id": 22567, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "polygon", - "token_id": 22589, + "token_id": 22568, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22590, + "token_id": 22569, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22591, + "token_id": 22570, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22592, + "token_id": 22571, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "23365591", - "token_id": 22593, + "token_id": 22572, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22594, + "token_id": 22573, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22595, + "token_id": 22574, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22596, + "token_id": 22575, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22597, + "token_id": 22576, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22598, + "token_id": 22577, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "lore", - "token_id": 22599, + "token_id": 22578, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22600, + "token_id": 22579, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "alterna", - "token_id": 22601, + "token_id": 22580, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22602, + "token_id": 22581, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 22603, + "token_id": 22582, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22604, + "token_id": 22583, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22605, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 22606, + "token_id": 22584, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22607, + "token_id": 22585, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22608, + "token_id": 22586, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22609, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 22610, + "token_id": 22587, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22611, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "}}", - "token_id": 22612, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "<", - "token_id": 22613, + "token_id": 22588, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22614, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": ">", - "token_id": 22615, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 22616, + "token_id": 22589, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22617, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 22618, + "token_id": 22590, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22619, + "token_id": 22591, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22620, + "token_id": 22592, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "14", - "token_id": 22621, + "token_id": 22593, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22622, + "token_id": 22594, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "issn", - "token_id": 22623, + "token_id": 22595, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22624, + "token_id": 22596, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "1059", - "token_id": 22625, + "token_id": 22597, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22626, + "token_id": 22598, "o_rev_id": 1140535097, "in": [], "out": [ @@ -200861,381 +200613,380 @@ }, { "str": "1028", - "token_id": 22627, + "token_id": 22599, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22628, + "token_id": 22600, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22629, + "token_id": 22601, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22630, + "token_id": 22602, "o_rev_id": 1140535097, "in": [], "out": [ 1168453704 ] }, + { + "str": "date", + "token_id": 22603, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "=", - "token_id": 22631, + "token_id": 22604, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "14", - "token_id": 22632, + "token_id": 22605, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22633, + "token_id": 22606, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22634, + "token_id": 22607, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22635, + "token_id": 22608, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22636, + "token_id": 22609, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22637, + "token_id": 22610, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22638, + "token_id": 22611, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22639, + "token_id": 22612, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22640, + "token_id": 22613, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22641, + "token_id": 22614, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22642, + "token_id": 22615, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22643, + "token_id": 22616, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22644, + "token_id": 22617, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22645, + "token_id": 22618, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22646, + "token_id": 22619, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22647, + "token_id": 22620, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22648, + "token_id": 22621, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22649, + "token_id": 22622, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22650, + "token_id": 22623, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221014204159", - "token_id": 22651, + "token_id": 22624, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22652, + "token_id": 22625, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22653, + "token_id": 22626, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22654, + "token_id": 22627, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22655, + "token_id": 22628, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22656, + "token_id": 22629, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22657, + "token_id": 22630, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22658, + "token_id": 22631, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "wired", - "token_id": 22659, + "token_id": 22632, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22660, + "token_id": 22633, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22661, + "token_id": 22634, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22662, + "token_id": 22635, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "story", - "token_id": 22663, + "token_id": 22636, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22664, + "token_id": 22637, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22665, + "token_id": 22638, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22666, + "token_id": 22639, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22667, + "token_id": 22640, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22668, + "token_id": 22641, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 22642, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22669, + "token_id": 22643, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22670, + "token_id": 22644, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22671, + "token_id": 22645, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22672, + "token_id": 22646, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22673, + "token_id": 22647, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22674, + "token_id": 22648, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22675, + "token_id": 22649, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "9", - "token_id": 22676, + "str": "/", + "token_id": 22650, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "|", - "token_id": 22677, + "str": "access", + "token_id": 22651, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "-", - "token_id": 22678, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "=", - "token_id": 22679, + "token_id": 22652, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -201246,375 +200997,361 @@ }, { "str": "4", - "token_id": 22680, + "token_id": 22653, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22681, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 22682, + "token_id": 22654, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22683, + "token_id": 22655, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22684, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "=", - "token_id": 22685, + "token_id": 22656, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "4", - "token_id": 22686, + "token_id": 22657, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22687, + "token_id": 22658, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22688, + "token_id": 22659, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22689, + "token_id": 22660, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22690, + "token_id": 22661, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 22691, + "token_id": 22662, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22692, + "token_id": 22663, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22693, + "token_id": 22664, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22694, + "token_id": 22665, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22695, + "token_id": 22666, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22696, + "token_id": 22667, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22697, + "token_id": 22668, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22698, + "token_id": 22669, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22699, + "token_id": 22670, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22700, + "token_id": 22671, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22701, + "token_id": 22672, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22702, + "token_id": 22673, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221004023700", - "token_id": 22703, + "token_id": 22674, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22704, + "token_id": 22675, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22705, + "token_id": 22676, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22706, + "token_id": 22677, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22707, + "token_id": 22678, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22708, + "token_id": 22679, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22709, + "token_id": 22680, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22710, + "token_id": 22681, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "thegamer", - "token_id": 22711, + "token_id": 22682, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22712, + "token_id": 22683, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22713, + "token_id": 22684, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22714, + "token_id": 22685, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22715, + "token_id": 22686, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22716, + "token_id": 22687, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22717, + "token_id": 22688, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22718, + "token_id": 22689, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22719, + "token_id": 22690, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "timeline", - "token_id": 22720, + "token_id": 22691, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22721, + "token_id": 22692, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "passage", - "token_id": 22722, + "token_id": 22693, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22723, + "token_id": 22694, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "time", - "token_id": 22724, + "token_id": 22695, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22725, + "token_id": 22696, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22726, + "token_id": 22697, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22727, + "token_id": 22698, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22728, + "token_id": 22699, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22729, + "token_id": 22700, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22730, + "token_id": 22701, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22731, + "token_id": 22702, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22732, + "token_id": 22703, "o_rev_id": 1140535097, "in": [], "out": [ @@ -201623,7 +201360,7 @@ }, { "str": "-", - "token_id": 22733, + "token_id": 22704, "o_rev_id": 1140535097, "in": [], "out": [ @@ -201632,21 +201369,21 @@ }, { "str": "kotaku", - "token_id": 22734, + "token_id": 22705, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22735, + "token_id": 22706, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22736, + "token_id": 22707, "o_rev_id": 1140535097, "in": [], "out": [ @@ -201655,394 +201392,401 @@ }, { "str": "12", - "token_id": 22737, + "token_id": 22708, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22738, + "token_id": 22709, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22739, + "token_id": 22710, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22740, + "token_id": 22711, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "url", - "token_id": 22741, + "token_id": 22712, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22742, + "token_id": 22713, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22743, + "token_id": 22714, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22744, + "token_id": 22715, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22745, + "token_id": 22716, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22746, + "token_id": 22717, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22747, + "token_id": 22718, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22748, + "token_id": 22719, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22749, + "token_id": 22720, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22750, + "token_id": 22721, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22751, + "token_id": 22722, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22752, + "token_id": 22723, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22753, + "token_id": 22724, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012145545", - "token_id": 22754, + "token_id": 22725, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22755, + "token_id": 22726, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22756, + "token_id": 22727, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22757, + "token_id": 22728, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22758, + "token_id": 22729, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22759, + "token_id": 22730, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "kotaku", - "token_id": 22760, + "token_id": 22731, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22761, + "token_id": 22732, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22762, + "token_id": 22733, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22763, + "token_id": 22734, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "why", - "token_id": 22764, + "token_id": 22735, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22765, + "token_id": 22736, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 22766, + "token_id": 22737, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22767, + "token_id": 22738, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 22768, + "token_id": 22739, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22769, + "token_id": 22740, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 22770, + "token_id": 22741, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22771, + "token_id": 22742, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "devs", - "token_id": 22772, + "token_id": 22743, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22773, + "token_id": 22744, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "are", - "token_id": 22774, + "token_id": 22745, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22775, + "token_id": 22746, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 22776, + "token_id": 22747, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22777, + "token_id": 22748, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "best", - "token_id": 22778, + "token_id": 22749, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22779, + "token_id": 22750, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 22780, + "token_id": 22751, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22781, + "token_id": 22752, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "one", - "token_id": 22782, + "token_id": 22753, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22783, + "token_id": 22754, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gif", - "token_id": 22784, + "token_id": 22755, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22785, + "token_id": 22756, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "1847735687", - "token_id": 22786, + "token_id": 22757, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22787, + "token_id": 22758, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22788, + "token_id": 22759, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22789, + "token_id": 22760, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22790, + "token_id": 22761, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22791, + "token_id": 22762, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22792, + "token_id": 22763, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1140535671 + ] + }, + { + "str": "2022", + "token_id": 22764, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202051,7 +201795,7 @@ }, { "str": "-", - "token_id": 22793, + "token_id": 22765, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202060,7 +201804,7 @@ }, { "str": "-", - "token_id": 22794, + "token_id": 22766, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202069,7 +201813,7 @@ }, { "str": "12", - "token_id": 22795, + "token_id": 22767, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202078,7 +201822,7 @@ }, { "str": "techradar", - "token_id": 22796, + "token_id": 22768, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202087,7 +201831,7 @@ }, { "str": "|", - "token_id": 22797, + "token_id": 22769, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202096,7 +201840,7 @@ }, { "str": "archive", - "token_id": 22798, + "token_id": 22770, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202105,7 +201849,7 @@ }, { "str": "-", - "token_id": 22799, + "token_id": 22771, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202114,7 +201858,7 @@ }, { "str": "=", - "token_id": 22800, + "token_id": 22772, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202123,7 +201867,7 @@ }, { "str": "14", - "token_id": 22801, + "token_id": 22773, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202132,7 +201876,7 @@ }, { "str": "october", - "token_id": 22802, + "token_id": 22774, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202141,7 +201885,7 @@ }, { "str": "2022", - "token_id": 22803, + "token_id": 22775, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202150,7 +201894,7 @@ }, { "str": "|", - "token_id": 22804, + "token_id": 22776, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202159,7 +201903,7 @@ }, { "str": "archive", - "token_id": 22805, + "token_id": 22777, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202168,7 +201912,7 @@ }, { "str": "-", - "token_id": 22806, + "token_id": 22778, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202177,7 +201921,7 @@ }, { "str": "url", - "token_id": 22807, + "token_id": 22779, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202186,7 +201930,7 @@ }, { "str": "=", - "token_id": 22808, + "token_id": 22780, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202195,7 +201939,7 @@ }, { "str": "https", - "token_id": 22809, + "token_id": 22781, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202204,7 +201948,7 @@ }, { "str": ":", - "token_id": 22810, + "token_id": 22782, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202213,7 +201957,7 @@ }, { "str": "/", - "token_id": 22811, + "token_id": 22783, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202222,7 +201966,7 @@ }, { "str": "/", - "token_id": 22812, + "token_id": 22784, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202231,7 +201975,7 @@ }, { "str": "web", - "token_id": 22813, + "token_id": 22785, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202240,7 +201984,7 @@ }, { "str": ".", - "token_id": 22814, + "token_id": 22786, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202249,7 +201993,7 @@ }, { "str": "archive", - "token_id": 22815, + "token_id": 22787, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202258,7 +202002,7 @@ }, { "str": ".", - "token_id": 22816, + "token_id": 22788, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202267,7 +202011,7 @@ }, { "str": "org", - "token_id": 22817, + "token_id": 22789, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202276,7 +202020,7 @@ }, { "str": "/", - "token_id": 22818, + "token_id": 22790, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202285,7 +202029,7 @@ }, { "str": "web", - "token_id": 22819, + "token_id": 22791, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202294,7 +202038,7 @@ }, { "str": "/", - "token_id": 22820, + "token_id": 22792, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202303,7 +202047,7 @@ }, { "str": "20221014212721", - "token_id": 22821, + "token_id": 22793, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202312,7 +202056,7 @@ }, { "str": "/", - "token_id": 22822, + "token_id": 22794, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202321,7 +202065,7 @@ }, { "str": "https", - "token_id": 22823, + "token_id": 22795, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202330,7 +202074,7 @@ }, { "str": ":", - "token_id": 22824, + "token_id": 22796, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202339,7 +202083,7 @@ }, { "str": "/", - "token_id": 22825, + "token_id": 22797, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202348,7 +202092,7 @@ }, { "str": "/", - "token_id": 22826, + "token_id": 22798, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202357,7 +202101,7 @@ }, { "str": "www", - "token_id": 22827, + "token_id": 22799, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202366,7 +202110,7 @@ }, { "str": ".", - "token_id": 22828, + "token_id": 22800, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202375,7 +202119,7 @@ }, { "str": "techradar", - "token_id": 22829, + "token_id": 22801, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202384,7 +202128,7 @@ }, { "str": ".", - "token_id": 22830, + "token_id": 22802, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202393,7 +202137,7 @@ }, { "str": "com", - "token_id": 22831, + "token_id": 22803, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202402,7 +202146,7 @@ }, { "str": "/", - "token_id": 22832, + "token_id": 22804, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202411,7 +202155,7 @@ }, { "str": "news", - "token_id": 22833, + "token_id": 22805, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202420,7 +202164,7 @@ }, { "str": "/", - "token_id": 22834, + "token_id": 22806, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202429,7 +202173,7 @@ }, { "str": "xenoblade", - "token_id": 22835, + "token_id": 22807, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202438,7 +202182,7 @@ }, { "str": "-", - "token_id": 22836, + "token_id": 22808, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202447,7 +202191,7 @@ }, { "str": "chronicles", - "token_id": 22837, + "token_id": 22809, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202456,7 +202200,7 @@ }, { "str": "-", - "token_id": 22838, + "token_id": 22810, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202465,7 +202209,7 @@ }, { "str": "3", - "token_id": 22839, + "token_id": 22811, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202474,7 +202218,7 @@ }, { "str": "-", - "token_id": 22840, + "token_id": 22812, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202483,7 +202227,7 @@ }, { "str": "creator", - "token_id": 22841, + "token_id": 22813, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202492,7 +202236,7 @@ }, { "str": "-", - "token_id": 22842, + "token_id": 22814, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202501,7 +202245,7 @@ }, { "str": "boosted", - "token_id": 22843, + "token_id": 22815, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202510,7 +202254,7 @@ }, { "str": "-", - "token_id": 22844, + "token_id": 22816, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202519,7 +202263,7 @@ }, { "str": "splatoon", - "token_id": 22845, + "token_id": 22817, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202528,7 +202272,7 @@ }, { "str": "-", - "token_id": 22846, + "token_id": 22818, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202537,7 +202281,7 @@ }, { "str": "3", - "token_id": 22847, + "token_id": 22819, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202546,7 +202290,7 @@ }, { "str": "-", - "token_id": 22848, + "token_id": 22820, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202555,7 +202299,7 @@ }, { "str": "during", - "token_id": 22849, + "token_id": 22821, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202564,7 +202308,7 @@ }, { "str": "-", - "token_id": 22850, + "token_id": 22822, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202573,7 +202317,7 @@ }, { "str": "development", - "token_id": 22851, + "token_id": 22823, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202582,56 +202326,56 @@ }, { "str": "|", - "token_id": 22852, + "token_id": 22824, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 22853, + "token_id": 22825, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22854, + "token_id": 22826, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 22855, + "token_id": 22827, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22856, + "token_id": 22828, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 22857, + "token_id": 22829, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22858, + "token_id": 22830, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22859, + "token_id": 22831, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202640,7 +202384,7 @@ }, { "str": "-", - "token_id": 22860, + "token_id": 22832, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202649,7 +202393,7 @@ }, { "str": "date", - "token_id": 22861, + "token_id": 22833, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202658,7 +202402,7 @@ }, { "str": "=", - "token_id": 22862, + "token_id": 22834, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202667,7 +202411,7 @@ }, { "str": "2022", - "token_id": 22863, + "token_id": 22835, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202676,7 +202420,7 @@ }, { "str": "-", - "token_id": 22864, + "token_id": 22836, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202685,7 +202429,7 @@ }, { "str": "10", - "token_id": 22865, + "token_id": 22837, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202694,7 +202438,7 @@ }, { "str": "-", - "token_id": 22866, + "token_id": 22838, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202703,7 +202447,7 @@ }, { "str": "12", - "token_id": 22867, + "token_id": 22839, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202712,7 +202456,7 @@ }, { "str": "|", - "token_id": 22868, + "token_id": 22840, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202721,7 +202465,7 @@ }, { "str": "=", - "token_id": 22869, + "token_id": 22841, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202730,7 +202474,7 @@ }, { "str": "|", - "token_id": 22870, + "token_id": 22842, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202739,7 +202483,7 @@ }, { "str": "=", - "token_id": 22871, + "token_id": 22843, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202748,7 +202492,7 @@ }, { "str": "-", - "token_id": 22872, + "token_id": 22844, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202757,7 +202501,7 @@ }, { "str": "|", - "token_id": 22873, + "token_id": 22845, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202766,7 +202510,7 @@ }, { "str": "archive", - "token_id": 22874, + "token_id": 22846, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202775,7 +202519,7 @@ }, { "str": "-", - "token_id": 22875, + "token_id": 22847, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202784,7 +202528,7 @@ }, { "str": "date", - "token_id": 22876, + "token_id": 22848, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202793,7 +202537,7 @@ }, { "str": "=", - "token_id": 22877, + "token_id": 22849, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202802,7 +202546,7 @@ }, { "str": "11", - "token_id": 22878, + "token_id": 22850, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202811,7 +202555,7 @@ }, { "str": "september", - "token_id": 22879, + "token_id": 22851, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202820,7 +202564,7 @@ }, { "str": "2022", - "token_id": 22880, + "token_id": 22852, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202829,7 +202573,7 @@ }, { "str": "|", - "token_id": 22881, + "token_id": 22853, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202838,7 +202582,7 @@ }, { "str": "archive", - "token_id": 22882, + "token_id": 22854, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202847,7 +202591,7 @@ }, { "str": "-", - "token_id": 22883, + "token_id": 22855, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202856,7 +202600,7 @@ }, { "str": "url", - "token_id": 22884, + "token_id": 22856, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202865,7 +202609,7 @@ }, { "str": "=", - "token_id": 22885, + "token_id": 22857, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202874,7 +202618,7 @@ }, { "str": "https", - "token_id": 22886, + "token_id": 22858, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202883,7 +202627,7 @@ }, { "str": ":", - "token_id": 22887, + "token_id": 22859, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202892,7 +202636,7 @@ }, { "str": "/", - "token_id": 22888, + "token_id": 22860, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202901,7 +202645,7 @@ }, { "str": "/", - "token_id": 22889, + "token_id": 22861, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202910,7 +202654,7 @@ }, { "str": "web", - "token_id": 22890, + "token_id": 22862, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202919,7 +202663,7 @@ }, { "str": ".", - "token_id": 22891, + "token_id": 22863, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202928,7 +202672,7 @@ }, { "str": "archive", - "token_id": 22892, + "token_id": 22864, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202937,7 +202681,7 @@ }, { "str": ".", - "token_id": 22893, + "token_id": 22865, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202946,7 +202690,7 @@ }, { "str": "org", - "token_id": 22894, + "token_id": 22866, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202955,7 +202699,7 @@ }, { "str": "/", - "token_id": 22895, + "token_id": 22867, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202964,7 +202708,7 @@ }, { "str": "web", - "token_id": 22896, + "token_id": 22868, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202973,7 +202717,7 @@ }, { "str": "/", - "token_id": 22897, + "token_id": 22869, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202982,7 +202726,7 @@ }, { "str": "20220911172034", - "token_id": 22898, + "token_id": 22870, "o_rev_id": 1140535097, "in": [], "out": [ @@ -202991,7 +202735,7 @@ }, { "str": "/", - "token_id": 22899, + "token_id": 22871, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203000,7 +202744,7 @@ }, { "str": "https", - "token_id": 22900, + "token_id": 22872, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203009,7 +202753,7 @@ }, { "str": ":", - "token_id": 22901, + "token_id": 22873, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203018,7 +202762,7 @@ }, { "str": "/", - "token_id": 22902, + "token_id": 22874, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203027,7 +202771,7 @@ }, { "str": "/", - "token_id": 22903, + "token_id": 22875, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203036,7 +202780,7 @@ }, { "str": "www", - "token_id": 22904, + "token_id": 22876, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203045,7 +202789,7 @@ }, { "str": ".", - "token_id": 22905, + "token_id": 22877, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203054,7 +202798,7 @@ }, { "str": "nintendolife", - "token_id": 22906, + "token_id": 22878, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203063,7 +202807,7 @@ }, { "str": ".", - "token_id": 22907, + "token_id": 22879, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203072,7 +202816,7 @@ }, { "str": "com", - "token_id": 22908, + "token_id": 22880, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203081,7 +202825,7 @@ }, { "str": "/", - "token_id": 22909, + "token_id": 22881, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203090,7 +202834,7 @@ }, { "str": "news", - "token_id": 22910, + "token_id": 22882, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203099,7 +202843,7 @@ }, { "str": "/", - "token_id": 22911, + "token_id": 22883, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203108,7 +202852,7 @@ }, { "str": "2022", - "token_id": 22912, + "token_id": 22884, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203117,7 +202861,7 @@ }, { "str": "/", - "token_id": 22913, + "token_id": 22885, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203126,7 +202870,7 @@ }, { "str": "/", - "token_id": 22914, + "token_id": 22886, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203135,7 +202879,7 @@ }, { "str": "xenoblade", - "token_id": 22915, + "token_id": 22887, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203144,7 +202888,7 @@ }, { "str": "-", - "token_id": 22916, + "token_id": 22888, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203153,7 +202897,7 @@ }, { "str": "chronicles", - "token_id": 22917, + "token_id": 22889, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203162,7 +202906,7 @@ }, { "str": "-", - "token_id": 22918, + "token_id": 22890, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203171,7 +202915,7 @@ }, { "str": "studio", - "token_id": 22919, + "token_id": 22891, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203180,7 +202924,7 @@ }, { "str": "-", - "token_id": 22920, + "token_id": 22892, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203189,7 +202933,7 @@ }, { "str": "monolith", - "token_id": 22921, + "token_id": 22893, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203198,7 +202942,7 @@ }, { "str": "-", - "token_id": 22922, + "token_id": 22894, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203207,7 +202951,7 @@ }, { "str": "soft", - "token_id": 22923, + "token_id": 22895, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203216,7 +202960,7 @@ }, { "str": "-", - "token_id": 22924, + "token_id": 22896, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203225,7 +202969,7 @@ }, { "str": "helped", - "token_id": 22925, + "token_id": 22897, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203234,7 +202978,7 @@ }, { "str": "-", - "token_id": 22926, + "token_id": 22898, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203243,7 +202987,7 @@ }, { "str": "out", - "token_id": 22927, + "token_id": 22899, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203252,7 +202996,7 @@ }, { "str": "-", - "token_id": 22928, + "token_id": 22900, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203261,7 +203005,7 @@ }, { "str": "with", - "token_id": 22929, + "token_id": 22901, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203270,7 +203014,7 @@ }, { "str": "-", - "token_id": 22930, + "token_id": 22902, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203279,7 +203023,7 @@ }, { "str": "splatoon", - "token_id": 22931, + "token_id": 22903, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203288,7 +203032,7 @@ }, { "str": "-", - "token_id": 22932, + "token_id": 22904, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203297,7 +203041,7 @@ }, { "str": "3", - "token_id": 22933, + "token_id": 22905, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203306,7 +203050,7 @@ }, { "str": "|", - "token_id": 22934, + "token_id": 22906, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203315,7 +203059,7 @@ }, { "str": "url", - "token_id": 22935, + "token_id": 22907, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203324,7 +203068,7 @@ }, { "str": "-", - "token_id": 22936, + "token_id": 22908, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203333,7 +203077,7 @@ }, { "str": "status", - "token_id": 22937, + "token_id": 22909, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203342,7 +203086,7 @@ }, { "str": "=", - "token_id": 22938, + "token_id": 22910, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203351,7 +203095,7 @@ }, { "str": "live", - "token_id": 22939, + "token_id": 22911, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203360,7 +203104,7 @@ }, { "str": "/", - "token_id": 22940, + "token_id": 22912, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203369,42 +203113,44 @@ }, { "str": "|", - "token_id": 22941, + "token_id": 22913, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22942, + "token_id": 22914, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 22943, + "token_id": 22915, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22944, + "token_id": 22916, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 22945, + "token_id": 22917, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22946, + "token_id": 22918, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203413,7 +203159,7 @@ }, { "str": "10", - "token_id": 22947, + "token_id": 22919, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203422,7 +203168,7 @@ }, { "str": "-", - "token_id": 22948, + "token_id": 22920, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203431,63 +203177,63 @@ }, { "str": "|", - "token_id": 22949, + "token_id": 22921, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 22950, + "token_id": 22922, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22951, + "token_id": 22923, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 22952, + "token_id": 22924, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22953, + "token_id": 22925, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 22954, + "token_id": 22926, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22955, + "token_id": 22927, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 22956, + "token_id": 22928, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22957, + "token_id": 22929, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203496,14 +203242,14 @@ }, { "str": "|", - "token_id": 22958, + "token_id": 22930, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22959, + "token_id": 22931, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -203514,7 +203260,7 @@ }, { "str": "-", - "token_id": 22960, + "token_id": 22932, "o_rev_id": 1140535097, "in": [], "out": [ @@ -203523,457 +203269,455 @@ }, { "str": "date", - "token_id": 22961, + "token_id": 22933, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22962, + "token_id": 22934, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 22963, + "token_id": 22935, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 22964, + "token_id": 22936, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 22965, + "token_id": 22937, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22966, + "token_id": 22938, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 22967, + "token_id": 22939, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "url", - "token_id": 22968, + "token_id": 22940, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 22969, + "token_id": 22941, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22970, + "token_id": 22942, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22971, + "token_id": 22943, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22972, + "token_id": 22944, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22973, + "token_id": 22945, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22974, + "token_id": 22946, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22975, + "token_id": 22947, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 22976, + "token_id": 22948, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22977, + "token_id": 22949, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 22978, + "token_id": 22950, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22979, + "token_id": 22951, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 22980, + "token_id": 22952, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22981, + "token_id": 22953, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221013005139", - "token_id": 22982, + "token_id": 22954, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22983, + "token_id": 22955, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 22984, + "token_id": 22956, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 22985, + "token_id": 22957, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22986, + "token_id": 22958, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22987, + "token_id": 22959, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 22988, + "token_id": 22960, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22989, + "token_id": 22961, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 22990, + "token_id": 22962, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 22991, + "token_id": 22963, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 22992, + "token_id": 22964, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22993, + "token_id": 22965, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 22994, + "token_id": 22966, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22995, + "token_id": 22967, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 22996, + "token_id": 22968, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22997, + "token_id": 22969, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "08", - "token_id": 22998, + "token_id": 22970, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 22999, + "token_id": 22971, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "it", - "token_id": 23000, + "token_id": 22972, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23001, + "token_id": 22973, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "looks", - "token_id": 23002, + "token_id": 22974, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23003, + "token_id": 22975, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "like", - "token_id": 23004, + "token_id": 22976, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23005, + "token_id": 22977, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23006, + "token_id": 22978, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23007, + "token_id": 22979, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23008, + "token_id": 22980, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23009, + "token_id": 22981, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "will", - "token_id": 23010, + "token_id": 22982, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23011, + "token_id": 22983, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "be", - "token_id": 23012, + "token_id": 22984, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23013, + "token_id": 22985, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "using", - "token_id": 23014, + "token_id": 22986, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23015, + "token_id": 22987, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendos", - "token_id": 23016, + "token_id": 22988, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23017, + "token_id": 22989, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 23018, + "token_id": 22990, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23019, + "token_id": 22991, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "house", - "token_id": 23020, + "token_id": 22992, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23021, + "token_id": 22993, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "server", - "token_id": 23022, + "token_id": 22994, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23023, + "token_id": 22995, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "system", - "token_id": 23024, + "token_id": 22996, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23025, + "token_id": 22997, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -203984,7 +203728,7 @@ }, { "str": "url", - "token_id": 23026, + "token_id": 22998, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -203995,7 +203739,7 @@ }, { "str": "-", - "token_id": 23027, + "token_id": 22999, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204006,7 +203750,7 @@ }, { "str": "status", - "token_id": 23028, + "token_id": 23000, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204017,7 +203761,7 @@ }, { "str": "=", - "token_id": 23029, + "token_id": 23001, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204028,7 +203772,7 @@ }, { "str": "live", - "token_id": 23030, + "token_id": 23002, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204039,7 +203783,7 @@ }, { "str": "}}", - "token_id": 23031, + "token_id": 23003, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204050,7 +203794,7 @@ }, { "str": "<", - "token_id": 23032, + "token_id": 23004, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204061,7 +203805,7 @@ }, { "str": "/", - "token_id": 23033, + "token_id": 23005, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204072,7 +203816,7 @@ }, { "str": "ref", - "token_id": 23034, + "token_id": 23006, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204083,7 +203827,7 @@ }, { "str": ">", - "token_id": 23035, + "token_id": 23007, "o_rev_id": 1140535097, "in": [ 1142020922 @@ -204094,7 +203838,7 @@ }, { "str": "|", - "token_id": 23036, + "token_id": 23008, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204105,7 +203849,7 @@ }, { "str": "access", - "token_id": 23037, + "token_id": 23009, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204116,21 +203860,21 @@ }, { "str": "-", - "token_id": 23038, + "token_id": 23010, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23039, + "token_id": 23011, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23040, + "token_id": 23012, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204141,14 +203885,14 @@ }, { "str": "2022", - "token_id": 23041, + "token_id": 23013, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23042, + "token_id": 23014, "o_rev_id": 1140535097, "in": [], "out": [ @@ -204157,7 +203901,7 @@ }, { "str": "10", - "token_id": 23043, + "token_id": 23015, "o_rev_id": 1140535097, "in": [], "out": [ @@ -204166,7 +203910,7 @@ }, { "str": "-", - "token_id": 23044, + "token_id": 23016, "o_rev_id": 1140535097, "in": [], "out": [ @@ -204175,35 +203919,35 @@ }, { "str": "12", - "token_id": 23045, + "token_id": 23017, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23046, + "token_id": 23018, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "magazine", - "token_id": 23047, + "token_id": 23019, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23048, + "token_id": 23020, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 23049, + "token_id": 23021, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204214,14 +203958,14 @@ }, { "str": "informer", - "token_id": 23050, + "token_id": 23022, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23051, + "token_id": 23023, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204232,7 +203976,7 @@ }, { "str": "language", - "token_id": 23052, + "token_id": 23024, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204243,7 +203987,7 @@ }, { "str": "=", - "token_id": 23053, + "token_id": 23025, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204254,7 +203998,7 @@ }, { "str": "en", - "token_id": 23054, + "token_id": 23026, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204265,7 +204009,7 @@ }, { "str": "|", - "token_id": 23055, + "token_id": 23027, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204276,32 +204020,28 @@ }, { "str": "archive", - "token_id": 23056, + "token_id": 23028, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23057, + "token_id": 23029, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "date", - "token_id": 23058, + "token_id": 23030, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23059, + "token_id": 23031, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204312,28 +204052,32 @@ }, { "str": "16", - "token_id": 23060, + "token_id": 23032, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 23061, + "token_id": 23033, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23062, + "token_id": 23034, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 23063, + "token_id": 23035, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204344,7 +204088,7 @@ }, { "str": "archive", - "token_id": 23064, + "token_id": 23036, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204355,7 +204099,14 @@ }, { "str": "-", - "token_id": 23065, + "token_id": 23037, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 23038, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204364,16 +204115,9 @@ 1202071552 ] }, - { - "str": "url", - "token_id": 23066, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, { "str": "=", - "token_id": 23067, + "token_id": 23039, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -204384,462 +204128,471 @@ }, { "str": "https", - "token_id": 23068, + "token_id": 23040, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23069, + "token_id": 23041, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23070, + "token_id": 23042, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23071, + "token_id": 23043, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23072, + "token_id": 23044, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23073, + "token_id": 23045, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23074, + "token_id": 23046, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23075, + "token_id": 23047, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23076, + "token_id": 23048, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23077, + "token_id": 23049, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23078, + "token_id": 23050, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23079, + "token_id": 23051, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221016193353", - "token_id": 23080, + "token_id": 23052, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23081, + "token_id": 23053, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23082, + "token_id": 23054, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23083, + "token_id": 23055, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23084, + "token_id": 23056, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23085, + "token_id": 23057, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23086, + "token_id": 23058, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23087, + "token_id": 23059, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gameinformer", - "token_id": 23088, + "token_id": 23060, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23089, + "token_id": 23061, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23090, + "token_id": 23062, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23091, + "token_id": 23063, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2019", - "token_id": 23092, + "token_id": 23064, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23093, + "token_id": 23065, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "07", - "token_id": 23094, + "token_id": 23066, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23095, + "token_id": 23067, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "18", + "token_id": 23068, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23096, + "token_id": 23069, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23097, + "token_id": 23070, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23098, + "token_id": 23071, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23099, + "token_id": 23072, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23100, + "token_id": 23073, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "is", - "token_id": 23101, + "token_id": 23074, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23102, + "token_id": 23075, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "not", - "token_id": 23103, + "token_id": 23076, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23104, + "token_id": 23077, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 23105, + "token_id": 23078, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23106, + "token_id": 23079, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "production", - "token_id": 23107, + "token_id": 23080, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23108, + "token_id": 23081, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "as", - "token_id": 23109, + "token_id": 23082, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23110, + "token_id": 23083, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "final", - "token_id": 23111, + "token_id": 23084, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23112, + "token_id": 23085, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 23113, + "token_id": 23086, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23114, + "token_id": 23087, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "begins", - "token_id": 23115, + "token_id": 23088, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23116, + "token_id": 23089, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23117, + "token_id": 23090, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23118, + "token_id": 23091, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23119, + "token_id": 23092, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23120, + "token_id": 23093, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23121, + "token_id": 23094, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23122, + "token_id": 23095, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23123, + "token_id": 23096, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23124, + "token_id": 23097, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23125, + "token_id": 23098, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23126, + "token_id": 23099, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23127, + "token_id": 23100, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 23128, + "token_id": 23101, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23129, + "token_id": 23102, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 23130, + "token_id": 23103, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23131, + "token_id": 23104, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23132, + "token_id": 23105, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23133, + "token_id": 23106, "o_rev_id": 1140535097, "in": [], "out": [ @@ -204848,555 +204601,553 @@ }, { "str": "10", - "token_id": 23134, + "token_id": 23107, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23135, + "token_id": 23108, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "12", - "token_id": 23136, + "token_id": 23109, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23137, + "token_id": 23110, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 23138, + "token_id": 23111, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23139, + "token_id": 23112, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 23140, + "token_id": 23113, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "rant", - "token_id": 23141, + "token_id": 23114, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23142, + "token_id": 23115, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 23143, + "token_id": 23116, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23144, + "token_id": 23117, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 23145, + "token_id": 23118, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23146, + "token_id": 23119, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "us", - "token_id": 23147, + "token_id": 23120, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23148, + "token_id": 23121, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23149, + "token_id": 23122, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23150, + "token_id": 23123, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23151, + "token_id": 23124, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23152, + "token_id": 23125, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "17", - "token_id": 23153, + "token_id": 23126, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 23154, + "token_id": 23127, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23155, + "token_id": 23128, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23156, + "token_id": 23129, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23157, + "token_id": 23130, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23158, + "token_id": 23131, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23159, + "token_id": 23132, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23160, + "token_id": 23133, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23161, + "token_id": 23134, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23162, + "token_id": 23135, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23163, + "token_id": 23136, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23164, + "token_id": 23137, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23165, + "token_id": 23138, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23166, + "token_id": 23139, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23167, + "token_id": 23140, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23168, + "token_id": 23141, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23169, + "token_id": 23142, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23170, + "token_id": 23143, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23171, + "token_id": 23144, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23172, + "token_id": 23145, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221017094047", - "token_id": 23173, + "token_id": 23146, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23174, + "token_id": 23147, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23175, + "token_id": 23148, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23176, + "token_id": 23149, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23177, + "token_id": 23150, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23178, + "token_id": 23151, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gamerant", - "token_id": 23179, + "token_id": 23152, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23180, + "token_id": 23153, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23181, + "token_id": 23154, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23182, + "token_id": 23155, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23183, + "token_id": 23156, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23184, + "token_id": 23157, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23185, + "token_id": 23158, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23186, + "token_id": 23159, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23187, + "token_id": 23160, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23188, + "token_id": 23161, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2", - "token_id": 23189, + "token_id": 23162, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23190, + "token_id": 23163, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "final", - "token_id": 23191, + "token_id": 23164, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23192, + "token_id": 23165, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 23193, + "token_id": 23166, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23194, + "token_id": 23167, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "creative", - "token_id": 23195, + "token_id": 23168, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23196, + "token_id": 23169, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "direction", - "token_id": 23197, + "token_id": 23170, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23198, + "token_id": 23171, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23199, + "token_id": 23172, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23200, + "token_id": 23173, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23201, + "token_id": 23174, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23202, + "token_id": 23175, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23203, + "token_id": 23176, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23204, + "token_id": 23177, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23205, + "token_id": 23178, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23206, + "token_id": 23179, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23207, + "token_id": 23180, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23208, + "token_id": 23181, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23209, + "token_id": 23182, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23210, + "token_id": 23183, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 23211, + "token_id": 23184, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23212, + "token_id": 23185, "o_rev_id": 1140535097, "in": [], "out": [ @@ -205405,28 +205156,32 @@ }, { "str": "date", - "token_id": 23213, + "token_id": 23186, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23214, + "token_id": 23187, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23215, + "token_id": 23188, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 23216, + "token_id": 23189, "o_rev_id": 1140535097, "in": [], "out": [ @@ -205435,51 +205190,49 @@ }, { "str": "10", - "token_id": 23217, + "token_id": 23190, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23218, + "token_id": 23191, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "12", - "token_id": 23219, + "token_id": 23192, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23220, + "token_id": 23193, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 23221, + "token_id": 23194, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23222, + "token_id": 23195, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 23223, + "token_id": 23196, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -205490,42 +205243,42 @@ }, { "str": "life", - "token_id": 23224, + "token_id": 23197, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23225, + "token_id": 23198, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 23226, + "token_id": 23199, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23227, + "token_id": 23200, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 23228, + "token_id": 23201, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23229, + "token_id": 23202, "o_rev_id": 1140535097, "in": [], "out": [ @@ -205534,28 +205287,28 @@ }, { "str": "gb", - "token_id": 23230, + "token_id": 23203, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23231, + "token_id": 23204, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23232, + "token_id": 23205, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23233, + "token_id": 23206, "o_rev_id": 1140535097, "in": [], "out": [ @@ -205564,56 +205317,56 @@ }, { "str": "date", - "token_id": 23234, + "token_id": 23207, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23235, + "token_id": 23208, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "12", - "token_id": 23236, + "token_id": 23209, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 23237, + "token_id": 23210, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23238, + "token_id": 23211, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23239, + "token_id": 23212, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23240, + "token_id": 23213, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23241, + "token_id": 23214, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -205624,497 +205377,505 @@ }, { "str": "url", - "token_id": 23242, + "token_id": 23215, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23243, + "token_id": 23216, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23244, + "token_id": 23217, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23245, + "token_id": 23218, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23246, + "token_id": 23219, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23247, + "token_id": 23220, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23248, + "token_id": 23221, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23249, + "token_id": 23222, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23250, + "token_id": 23223, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23251, + "token_id": 23224, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23252, + "token_id": 23225, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23253, + "token_id": 23226, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23254, + "token_id": 23227, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23255, + "token_id": 23228, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012144440", - "token_id": 23256, + "token_id": 23229, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23257, + "token_id": 23230, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23258, + "token_id": 23231, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23259, + "token_id": 23232, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23260, + "token_id": 23233, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23261, + "token_id": 23234, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23262, + "token_id": 23235, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23263, + "token_id": 23236, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 23264, + "token_id": 23237, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23265, + "token_id": 23238, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23266, + "token_id": 23239, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23267, + "token_id": 23240, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 23268, + "token_id": 23241, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23269, + "token_id": 23242, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23270, + "token_id": 23243, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23271, + "token_id": 23244, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 23272, + "token_id": 23245, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23273, + "token_id": 23246, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "random", - "token_id": 23274, + "token_id": 23247, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23275, + "token_id": 23248, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23276, + "token_id": 23249, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23277, + "token_id": 23250, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2s", - "token_id": 23278, + "token_id": 23251, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23279, + "token_id": 23252, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "final", - "token_id": 23280, + "token_id": 23253, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23281, + "token_id": 23254, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 23282, + "token_id": 23255, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23283, + "token_id": 23256, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dictated", - "token_id": 23284, + "token_id": 23257, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23285, + "token_id": 23258, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 23286, + "token_id": 23259, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23287, + "token_id": 23260, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "direction", - "token_id": 23288, + "token_id": 23261, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23289, + "token_id": 23262, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "of", - "token_id": 23290, + "token_id": 23263, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23291, + "token_id": 23264, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23292, + "token_id": 23265, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23293, + "token_id": 23266, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23294, + "token_id": 23267, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23295, + "token_id": 23268, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23296, + "token_id": 23269, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23297, + "token_id": 23270, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23298, + "token_id": 23271, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23299, + "token_id": 23272, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23300, + "token_id": 23273, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23301, + "token_id": 23274, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23302, + "token_id": 23275, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23303, + "token_id": 23276, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23304, + "token_id": 23277, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23305, + "token_id": 23278, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23306, + "token_id": 23279, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 23307, + "token_id": 23280, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23308, + "token_id": 23281, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23309, + "token_id": 23282, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23310, + "token_id": 23283, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2023", - "token_id": 23311, + "token_id": 23284, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 23312, + "token_id": 23285, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206123,7 +205884,7 @@ }, { "str": "02", - "token_id": 23313, + "token_id": 23286, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206132,109 +205893,105 @@ }, { "str": "-", - "token_id": 23314, + "token_id": 23287, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "16", - "token_id": 23315, + "token_id": 23288, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23316, + "token_id": 23289, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 23317, + "token_id": 23290, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23318, + "token_id": 23291, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nme", - "token_id": 23319, + "token_id": 23292, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23320, + "token_id": 23293, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 23321, + "token_id": 23294, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23322, + "token_id": 23295, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 23323, + "token_id": 23296, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23324, + "token_id": 23297, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "gb", - "token_id": 23325, + "token_id": 23298, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23326, + "token_id": 23299, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23327, + "token_id": 23300, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23328, + "token_id": 23301, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206243,28 +206000,28 @@ }, { "str": "date", - "token_id": 23329, + "token_id": 23302, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23330, + "token_id": 23303, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "16", - "token_id": 23331, + "token_id": 23304, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "february", - "token_id": 23332, + "token_id": 23305, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -206275,28 +206032,32 @@ }, { "str": "2023", - "token_id": 23333, + "token_id": 23306, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 23334, + "token_id": 23307, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23335, + "token_id": 23308, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23336, + "token_id": 23309, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206305,511 +206066,515 @@ }, { "str": "url", - "token_id": 23337, + "token_id": 23310, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23338, + "token_id": 23311, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23339, + "token_id": 23312, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23340, + "token_id": 23313, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23341, + "token_id": 23314, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23342, + "token_id": 23315, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23343, + "token_id": 23316, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23344, + "token_id": 23317, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23345, + "token_id": 23318, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23346, + "token_id": 23319, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23347, + "token_id": 23320, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23348, + "token_id": 23321, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23349, + "token_id": 23322, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23350, + "token_id": 23323, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20230216141313", - "token_id": 23351, + "token_id": 23324, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23352, + "token_id": 23325, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23353, + "token_id": 23326, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23354, + "token_id": 23327, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23355, + "token_id": 23328, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23356, + "token_id": 23329, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23357, + "token_id": 23330, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23358, + "token_id": 23331, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nme", - "token_id": 23359, + "token_id": 23332, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23360, + "token_id": 23333, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23361, + "token_id": 23334, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23362, + "token_id": 23335, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 23363, + "token_id": 23336, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23364, + "token_id": 23337, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gaming", - "token_id": 23365, + "token_id": 23338, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23366, + "token_id": 23339, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 23367, + "token_id": 23340, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23368, + "token_id": 23341, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 23369, + "token_id": 23342, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23370, + "token_id": 23343, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "confirms", - "token_id": 23371, + "token_id": 23344, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23372, + "token_id": 23345, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "post", - "token_id": 23373, + "token_id": 23346, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23374, + "token_id": 23347, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "release", - "token_id": 23375, + "token_id": 23348, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23376, + "token_id": 23349, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "roadmap", - "token_id": 23377, + "token_id": 23350, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23378, + "token_id": 23351, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "for", - "token_id": 23379, + "token_id": 23352, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23380, + "token_id": 23353, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23381, + "token_id": 23354, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23382, + "token_id": 23355, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23383, + "token_id": 23356, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23384, + "token_id": 23357, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "alongside", - "token_id": 23385, + "token_id": 23358, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23386, + "token_id": 23359, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "new", - "token_id": 23387, + "token_id": 23360, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23388, + "token_id": 23361, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "weapons", - "token_id": 23389, + "token_id": 23362, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23390, + "token_id": 23363, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3287192", - "token_id": 23391, + "token_id": 23364, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23392, + "token_id": 23365, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23393, + "token_id": 23366, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23394, + "token_id": 23367, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23395, + "token_id": 23368, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23396, + "token_id": 23369, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23397, + "token_id": 23370, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23398, + "token_id": 23371, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23399, + "token_id": 23372, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23400, + "token_id": 23373, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23401, + "token_id": 23374, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23402, + "token_id": 23375, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23403, + "token_id": 23376, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 23404, + "token_id": 23377, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23405, + "token_id": 23378, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23406, + "token_id": 23379, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23407, + "token_id": 23380, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2023", - "token_id": 23408, + "token_id": 23381, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23409, + "token_id": 23382, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206818,7 +206583,7 @@ }, { "str": "02", - "token_id": 23410, + "token_id": 23383, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206827,7 +206592,7 @@ }, { "str": "-", - "token_id": 23411, + "token_id": 23384, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206836,91 +206601,91 @@ }, { "str": "16", - "token_id": 23412, + "token_id": 23385, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23413, + "token_id": 23386, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 23414, + "token_id": 23387, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23415, + "token_id": 23388, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "digital", - "token_id": 23416, + "token_id": 23389, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "trends", - "token_id": 23417, + "token_id": 23390, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23418, + "token_id": 23391, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 23419, + "token_id": 23392, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23420, + "token_id": 23393, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 23421, + "token_id": 23394, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23422, + "token_id": 23395, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23423, + "token_id": 23396, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23424, + "token_id": 23397, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206929,28 +206694,28 @@ }, { "str": "date", - "token_id": 23425, + "token_id": 23398, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23426, + "token_id": 23399, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "16", - "token_id": 23427, + "token_id": 23400, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "february", - "token_id": 23428, + "token_id": 23401, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -206961,28 +206726,28 @@ }, { "str": "2023", - "token_id": 23429, + "token_id": 23402, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23430, + "token_id": 23403, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23431, + "token_id": 23404, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23432, + "token_id": 23405, "o_rev_id": 1140535097, "in": [], "out": [ @@ -206991,378 +206756,386 @@ }, { "str": "url", - "token_id": 23433, + "token_id": 23406, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23434, + "token_id": 23407, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23435, + "token_id": 23408, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23436, + "token_id": 23409, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23437, + "token_id": 23410, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23438, + "token_id": 23411, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23439, + "token_id": 23412, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23440, + "token_id": 23413, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23441, + "token_id": 23414, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23442, + "token_id": 23415, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23443, + "token_id": 23416, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23444, + "token_id": 23417, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23445, + "token_id": 23418, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23446, + "token_id": 23419, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20230216141314", - "token_id": 23447, + "token_id": 23420, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23448, + "token_id": 23421, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23449, + "token_id": 23422, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23450, + "token_id": 23423, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23451, + "token_id": 23424, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23452, + "token_id": 23425, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23453, + "token_id": 23426, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23454, + "token_id": 23427, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "digitaltrends", - "token_id": 23455, + "token_id": 23428, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23456, + "token_id": 23429, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23457, + "token_id": 23430, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23458, + "token_id": 23431, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gaming", - "token_id": 23459, + "token_id": 23432, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23460, + "token_id": 23433, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23461, + "token_id": 23434, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23462, + "token_id": 23435, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23463, + "token_id": 23436, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23464, + "token_id": 23437, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "support", - "token_id": 23465, + "token_id": 23438, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23466, + "token_id": 23439, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "update", - "token_id": 23467, + "token_id": 23440, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23468, + "token_id": 23441, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23469, + "token_id": 23442, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23470, + "token_id": 23443, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23471, + "token_id": 23444, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23472, + "token_id": 23445, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23473, + "token_id": 23446, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23474, + "token_id": 23447, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23475, + "token_id": 23448, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23476, + "token_id": 23449, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23477, + "token_id": 23450, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23478, + "token_id": 23451, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23479, + "token_id": 23452, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23480, + "token_id": 23453, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 23481, + "token_id": 23454, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23482, + "token_id": 23455, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "date", - "token_id": 23483, + "token_id": 23456, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23484, + "token_id": 23457, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2023", - "token_id": 23485, + "token_id": 23458, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23486, + "token_id": 23459, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207371,7 +207144,7 @@ }, { "str": "02", - "token_id": 23487, + "token_id": 23460, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207380,25 +207153,21 @@ }, { "str": "-", - "token_id": 23488, + "token_id": 23461, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "11", - "token_id": 23489, + "token_id": 23462, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23490, + "token_id": 23463, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207407,7 +207176,7 @@ }, { "str": "archive", - "token_id": 23491, + "token_id": 23464, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207416,7 +207185,7 @@ }, { "str": "-", - "token_id": 23492, + "token_id": 23465, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207425,14 +207194,14 @@ }, { "str": "date", - "token_id": 23493, + "token_id": 23466, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23494, + "token_id": 23467, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207441,7 +207210,7 @@ }, { "str": "11", - "token_id": 23495, + "token_id": 23468, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207450,23 +207219,30 @@ }, { "str": "february", - "token_id": 23496, + "token_id": 23469, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "2023", - "token_id": 23497, + "token_id": 23470, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1212426922 ] }, { "str": "|", - "token_id": 23498, + "token_id": 23471, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207475,7 +207251,7 @@ }, { "str": "archive", - "token_id": 23499, + "token_id": 23472, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207484,7 +207260,7 @@ }, { "str": "-", - "token_id": 23500, + "token_id": 23473, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207493,16 +207269,19 @@ }, { "str": "url", - "token_id": 23501, + "token_id": 23474, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1212426922 ] }, { "str": "=", - "token_id": 23502, + "token_id": 23475, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207511,280 +207290,280 @@ }, { "str": "https", - "token_id": 23503, + "token_id": 23476, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23504, + "token_id": 23477, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23505, + "token_id": 23478, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23506, + "token_id": 23479, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23507, + "token_id": 23480, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23508, + "token_id": 23481, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23509, + "token_id": 23482, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23510, + "token_id": 23483, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23511, + "token_id": 23484, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23512, + "token_id": 23485, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23513, + "token_id": 23486, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23514, + "token_id": 23487, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20230211183721", - "token_id": 23515, + "token_id": 23488, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23516, + "token_id": 23489, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23517, + "token_id": 23490, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23518, + "token_id": 23491, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23519, + "token_id": 23492, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23520, + "token_id": 23493, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23521, + "token_id": 23494, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23522, + "token_id": 23495, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "eurogamer", - "token_id": 23523, + "token_id": 23496, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23524, + "token_id": 23497, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "net", - "token_id": 23525, + "token_id": 23498, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23526, + "token_id": 23499, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23527, + "token_id": 23500, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23528, + "token_id": 23501, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23529, + "token_id": 23502, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23530, + "token_id": 23503, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dlc", - "token_id": 23531, + "token_id": 23504, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23532, + "token_id": 23505, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "includes", - "token_id": 23533, + "token_id": 23506, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23534, + "token_id": 23507, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "inkopolis", - "token_id": 23535, + "token_id": 23508, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23536, + "token_id": 23509, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "and", - "token_id": 23537, + "token_id": 23510, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23538, + "token_id": 23511, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "new", - "token_id": 23539, + "token_id": 23512, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23540, + "token_id": 23513, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "campaign", - "token_id": 23541, + "token_id": 23514, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23542, + "token_id": 23515, "o_rev_id": 1140535097, "in": [ 1240817705 @@ -207795,7 +207574,7 @@ }, { "str": "url", - "token_id": 23543, + "token_id": 23516, "o_rev_id": 1140535097, "in": [ 1240817705 @@ -207806,14 +207585,14 @@ }, { "str": "-", - "token_id": 23544, + "token_id": 23517, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23545, + "token_id": 23518, "o_rev_id": 1140535097, "in": [ 1240817705 @@ -207824,7 +207603,7 @@ }, { "str": "=", - "token_id": 23546, + "token_id": 23519, "o_rev_id": 1140535097, "in": [ 1240817705 @@ -207835,7 +207614,7 @@ }, { "str": "live", - "token_id": 23547, + "token_id": 23520, "o_rev_id": 1140535097, "in": [ 1240817705 @@ -207846,7 +207625,7 @@ }, { "str": "}}", - "token_id": 23548, + "token_id": 23521, "o_rev_id": 1140535097, "in": [ 1240817705 @@ -207857,72 +207636,72 @@ }, { "str": "<", - "token_id": 23549, + "token_id": 23522, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23550, + "token_id": 23523, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23551, + "token_id": 23524, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23552, + "token_id": 23525, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23553, + "token_id": 23526, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "access", - "token_id": 23554, + "token_id": 23527, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23555, + "token_id": 23528, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552, 1294910906 ] }, { "str": "date", - "token_id": 23556, + "token_id": 23529, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23557, + "token_id": 23530, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "2022", + "token_id": 23531, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -207931,16 +207710,9 @@ 1202071552 ] }, - { - "str": "2022", - "token_id": 23558, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, { "str": "-", - "token_id": 23559, + "token_id": 23532, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207949,7 +207721,7 @@ }, { "str": "10", - "token_id": 23560, + "token_id": 23533, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207958,7 +207730,7 @@ }, { "str": "-", - "token_id": 23561, + "token_id": 23534, "o_rev_id": 1140535097, "in": [], "out": [ @@ -207967,42 +207739,46 @@ }, { "str": "12", - "token_id": 23562, + "token_id": 23535, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23563, + "token_id": 23536, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 23564, + "token_id": 23537, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23565, + "token_id": 23538, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "polygon", - "token_id": 23566, + "token_id": 23539, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 23567, + "token_id": 23540, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -208013,14 +207789,18 @@ }, { "str": "language", - "token_id": 23568, + "token_id": 23541, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23569, + "token_id": 23542, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -208031,44 +207811,51 @@ }, { "str": "en", - "token_id": 23570, + "token_id": 23543, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 23571, + "token_id": 23544, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552, + 1294910906 ] }, { "str": "us", - "token_id": 23572, + "token_id": 23545, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23573, + "token_id": 23546, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23574, + "token_id": 23547, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23575, + "token_id": 23548, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208077,415 +207864,418 @@ }, { "str": "date", - "token_id": 23576, + "token_id": 23549, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23577, + "token_id": 23550, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "28", - "token_id": 23578, + "token_id": 23551, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 23579, + "token_id": 23552, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2021", - "token_id": 23580, + "token_id": 23553, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23581, + "token_id": 23554, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23582, + "token_id": 23555, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23583, + "token_id": 23556, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552, + 1294910906 ] }, { "str": "url", - "token_id": 23584, + "token_id": 23557, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23585, + "token_id": 23558, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23586, + "token_id": 23559, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23587, + "token_id": 23560, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23588, + "token_id": 23561, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23589, + "token_id": 23562, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23590, + "token_id": 23563, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23591, + "token_id": 23564, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23592, + "token_id": 23565, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23593, + "token_id": 23566, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23594, + "token_id": 23567, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23595, + "token_id": 23568, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23596, + "token_id": 23569, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23597, + "token_id": 23570, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20210928032434", - "token_id": 23598, + "token_id": 23571, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23599, + "token_id": 23572, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23600, + "token_id": 23573, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23601, + "token_id": 23574, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23602, + "token_id": 23575, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23603, + "token_id": 23576, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23604, + "token_id": 23577, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23605, + "token_id": 23578, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "polygon", - "token_id": 23606, + "token_id": 23579, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23607, + "token_id": 23580, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23608, + "token_id": 23581, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23609, + "token_id": 23582, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "22526099", - "token_id": 23610, + "token_id": 23583, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23611, + "token_id": 23584, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23612, + "token_id": 23585, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23613, + "token_id": 23586, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23614, + "token_id": 23587, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23615, + "token_id": 23588, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 23616, + "token_id": 23589, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23617, + "token_id": 23590, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gameplay", - "token_id": 23618, + "token_id": 23591, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23619, + "token_id": 23592, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 23620, + "token_id": 23593, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23621, + "token_id": 23594, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "direct", - "token_id": 23622, + "token_id": 23595, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23623, + "token_id": 23596, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23624, + "token_id": 23597, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23625, + "token_id": 23598, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23626, + "token_id": 23599, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23627, + "token_id": 23600, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23628, + "token_id": 23601, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23629, + "token_id": 23602, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23630, + "token_id": 23603, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23631, + "token_id": 23604, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23632, + "token_id": 23605, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23633, + "token_id": 23606, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23634, + "token_id": 23607, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208494,7 +208284,7 @@ }, { "str": "access", - "token_id": 23635, + "token_id": 23608, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208503,7 +208293,7 @@ }, { "str": "-", - "token_id": 23636, + "token_id": 23609, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208512,7 +208302,7 @@ }, { "str": "date", - "token_id": 23637, + "token_id": 23610, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208521,7 +208311,7 @@ }, { "str": "=", - "token_id": 23638, + "token_id": 23611, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208530,7 +208320,7 @@ }, { "str": "2022", - "token_id": 23639, + "token_id": 23612, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -208542,7 +208332,7 @@ }, { "str": "-", - "token_id": 23640, + "token_id": 23613, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208551,7 +208341,7 @@ }, { "str": "08", - "token_id": 23641, + "token_id": 23614, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208560,7 +208350,7 @@ }, { "str": "-", - "token_id": 23642, + "token_id": 23615, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208569,7 +208359,7 @@ }, { "str": "29", - "token_id": 23643, + "token_id": 23616, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208578,7 +208368,7 @@ }, { "str": "|", - "token_id": 23644, + "token_id": 23617, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -208590,16 +208380,19 @@ }, { "str": "website", - "token_id": 23645, + "token_id": 23618, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1294910906 ] }, { "str": "=", - "token_id": 23646, + "token_id": 23619, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -208611,7 +208404,7 @@ }, { "str": "techradar", - "token_id": 23647, + "token_id": 23620, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208620,7 +208413,7 @@ }, { "str": "|", - "token_id": 23648, + "token_id": 23621, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208629,7 +208422,7 @@ }, { "str": "language", - "token_id": 23649, + "token_id": 23622, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208638,7 +208431,7 @@ }, { "str": "=", - "token_id": 23650, + "token_id": 23623, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208647,7 +208440,7 @@ }, { "str": "en", - "token_id": 23651, + "token_id": 23624, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208656,7 +208449,7 @@ }, { "str": "|", - "token_id": 23652, + "token_id": 23625, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208665,7 +208458,7 @@ }, { "str": "archive", - "token_id": 23653, + "token_id": 23626, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208674,28 +208467,28 @@ }, { "str": "-", - "token_id": 23654, + "token_id": 23627, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552, - 1294910906 + 1168453704 ] }, { "str": "date", - "token_id": 23655, + "token_id": 23628, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1294910906 ] }, { "str": "=", - "token_id": 23656, + "token_id": 23629, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208704,32 +208497,28 @@ }, { "str": "24", - "token_id": 23657, + "token_id": 23630, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1294910906 + ] }, { "str": "august", - "token_id": 23658, + "token_id": 23631, "o_rev_id": 1140535097, "in": [ 1202097960 ], "out": [ - 1202071552 + 1202071552, + 1294910906 ] }, { "str": "2022", - "token_id": 23659, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 23660, + "token_id": 23632, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -208739,9 +208528,18 @@ 1294910906 ] }, + { + "str": "|", + "token_id": 23633, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1294910906 + ] + }, { "str": "archive", - "token_id": 23661, + "token_id": 23634, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208750,19 +208548,16 @@ }, { "str": "-", - "token_id": 23662, + "token_id": 23635, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552, - 1294910906 + 1168453704 ] }, { "str": "url", - "token_id": 23663, + "token_id": 23636, "o_rev_id": 1140535097, "in": [], "out": [ @@ -208771,376 +208566,375 @@ }, { "str": "=", - "token_id": 23664, + "token_id": 23637, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552, 1294910906 ] }, { "str": "https", - "token_id": 23665, + "token_id": 23638, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23666, + "token_id": 23639, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23667, + "token_id": 23640, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23668, + "token_id": 23641, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23669, + "token_id": 23642, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23670, + "token_id": 23643, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23671, + "token_id": 23644, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23672, + "token_id": 23645, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23673, + "token_id": 23646, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23674, + "token_id": 23647, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23675, + "token_id": 23648, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23676, + "token_id": 23649, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220824231549", - "token_id": 23677, + "token_id": 23650, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23678, + "token_id": 23651, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23679, + "token_id": 23652, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23680, + "token_id": 23653, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23681, + "token_id": 23654, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23682, + "token_id": 23655, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23683, + "token_id": 23656, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23684, + "token_id": 23657, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "techradar", - "token_id": 23685, + "token_id": 23658, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23686, + "token_id": 23659, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23687, + "token_id": 23660, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23688, + "token_id": 23661, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 23689, + "token_id": 23662, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23690, + "token_id": 23663, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23691, + "token_id": 23664, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23692, + "token_id": 23665, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23693, + "token_id": 23666, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23694, + "token_id": 23667, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "release", - "token_id": 23695, + "token_id": 23668, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23696, + "token_id": 23669, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23697, + "token_id": 23670, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23698, + "token_id": 23671, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "trailer", - "token_id": 23699, + "token_id": 23672, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23700, + "token_id": 23673, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 23701, + "token_id": 23674, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23702, + "token_id": 23675, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23703, + "token_id": 23676, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23704, + "token_id": 23677, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23705, + "token_id": 23678, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23706, + "token_id": 23679, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23707, + "token_id": 23680, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23708, + "token_id": 23681, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23709, + "token_id": 23682, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23710, + "token_id": 23683, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23711, + "token_id": 23684, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23712, + "token_id": 23685, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23713, + "token_id": 23686, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 23714, + "token_id": 23687, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23715, + "token_id": 23688, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 23716, + "token_id": 23689, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -209151,21 +208945,21 @@ }, { "str": "=", - "token_id": 23717, + "token_id": 23690, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23718, + "token_id": 23691, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23719, + "token_id": 23692, "o_rev_id": 1140535097, "in": [], "out": [ @@ -209174,30 +208968,28 @@ }, { "str": "10", - "token_id": 23720, + "token_id": 23693, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23721, + "token_id": 23694, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "12", - "token_id": 23722, + "token_id": 23695, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23723, + "token_id": 23696, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -209208,14 +209000,18 @@ }, { "str": "website", - "token_id": 23724, + "token_id": 23697, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23725, + "token_id": 23698, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -209226,14 +209022,14 @@ }, { "str": "vgc", - "token_id": 23726, + "token_id": 23699, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23727, + "token_id": 23700, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -209244,14 +209040,18 @@ }, { "str": "language", - "token_id": 23728, + "token_id": 23701, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23729, + "token_id": 23702, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -209262,14 +209062,18 @@ }, { "str": "en", - "token_id": 23730, + "token_id": 23703, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 23731, + "token_id": 23704, "o_rev_id": 1140535097, "in": [], "out": [ @@ -209278,14 +209082,18 @@ }, { "str": "gb", - "token_id": 23732, + "token_id": 23705, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 23733, + "token_id": 23706, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -209296,14 +209104,18 @@ }, { "str": "archive", - "token_id": 23734, + "token_id": 23707, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 23735, + "token_id": 23708, "o_rev_id": 1140535097, "in": [], "out": [ @@ -209312,7 +209124,7 @@ }, { "str": "date", - "token_id": 23736, + "token_id": 23709, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -209323,32 +209135,28 @@ }, { "str": "=", - "token_id": 23737, + "token_id": 23710, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "12", - "token_id": 23738, + "token_id": 23711, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 23739, + "token_id": 23712, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23740, + "token_id": 23713, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -209359,441 +209167,441 @@ }, { "str": "|", - "token_id": 23741, + "token_id": 23714, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23742, + "token_id": 23715, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23743, + "token_id": 23716, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23744, + "token_id": 23717, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23745, + "token_id": 23718, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23746, + "token_id": 23719, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23747, + "token_id": 23720, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23748, + "token_id": 23721, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23749, + "token_id": 23722, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23750, + "token_id": 23723, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23751, + "token_id": 23724, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23752, + "token_id": 23725, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23753, + "token_id": 23726, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23754, + "token_id": 23727, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23755, + "token_id": 23728, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23756, + "token_id": 23729, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23757, + "token_id": 23730, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012143156", - "token_id": 23758, + "token_id": 23731, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23759, + "token_id": 23732, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23760, + "token_id": 23733, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23761, + "token_id": 23734, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23762, + "token_id": 23735, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23763, + "token_id": 23736, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23764, + "token_id": 23737, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23765, + "token_id": 23738, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "videogameschronicle", - "token_id": 23766, + "token_id": 23739, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23767, + "token_id": 23740, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23768, + "token_id": 23741, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23769, + "token_id": 23742, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 23770, + "token_id": 23743, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23771, + "token_id": 23744, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23772, + "token_id": 23745, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23773, + "token_id": 23746, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23774, + "token_id": 23747, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23775, + "token_id": 23748, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gets", - "token_id": 23776, + "token_id": 23749, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23777, + "token_id": 23750, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 23778, + "token_id": 23751, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23779, + "token_id": 23752, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "release", - "token_id": 23780, + "token_id": 23753, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23781, + "token_id": 23754, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23782, + "token_id": 23755, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23783, + "token_id": 23756, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "and", - "token_id": 23784, + "token_id": 23757, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23785, + "token_id": 23758, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "new", - "token_id": 23786, + "token_id": 23759, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23787, + "token_id": 23760, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "trailer", - "token_id": 23788, + "token_id": 23761, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23789, + "token_id": 23762, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23790, + "token_id": 23763, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23791, + "token_id": 23764, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23792, + "token_id": 23765, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23793, + "token_id": 23766, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23794, + "token_id": 23767, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23795, + "token_id": 23768, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23796, + "token_id": 23769, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23797, + "token_id": 23770, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23798, + "token_id": 23771, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23799, + "token_id": 23772, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23800, + "token_id": 23773, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23801, + "token_id": 23774, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 23802, + "token_id": 23775, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23803, + "token_id": 23776, "o_rev_id": 1140535097, "in": [], "out": [ @@ -209802,35 +209610,35 @@ }, { "str": "date", - "token_id": 23804, + "token_id": 23777, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23805, + "token_id": 23778, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23806, + "token_id": 23779, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23807, + "token_id": 23780, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "08", - "token_id": 23808, + "token_id": 23781, "o_rev_id": 1140535097, "in": [], "out": [ @@ -209839,161 +209647,165 @@ }, { "str": "-", - "token_id": 23809, + "token_id": 23782, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "17", - "token_id": 23810, + "token_id": 23783, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23811, + "token_id": 23784, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 23812, + "token_id": 23785, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23813, + "token_id": 23786, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "pcmag", - "token_id": 23814, + "token_id": 23787, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23815, + "token_id": 23788, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 23816, + "token_id": 23789, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23817, + "token_id": 23790, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 23818, + "token_id": 23791, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23819, + "token_id": 23792, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "last", - "token_id": 23820, + "token_id": 23793, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23821, + "token_id": 23794, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "humphries", - "token_id": 23822, + "token_id": 23795, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23823, + "token_id": 23796, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "first", - "token_id": 23824, + "token_id": 23797, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23825, + "token_id": 23798, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "matthew", - "token_id": 23826, + "token_id": 23799, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23827, + "token_id": 23800, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23828, + "token_id": 23801, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23829, + "token_id": 23802, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23830, + "token_id": 23803, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23831, + "token_id": 23804, "o_rev_id": 1140535097, "in": [], "out": [ @@ -210002,7 +209814,7 @@ }, { "str": "07", - "token_id": 23832, + "token_id": 23805, "o_rev_id": 1140535097, "in": [], "out": [ @@ -210011,7 +209823,7 @@ }, { "str": "-", - "token_id": 23833, + "token_id": 23806, "o_rev_id": 1140535097, "in": [], "out": [ @@ -210020,7 +209832,7 @@ }, { "str": "06", - "token_id": 23834, + "token_id": 23807, "o_rev_id": 1140535097, "in": [], "out": [ @@ -210029,532 +209841,541 @@ }, { "str": "|", - "token_id": 23835, + "token_id": 23808, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23836, + "token_id": 23809, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23837, + "token_id": 23810, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 23838, + "token_id": 23811, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23839, + "token_id": 23812, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "9", - "token_id": 23840, + "token_id": 23813, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "august", - "token_id": 23841, + "token_id": 23814, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552, + 1294910906 + ] }, { "str": "2022", - "token_id": 23842, + "token_id": 23815, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23843, + "token_id": 23816, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23844, + "token_id": 23817, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23845, + "token_id": 23818, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "url", - "token_id": 23846, + "token_id": 23819, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23847, + "token_id": 23820, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23848, + "token_id": 23821, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23849, + "token_id": 23822, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23850, + "token_id": 23823, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23851, + "token_id": 23824, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23852, + "token_id": 23825, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23853, + "token_id": 23826, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23854, + "token_id": 23827, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23855, + "token_id": 23828, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23856, + "token_id": 23829, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23857, + "token_id": 23830, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23858, + "token_id": 23831, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23859, + "token_id": 23832, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220809041345", - "token_id": 23860, + "token_id": 23833, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23861, + "token_id": 23834, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23862, + "token_id": 23835, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23863, + "token_id": 23836, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23864, + "token_id": 23837, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23865, + "token_id": 23838, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 23866, + "token_id": 23839, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23867, + "token_id": 23840, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "pcmag", - "token_id": 23868, + "token_id": 23841, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23869, + "token_id": 23842, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23870, + "token_id": 23843, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23871, + "token_id": 23844, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 23872, + "token_id": 23845, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23873, + "token_id": 23846, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "limited", - "token_id": 23874, + "token_id": 23847, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23875, + "token_id": 23848, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "edition", - "token_id": 23876, + "token_id": 23849, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23877, + "token_id": 23850, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23878, + "token_id": 23851, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23879, + "token_id": 23852, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23880, + "token_id": 23853, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23881, + "token_id": 23854, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "themed", - "token_id": 23882, + "token_id": 23855, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23883, + "token_id": 23856, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "oled", - "token_id": 23884, + "token_id": 23857, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23885, + "token_id": 23858, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 23886, + "token_id": 23859, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23887, + "token_id": 23860, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "available", - "token_id": 23888, + "token_id": 23861, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23889, + "token_id": 23862, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "aug", - "token_id": 23890, + "token_id": 23863, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23891, + "token_id": 23864, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "26", - "token_id": 23892, + "token_id": 23865, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23893, + "token_id": 23866, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 23894, + "token_id": 23867, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23895, + "token_id": 23868, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 23896, + "token_id": 23869, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23897, + "token_id": 23870, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23898, + "token_id": 23871, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 23899, + "token_id": 23872, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 23900, + "token_id": 23873, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23901, + "token_id": 23874, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 23902, + "token_id": 23875, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 23903, + "token_id": 23876, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23904, + "token_id": 23877, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 23905, + "token_id": 23878, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23906, + "token_id": 23879, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23907, + "token_id": 23880, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23908, + "token_id": 23881, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23909, + "token_id": 23882, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23910, + "token_id": 23883, "o_rev_id": 1140535097, "in": [], "out": [ @@ -210563,7 +210384,7 @@ }, { "str": "08", - "token_id": 23911, + "token_id": 23884, "o_rev_id": 1140535097, "in": [], "out": [ @@ -210572,7 +210393,7 @@ }, { "str": "-", - "token_id": 23912, + "token_id": 23885, "o_rev_id": 1140535097, "in": [], "out": [ @@ -210581,84 +210402,84 @@ }, { "str": "26", - "token_id": 23913, + "token_id": 23886, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23914, + "token_id": 23887, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 23915, + "token_id": 23888, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23916, + "token_id": 23889, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gameranx", - "token_id": 23917, + "token_id": 23890, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23918, + "token_id": 23891, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 23919, + "token_id": 23892, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23920, + "token_id": 23893, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 23921, + "token_id": 23894, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23922, + "token_id": 23895, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "us", - "token_id": 23923, + "token_id": 23896, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23924, + "token_id": 23897, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -210669,14 +210490,18 @@ }, { "str": "last", - "token_id": 23925, + "token_id": 23898, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23926, + "token_id": 23899, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -210687,14 +210512,14 @@ }, { "str": "black", - "token_id": 23927, + "token_id": 23900, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23928, + "token_id": 23901, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -210705,14 +210530,18 @@ }, { "str": "first", - "token_id": 23929, + "token_id": 23902, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23930, + "token_id": 23903, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -210723,84 +210552,88 @@ }, { "str": "todd", - "token_id": 23931, + "token_id": 23904, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23932, + "token_id": 23905, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23933, + "token_id": 23906, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23934, + "token_id": 23907, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 23935, + "token_id": 23908, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 23936, + "token_id": 23909, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "26", - "token_id": 23937, + "token_id": 23910, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "august", - "token_id": 23938, + "token_id": 23911, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 23939, + "token_id": 23912, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23940, + "token_id": 23913, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23941, + "token_id": 23914, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23942, + "token_id": 23915, "o_rev_id": 1140535097, "in": [], "out": [ @@ -210809,329 +210642,329 @@ }, { "str": "url", - "token_id": 23943, + "token_id": 23916, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 23944, + "token_id": 23917, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23945, + "token_id": 23918, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23946, + "token_id": 23919, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23947, + "token_id": 23920, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23948, + "token_id": 23921, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23949, + "token_id": 23922, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23950, + "token_id": 23923, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 23951, + "token_id": 23924, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23952, + "token_id": 23925, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 23953, + "token_id": 23926, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23954, + "token_id": 23927, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 23955, + "token_id": 23928, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23956, + "token_id": 23929, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220826191930", - "token_id": 23957, + "token_id": 23930, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23958, + "token_id": 23931, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 23959, + "token_id": 23932, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 23960, + "token_id": 23933, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23961, + "token_id": 23934, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23962, + "token_id": 23935, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gameranx", - "token_id": 23963, + "token_id": 23936, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 23964, + "token_id": 23937, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 23965, + "token_id": 23938, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23966, + "token_id": 23939, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "updates", - "token_id": 23967, + "token_id": 23940, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23968, + "token_id": 23941, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "id", - "token_id": 23969, + "token_id": 23942, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23970, + "token_id": 23943, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "351238", - "token_id": 23971, + "token_id": 23944, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23972, + "token_id": 23945, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "article", - "token_id": 23973, + "token_id": 23946, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23974, + "token_id": 23947, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 23975, + "token_id": 23948, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23976, + "token_id": 23949, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "treehouse", - "token_id": 23977, + "token_id": 23950, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23978, + "token_id": 23951, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 23979, + "token_id": 23952, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23980, + "token_id": 23953, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "breaks", - "token_id": 23981, + "token_id": 23954, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23982, + "token_id": 23955, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "down", - "token_id": 23983, + "token_id": 23956, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23984, + "token_id": 23957, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 23985, + "token_id": 23958, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 23986, + "token_id": 23959, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 23987, + "token_id": 23960, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 23988, + "token_id": 23961, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 23989, + "token_id": 23962, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211144,7 +210977,7 @@ }, { "str": "url", - "token_id": 23990, + "token_id": 23963, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211157,7 +210990,7 @@ }, { "str": "-", - "token_id": 23991, + "token_id": 23964, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211170,7 +211003,7 @@ }, { "str": "status", - "token_id": 23992, + "token_id": 23965, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211183,7 +211016,7 @@ }, { "str": "=", - "token_id": 23993, + "token_id": 23966, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211196,7 +211029,7 @@ }, { "str": "live", - "token_id": 23994, + "token_id": 23967, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211209,7 +211042,7 @@ }, { "str": "}}", - "token_id": 23995, + "token_id": 23968, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211222,7 +211055,7 @@ }, { "str": "<", - "token_id": 23996, + "token_id": 23969, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211235,7 +211068,7 @@ }, { "str": "/", - "token_id": 23997, + "token_id": 23970, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211248,7 +211081,7 @@ }, { "str": "ref", - "token_id": 23998, + "token_id": 23971, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211261,7 +211094,7 @@ }, { "str": ">", - "token_id": 23999, + "token_id": 23972, "o_rev_id": 1140535097, "in": [ 1179969817, @@ -211274,56 +211107,56 @@ }, { "str": "|", - "token_id": 24000, + "token_id": 23973, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 24001, + "token_id": 23974, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24002, + "token_id": 23975, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24003, + "token_id": 23976, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24004, + "token_id": 23977, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24005, + "token_id": 23978, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24006, + "token_id": 23979, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "10", - "token_id": 24007, + "token_id": 23980, "o_rev_id": 1140535097, "in": [], "out": [ @@ -211332,42 +211165,42 @@ }, { "str": "-", - "token_id": 24008, + "token_id": 23981, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 24009, + "token_id": 23982, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24010, + "token_id": 23983, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 24011, + "token_id": 23984, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24012, + "token_id": 23985, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 24013, + "token_id": 23986, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -211378,42 +211211,42 @@ }, { "str": "life", - "token_id": 24014, + "token_id": 23987, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24015, + "token_id": 23988, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 24016, + "token_id": 23989, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24017, + "token_id": 23990, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 24018, + "token_id": 23991, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24019, + "token_id": 23992, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -211424,32 +211257,28 @@ }, { "str": "gb", - "token_id": 24020, + "token_id": 23993, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24021, + "token_id": 23994, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "archive", - "token_id": 24022, + "token_id": 23995, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24023, + "token_id": 23996, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -211460,62 +211289,60 @@ }, { "str": "date", - "token_id": 24024, + "token_id": 23997, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24025, + "token_id": 23998, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "22", - "token_id": 24026, + "token_id": 23999, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "august", - "token_id": 24027, + "token_id": 24000, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "2022", - "token_id": 24028, + "token_id": 24001, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 24029, + "token_id": 24002, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24030, + "token_id": 24003, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24031, + "token_id": 24004, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -211526,560 +211353,557 @@ }, { "str": "url", - "token_id": 24032, + "token_id": 24005, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 24033, + "token_id": 24006, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24034, + "token_id": 24007, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24035, + "token_id": 24008, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24036, + "token_id": 24009, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24037, + "token_id": 24010, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24038, + "token_id": 24011, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24039, + "token_id": 24012, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24040, + "token_id": 24013, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24041, + "token_id": 24014, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24042, + "token_id": 24015, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24043, + "token_id": 24016, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24044, + "token_id": 24017, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24045, + "token_id": 24018, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220822234837", - "token_id": 24046, + "token_id": 24019, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24047, + "token_id": 24020, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24048, + "token_id": 24021, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24049, + "token_id": 24022, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24050, + "token_id": 24023, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24051, + "token_id": 24024, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24052, + "token_id": 24025, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24053, + "token_id": 24026, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 24054, + "token_id": 24027, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24055, + "token_id": 24028, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24056, + "token_id": 24029, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24057, + "token_id": 24030, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 24058, + "token_id": 24031, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24059, + "token_id": 24032, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24060, + "token_id": 24033, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24061, + "token_id": 24034, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "08", - "token_id": 24062, + "token_id": 24035, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24063, + "token_id": 24036, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24064, + "token_id": 24037, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24065, + "token_id": 24038, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3s", - "token_id": 24066, + "token_id": 24039, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24067, + "token_id": 24040, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "first", - "token_id": 24068, + "token_id": 24041, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24069, + "token_id": 24042, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 24070, + "token_id": 24043, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24071, + "token_id": 24044, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "will", - "token_id": 24072, + "token_id": 24045, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24073, + "token_id": 24046, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "be", - "token_id": 24074, + "token_id": 24047, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24075, + "token_id": 24048, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "playable", - "token_id": 24076, + "token_id": 24049, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24077, + "token_id": 24050, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "later", - "token_id": 24078, + "token_id": 24051, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24079, + "token_id": 24052, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "this", - "token_id": 24080, + "token_id": 24053, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24081, + "token_id": 24054, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "month", - "token_id": 24082, + "token_id": 24055, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24083, + "token_id": 24056, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 24084, + "token_id": 24057, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24085, + "token_id": 24058, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "free", - "token_id": 24086, + "token_id": 24059, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24087, + "token_id": 24060, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "demo", - "token_id": 24088, + "token_id": 24061, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24089, + "token_id": 24062, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24090, + "token_id": 24063, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24091, + "token_id": 24064, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 24092, + "token_id": 24065, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24093, + "token_id": 24066, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24094, + "token_id": 24067, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 24095, + "token_id": 24068, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 24096, + "token_id": 24069, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24097, + "token_id": 24070, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 24098, + "token_id": 24071, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 24099, + "token_id": 24072, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24100, + "token_id": 24073, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 24101, + "token_id": 24074, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24102, + "token_id": 24075, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 24103, + "token_id": 24076, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "everything", - "token_id": 24104, + "token_id": 24077, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24105, + "token_id": 24078, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24106, + "token_id": 24079, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24107, + "token_id": 24080, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "28", - "token_id": 24108, + "token_id": 24081, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "august", - "token_id": 24109, + "token_id": 24082, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24110, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 24111, + "token_id": 24083, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212089,33 +211913,29 @@ ] }, { - "str": "access", - "token_id": 24112, + "str": "|", + "token_id": 24084, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "-", - "token_id": 24113, + "str": "access", + "token_id": 24085, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { - "str": "date", - "token_id": 24114, + "str": "-", + "token_id": 24086, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "=", - "token_id": 24115, + "str": "date", + "token_id": 24087, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212124,37 +211944,44 @@ 1202071552 ] }, + { + "str": "=", + "token_id": 24088, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "28", - "token_id": 24116, + "token_id": 24089, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "august", - "token_id": 24117, + "token_id": 24090, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24118, + "token_id": 24091, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24119, + "token_id": 24092, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24120, + "token_id": 24093, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212165,42 +211992,42 @@ }, { "str": "-", - "token_id": 24121, + "token_id": 24094, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24122, + "token_id": 24095, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24123, + "token_id": 24096, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "28", - "token_id": 24124, + "token_id": 24097, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "august", - "token_id": 24125, + "token_id": 24098, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24126, + "token_id": 24099, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212211,39 +212038,28 @@ }, { "str": "|", - "token_id": 24127, + "token_id": 24100, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "archive", - "token_id": 24128, + "token_id": 24101, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24129, + "token_id": 24102, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24130, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 24131, + "token_id": 24103, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212252,324 +212068,331 @@ 1202071552 ] }, + { + "str": "=", + "token_id": 24104, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "https", - "token_id": 24132, + "token_id": 24105, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24133, + "token_id": 24106, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24134, + "token_id": 24107, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24135, + "token_id": 24108, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24136, + "token_id": 24109, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24137, + "token_id": 24110, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24138, + "token_id": 24111, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24139, + "token_id": 24112, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24140, + "token_id": 24113, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24141, + "token_id": 24114, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24142, + "token_id": 24115, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24143, + "token_id": 24116, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220828140820", - "token_id": 24144, + "token_id": 24117, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24145, + "token_id": 24118, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24146, + "token_id": 24119, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24147, + "token_id": 24120, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24148, + "token_id": 24121, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24149, + "token_id": 24122, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendoeverything", - "token_id": 24150, + "token_id": 24123, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24151, + "token_id": 24124, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24152, + "token_id": 24125, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24153, + "token_id": 24126, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24154, + "token_id": 24127, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24155, + "token_id": 24128, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24156, + "token_id": 24129, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24157, + "token_id": 24130, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 24158, + "token_id": 24131, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24159, + "token_id": 24132, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "world", - "token_id": 24160, + "token_id": 24133, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24161, + "token_id": 24134, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "premiere", - "token_id": 24162, + "token_id": 24135, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24163, + "token_id": 24136, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "results", - "token_id": 24164, + "token_id": 24137, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24165, + "token_id": 24138, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24166, + "token_id": 24139, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24167, + "token_id": 24140, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24168, + "token_id": 24141, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 24169, + "token_id": 24142, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24170, + "token_id": 24143, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24171, + "token_id": 24144, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 24172, + "token_id": 24145, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 24173, + "token_id": 24146, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24174, + "token_id": 24147, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 24175, + "token_id": 24148, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 24176, + "token_id": 24149, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24177, + "token_id": 24150, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212580,7 +212403,7 @@ }, { "str": "website", - "token_id": 24178, + "token_id": 24151, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212591,7 +212414,7 @@ }, { "str": "=", - "token_id": 24179, + "token_id": 24152, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212602,21 +212425,21 @@ }, { "str": "akiba", - "token_id": 24180, + "token_id": 24153, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "games", - "token_id": 24181, + "token_id": 24154, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24182, + "token_id": 24155, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212627,7 +212450,7 @@ }, { "str": "access", - "token_id": 24183, + "token_id": 24156, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212638,25 +212461,21 @@ }, { "str": "-", - "token_id": 24184, + "token_id": 24157, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "date", - "token_id": 24185, + "token_id": 24158, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24186, + "token_id": 24159, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212667,49 +212486,49 @@ }, { "str": "28", - "token_id": 24187, + "token_id": 24160, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "august", - "token_id": 24188, + "token_id": 24161, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24189, + "token_id": 24162, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24190, + "token_id": 24163, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 24191, + "token_id": 24164, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24192, + "token_id": 24165, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "it", - "token_id": 24193, + "token_id": 24166, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212720,7 +212539,7 @@ }, { "str": "|", - "token_id": 24194, + "token_id": 24167, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212731,14 +212550,14 @@ }, { "str": "archive", - "token_id": 24195, + "token_id": 24168, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24196, + "token_id": 24169, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212749,7 +212568,7 @@ }, { "str": "date", - "token_id": 24197, + "token_id": 24170, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212760,7 +212579,7 @@ }, { "str": "=", - "token_id": 24198, + "token_id": 24171, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212771,21 +212590,21 @@ }, { "str": "28", - "token_id": 24199, + "token_id": 24172, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "august", - "token_id": 24200, + "token_id": 24173, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24201, + "token_id": 24174, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212796,14 +212615,18 @@ }, { "str": "|", - "token_id": 24202, + "token_id": 24175, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "archive", - "token_id": 24203, + "token_id": 24176, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -212814,455 +212637,463 @@ }, { "str": "-", - "token_id": 24204, + "token_id": 24177, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "url", - "token_id": 24205, + "token_id": 24178, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24206, + "token_id": 24179, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "https", - "token_id": 24207, + "token_id": 24180, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24208, + "token_id": 24181, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24209, + "token_id": 24182, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24210, + "token_id": 24183, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24211, + "token_id": 24184, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24212, + "token_id": 24185, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24213, + "token_id": 24186, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24214, + "token_id": 24187, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24215, + "token_id": 24188, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24216, + "token_id": 24189, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24217, + "token_id": 24190, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24218, + "token_id": 24191, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220828141620", - "token_id": 24219, + "token_id": 24192, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24220, + "token_id": 24193, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24221, + "token_id": 24194, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24222, + "token_id": 24195, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24223, + "token_id": 24196, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24224, + "token_id": 24197, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24225, + "token_id": 24198, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24226, + "token_id": 24199, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "akibagamers", - "token_id": 24227, + "token_id": 24200, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24228, + "token_id": 24201, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "it", - "token_id": 24229, + "token_id": 24202, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24230, + "token_id": 24203, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "28", - "token_id": 24231, + "token_id": 24204, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24232, + "token_id": 24205, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "08", - "token_id": 24233, + "token_id": 24206, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24234, + "token_id": 24207, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24235, + "token_id": 24208, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24236, + "token_id": 24209, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24237, + "token_id": 24210, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24238, + "token_id": 24211, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24239, + "token_id": 24212, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24240, + "token_id": 24213, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "prime", - "token_id": 24241, + "token_id": 24214, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24242, + "token_id": 24215, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "impressioni", - "token_id": 24243, + "token_id": 24216, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24244, + "token_id": 24217, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 24245, + "token_id": 24218, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24246, + "token_id": 24219, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "world", - "token_id": 24247, + "token_id": 24220, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24248, + "token_id": 24221, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "premiere", - "token_id": 24249, + "token_id": 24222, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24250, + "token_id": 24223, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24251, + "token_id": 24224, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24252, + "token_id": 24225, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24253, + "token_id": 24226, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 24254, + "token_id": 24227, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24255, + "token_id": 24228, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24256, + "token_id": 24229, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 24257, + "token_id": 24230, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 24258, + "token_id": 24231, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24259, + "token_id": 24232, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 24260, + "token_id": 24233, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 24261, + "token_id": 24234, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24262, + "token_id": 24235, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 24263, + "token_id": 24236, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24264, + "token_id": 24237, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24265, + "token_id": 24238, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24266, + "token_id": 24239, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24267, + "token_id": 24240, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24268, + "token_id": 24241, "o_rev_id": 1140535097, "in": [], "out": [ @@ -213271,7 +213102,7 @@ }, { "str": "10", - "token_id": 24269, + "token_id": 24242, "o_rev_id": 1140535097, "in": [], "out": [ @@ -213280,7 +213111,7 @@ }, { "str": "-", - "token_id": 24270, + "token_id": 24243, "o_rev_id": 1140535097, "in": [], "out": [ @@ -213289,513 +213120,513 @@ }, { "str": "12", - "token_id": 24271, + "token_id": 24244, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24272, + "token_id": 24245, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 24273, + "token_id": 24246, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24274, + "token_id": 24247, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "cnet", - "token_id": 24275, + "token_id": 24248, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24276, + "token_id": 24249, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 24277, + "token_id": 24250, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24278, + "token_id": 24251, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 24279, + "token_id": 24252, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24280, + "token_id": 24253, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24281, + "token_id": 24254, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24282, + "token_id": 24255, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "date", - "token_id": 24283, + "token_id": 24256, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24284, + "token_id": 24257, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "12", - "token_id": 24285, + "token_id": 24258, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 24286, + "token_id": 24259, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "2022", - "token_id": 24287, + "token_id": 24260, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24288, + "token_id": 24261, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24289, + "token_id": 24262, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24290, + "token_id": 24263, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24291, + "token_id": 24264, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24292, + "token_id": 24265, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24293, + "token_id": 24266, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24294, + "token_id": 24267, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24295, + "token_id": 24268, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24296, + "token_id": 24269, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24297, + "token_id": 24270, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24298, + "token_id": 24271, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24299, + "token_id": 24272, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24300, + "token_id": 24273, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24301, + "token_id": 24274, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24302, + "token_id": 24275, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24303, + "token_id": 24276, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24304, + "token_id": 24277, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012143153", - "token_id": 24305, + "token_id": 24278, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24306, + "token_id": 24279, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24307, + "token_id": 24280, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24308, + "token_id": 24281, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24309, + "token_id": 24282, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24310, + "token_id": 24283, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24311, + "token_id": 24284, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24312, + "token_id": 24285, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "cnet", - "token_id": 24313, + "token_id": 24286, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24314, + "token_id": 24287, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24315, + "token_id": 24288, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24316, + "token_id": 24289, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "tech", - "token_id": 24317, + "token_id": 24290, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24318, + "token_id": 24291, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gaming", - "token_id": 24319, + "token_id": 24292, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24320, + "token_id": 24293, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24321, + "token_id": 24294, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24322, + "token_id": 24295, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24323, + "token_id": 24296, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24324, + "token_id": 24297, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "amiibo", - "token_id": 24325, + "token_id": 24298, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24326, + "token_id": 24299, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "figures", - "token_id": 24327, + "token_id": 24300, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24328, + "token_id": 24301, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "launch", - "token_id": 24329, + "token_id": 24302, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24330, + "token_id": 24303, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nov", - "token_id": 24331, + "token_id": 24304, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24332, + "token_id": 24305, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "11", - "token_id": 24333, + "token_id": 24306, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24334, + "token_id": 24307, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "unlock", - "token_id": 24335, + "token_id": 24308, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24336, + "token_id": 24309, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "new", - "token_id": 24337, + "token_id": 24310, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24338, + "token_id": 24311, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gear", - "token_id": 24339, + "token_id": 24312, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24340, + "token_id": 24313, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "sets", - "token_id": 24341, + "token_id": 24314, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24342, + "token_id": 24315, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24343, + "token_id": 24316, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213807,7 +213638,7 @@ }, { "str": "url", - "token_id": 24344, + "token_id": 24317, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213818,7 +213649,7 @@ }, { "str": "-", - "token_id": 24345, + "token_id": 24318, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213829,7 +213660,7 @@ }, { "str": "status", - "token_id": 24346, + "token_id": 24319, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213840,7 +213671,7 @@ }, { "str": "=", - "token_id": 24347, + "token_id": 24320, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213852,7 +213683,7 @@ }, { "str": "live", - "token_id": 24348, + "token_id": 24321, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213863,7 +213694,7 @@ }, { "str": "}}", - "token_id": 24349, + "token_id": 24322, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213875,7 +213706,7 @@ }, { "str": "<", - "token_id": 24350, + "token_id": 24323, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213887,7 +213718,7 @@ }, { "str": "/", - "token_id": 24351, + "token_id": 24324, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213899,7 +213730,7 @@ }, { "str": "ref", - "token_id": 24352, + "token_id": 24325, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213911,7 +213742,7 @@ }, { "str": ">", - "token_id": 24353, + "token_id": 24326, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -213923,49 +213754,49 @@ }, { "str": "|", - "token_id": 24354, + "token_id": 24327, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 24355, + "token_id": 24328, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24356, + "token_id": 24329, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24357, + "token_id": 24330, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24358, + "token_id": 24331, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24359, + "token_id": 24332, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24360, + "token_id": 24333, "o_rev_id": 1140535097, "in": [], "out": [ @@ -213974,7 +213805,7 @@ }, { "str": "10", - "token_id": 24361, + "token_id": 24334, "o_rev_id": 1140535097, "in": [], "out": [ @@ -213983,7 +213814,7 @@ }, { "str": "-", - "token_id": 24362, + "token_id": 24335, "o_rev_id": 1140535097, "in": [], "out": [ @@ -213992,77 +213823,81 @@ }, { "str": "12", - "token_id": 24363, + "token_id": 24336, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24364, + "token_id": 24337, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 24365, + "token_id": 24338, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24366, + "token_id": 24339, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 24367, + "token_id": 24340, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "life", - "token_id": 24368, + "token_id": 24341, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24369, + "token_id": 24342, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 24370, + "token_id": 24343, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24371, + "token_id": 24344, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 24372, + "token_id": 24345, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24373, + "token_id": 24346, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214071,14 +213906,14 @@ }, { "str": "gb", - "token_id": 24374, + "token_id": 24347, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24375, + "token_id": 24348, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214087,7 +213922,7 @@ }, { "str": "archive", - "token_id": 24376, + "token_id": 24349, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214096,7 +213931,7 @@ }, { "str": "-", - "token_id": 24377, + "token_id": 24350, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214105,7 +213940,7 @@ }, { "str": "date", - "token_id": 24378, + "token_id": 24351, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214114,7 +213949,7 @@ }, { "str": "=", - "token_id": 24379, + "token_id": 24352, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214123,7 +213958,7 @@ }, { "str": "12", - "token_id": 24380, + "token_id": 24353, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214132,7 +213967,7 @@ }, { "str": "october", - "token_id": 24381, + "token_id": 24354, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214141,7 +213976,7 @@ }, { "str": "2022", - "token_id": 24382, + "token_id": 24355, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214150,7 +213985,7 @@ }, { "str": "|", - "token_id": 24383, + "token_id": 24356, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214159,7 +213994,7 @@ }, { "str": "archive", - "token_id": 24384, + "token_id": 24357, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214168,7 +214003,7 @@ }, { "str": "-", - "token_id": 24385, + "token_id": 24358, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214177,7 +214012,7 @@ }, { "str": "url", - "token_id": 24386, + "token_id": 24359, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214186,7 +214021,7 @@ }, { "str": "=", - "token_id": 24387, + "token_id": 24360, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214195,420 +214030,420 @@ }, { "str": "https", - "token_id": 24388, + "token_id": 24361, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24389, + "token_id": 24362, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24390, + "token_id": 24363, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24391, + "token_id": 24364, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24392, + "token_id": 24365, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24393, + "token_id": 24366, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24394, + "token_id": 24367, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24395, + "token_id": 24368, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24396, + "token_id": 24369, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24397, + "token_id": 24370, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24398, + "token_id": 24371, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24399, + "token_id": 24372, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221012145542", - "token_id": 24400, + "token_id": 24373, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24401, + "token_id": 24374, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24402, + "token_id": 24375, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24403, + "token_id": 24376, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24404, + "token_id": 24377, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24405, + "token_id": 24378, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24406, + "token_id": 24379, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24407, + "token_id": 24380, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 24408, + "token_id": 24381, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24409, + "token_id": 24382, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24410, + "token_id": 24383, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24411, + "token_id": 24384, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 24412, + "token_id": 24385, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24413, + "token_id": 24386, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24414, + "token_id": 24387, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24415, + "token_id": 24388, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "08", - "token_id": 24416, + "token_id": 24389, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24417, + "token_id": 24390, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 24418, + "token_id": 24391, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24419, + "token_id": 24392, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "announces", - "token_id": 24420, + "token_id": 24393, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24421, + "token_id": 24394, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24422, + "token_id": 24395, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24423, + "token_id": 24396, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24424, + "token_id": 24397, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24425, + "token_id": 24398, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "large", - "token_id": 24426, + "token_id": 24399, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24427, + "token_id": 24400, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "scale", - "token_id": 24428, + "token_id": 24401, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24429, + "token_id": 24402, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "paid", - "token_id": 24430, + "token_id": 24403, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24431, + "token_id": 24404, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dlc", - "token_id": 24432, + "token_id": 24405, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24433, + "token_id": 24406, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "details", - "token_id": 24434, + "token_id": 24407, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24435, + "token_id": 24408, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "two", - "token_id": 24436, + "token_id": 24409, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24437, + "token_id": 24410, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "years", - "token_id": 24438, + "token_id": 24411, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24439, + "token_id": 24412, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "of", - "token_id": 24440, + "token_id": 24413, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24441, + "token_id": 24414, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "post", - "token_id": 24442, + "token_id": 24415, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24443, + "token_id": 24416, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "launch", - "token_id": 24444, + "token_id": 24417, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24445, + "token_id": 24418, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "support", - "token_id": 24446, + "token_id": 24419, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24447, + "token_id": 24420, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214620,7 +214455,7 @@ }, { "str": "url", - "token_id": 24448, + "token_id": 24421, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214632,7 +214467,7 @@ }, { "str": "-", - "token_id": 24449, + "token_id": 24422, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214644,7 +214479,7 @@ }, { "str": "status", - "token_id": 24450, + "token_id": 24423, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214656,7 +214491,7 @@ }, { "str": "=", - "token_id": 24451, + "token_id": 24424, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214668,7 +214503,7 @@ }, { "str": "live", - "token_id": 24452, + "token_id": 24425, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214680,7 +214515,7 @@ }, { "str": "}}", - "token_id": 24453, + "token_id": 24426, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214692,7 +214527,7 @@ }, { "str": "<", - "token_id": 24454, + "token_id": 24427, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214704,7 +214539,7 @@ }, { "str": "/", - "token_id": 24455, + "token_id": 24428, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214716,7 +214551,7 @@ }, { "str": "ref", - "token_id": 24456, + "token_id": 24429, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214728,7 +214563,7 @@ }, { "str": ">", - "token_id": 24457, + "token_id": 24430, "o_rev_id": 1140535097, "in": [ 1333947148 @@ -214740,49 +214575,51 @@ }, { "str": "|", - "token_id": 24458, + "token_id": 24431, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 24459, + "token_id": 24432, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24460, + "token_id": 24433, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 24461, + "token_id": 24434, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24462, + "token_id": 24435, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24463, + "token_id": 24436, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24464, + "token_id": 24437, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214791,7 +214628,7 @@ }, { "str": "10", - "token_id": 24465, + "token_id": 24438, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214800,84 +214637,84 @@ }, { "str": "-", - "token_id": 24466, + "token_id": 24439, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 24467, + "token_id": 24440, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24468, + "token_id": 24441, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 24469, + "token_id": 24442, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24470, + "token_id": 24443, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 24471, + "token_id": 24444, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "life", - "token_id": 24472, + "token_id": 24445, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24473, + "token_id": 24446, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 24474, + "token_id": 24447, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24475, + "token_id": 24448, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 24476, + "token_id": 24449, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24477, + "token_id": 24450, "o_rev_id": 1140535097, "in": [], "out": [ @@ -214886,466 +214723,466 @@ }, { "str": "gb", - "token_id": 24478, + "token_id": 24451, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24479, + "token_id": 24452, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24480, + "token_id": 24453, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24481, + "token_id": 24454, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "date", - "token_id": 24482, + "token_id": 24455, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24483, + "token_id": 24456, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 24484, + "token_id": 24457, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 24485, + "token_id": 24458, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24486, + "token_id": 24459, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24487, + "token_id": 24460, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24488, + "token_id": 24461, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24489, + "token_id": 24462, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552 ] }, { "str": "url", - "token_id": 24490, + "token_id": 24463, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24491, + "token_id": 24464, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24492, + "token_id": 24465, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24493, + "token_id": 24466, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24494, + "token_id": 24467, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24495, + "token_id": 24468, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24496, + "token_id": 24469, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24497, + "token_id": 24470, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24498, + "token_id": 24471, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24499, + "token_id": 24472, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24500, + "token_id": 24473, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24501, + "token_id": 24474, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24502, + "token_id": 24475, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24503, + "token_id": 24476, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221013010605", - "token_id": 24504, + "token_id": 24477, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24505, + "token_id": 24478, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24506, + "token_id": 24479, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24507, + "token_id": 24480, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24508, + "token_id": 24481, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24509, + "token_id": 24482, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24510, + "token_id": 24483, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24511, + "token_id": 24484, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 24512, + "token_id": 24485, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24513, + "token_id": 24486, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24514, + "token_id": 24487, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24515, + "token_id": 24488, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 24516, + "token_id": 24489, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24517, + "token_id": 24490, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24518, + "token_id": 24491, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24519, + "token_id": 24492, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 24520, + "token_id": 24493, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24521, + "token_id": 24494, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "animal", - "token_id": 24522, + "token_id": 24495, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24523, + "token_id": 24496, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "crossing", - "token_id": 24524, + "token_id": 24497, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24525, + "token_id": 24498, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "and", - "token_id": 24526, + "token_id": 24499, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24527, + "token_id": 24500, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24528, + "token_id": 24501, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24529, + "token_id": 24502, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24530, + "token_id": 24503, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24531, + "token_id": 24504, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "concerts", - "token_id": 24532, + "token_id": 24505, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24533, + "token_id": 24506, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "to", - "token_id": 24534, + "token_id": 24507, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24535, + "token_id": 24508, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "headline", - "token_id": 24536, + "token_id": 24509, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24537, + "token_id": 24510, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 24538, + "token_id": 24511, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24539, + "token_id": 24512, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24540, + "token_id": 24513, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24541, + "token_id": 24514, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24542, + "token_id": 24515, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24543, + "token_id": 24516, "o_rev_id": 1140535097, "in": [], "out": [ @@ -215354,7 +215191,7 @@ }, { "str": "url", - "token_id": 24544, + "token_id": 24517, "o_rev_id": 1140535097, "in": [], "out": [ @@ -215363,7 +215200,7 @@ }, { "str": "-", - "token_id": 24545, + "token_id": 24518, "o_rev_id": 1140535097, "in": [], "out": [ @@ -215372,7 +215209,7 @@ }, { "str": "status", - "token_id": 24546, + "token_id": 24519, "o_rev_id": 1140535097, "in": [], "out": [ @@ -215381,7 +215218,7 @@ }, { "str": "=", - "token_id": 24547, + "token_id": 24520, "o_rev_id": 1140535097, "in": [], "out": [ @@ -215390,7 +215227,7 @@ }, { "str": "live", - "token_id": 24548, + "token_id": 24521, "o_rev_id": 1140535097, "in": [], "out": [ @@ -215398,131 +215235,92 @@ ] }, { - "str": "ref", - "token_id": 24549, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "title", - "token_id": 24550, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "website", - "token_id": 24551, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "metacritic", - "token_id": 24552, + "str": "}}", + "token_id": 24522, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "access", - "token_id": 24553, + "str": "<", + "token_id": 24523, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "date", - "token_id": 24554, + "str": "/", + "token_id": 24524, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "23", - "token_id": 24555, + "str": "ref", + "token_id": 24525, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "september", - "token_id": 24556, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "2022", - "token_id": 24557, + "str": ">", + "token_id": 24526, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24558, + "token_id": 24527, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24559, + "token_id": 24528, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24560, + "token_id": 24529, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24561, + "token_id": 24530, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24562, + "token_id": 24531, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "1", - "token_id": 24563, + "token_id": 24532, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 24564, + "token_id": 24533, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24565, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 24566, + "token_id": 24534, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -215531,339 +215329,338 @@ 1202071552 ] }, + { + "str": "|", + "token_id": 24535, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "archive", - "token_id": 24567, + "token_id": 24536, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24568, + "token_id": 24537, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "url", - "token_id": 24569, + "token_id": 24538, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24570, + "token_id": 24539, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "https", - "token_id": 24571, + "token_id": 24540, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24572, + "token_id": 24541, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24573, + "token_id": 24542, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24574, + "token_id": 24543, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24575, + "token_id": 24544, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24576, + "token_id": 24545, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24577, + "token_id": 24546, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24578, + "token_id": 24547, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24579, + "token_id": 24548, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24580, + "token_id": 24549, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24581, + "token_id": 24550, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24582, + "token_id": 24551, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221001204859", - "token_id": 24583, + "token_id": 24552, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24584, + "token_id": 24553, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24585, + "token_id": 24554, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24586, + "token_id": 24555, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24587, + "token_id": 24556, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24588, + "token_id": 24557, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24589, + "token_id": 24558, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24590, + "token_id": 24559, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "metacritic", - "token_id": 24591, + "token_id": 24560, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24592, + "token_id": 24561, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24593, + "token_id": 24562, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24594, + "token_id": 24563, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 24595, + "token_id": 24564, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24596, + "token_id": 24565, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 24597, + "token_id": 24566, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24598, + "token_id": 24567, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24599, + "token_id": 24568, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24600, + "token_id": 24569, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24601, + "token_id": 24570, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24602, + "token_id": 24571, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24603, + "token_id": 24572, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24604, + "token_id": 24573, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 24605, + "token_id": 24574, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24606, + "token_id": 24575, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24607, + "token_id": 24576, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 24608, + "token_id": 24577, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 24609, + "token_id": 24578, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24610, + "token_id": 24579, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 24611, + "token_id": 24580, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 24612, + "token_id": 24581, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24613, + "token_id": 24582, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -215874,7 +215671,7 @@ }, { "str": "3", - "token_id": 24614, + "token_id": 24583, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -215885,96 +215682,84 @@ }, { "str": "|", - "token_id": 24615, + "token_id": 24584, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 24616, + "token_id": 24585, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24617, + "token_id": 24586, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 24618, + "token_id": 24587, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "destructoid", - "token_id": 24619, + "token_id": 24588, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 24620, + "token_id": 24589, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24621, + "token_id": 24590, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "access", - "token_id": 24622, + "token_id": 24591, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24623, + "token_id": 24592, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "date", - "token_id": 24624, + "token_id": 24593, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24625, + "token_id": 24594, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "7", - "token_id": 24626, + "token_id": 24595, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -215985,7 +215770,7 @@ }, { "str": "september", - "token_id": 24627, + "token_id": 24596, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -215996,63 +215781,63 @@ }, { "str": "2022", - "token_id": 24628, + "token_id": 24597, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24629, + "token_id": 24598, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24630, + "token_id": 24599, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24631, + "token_id": 24600, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24632, + "token_id": 24601, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24633, + "token_id": 24602, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20", - "token_id": 24634, + "token_id": 24603, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 24635, + "token_id": 24604, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24636, + "token_id": 24605, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -216063,36 +215848,28 @@ }, { "str": "|", - "token_id": 24637, + "token_id": 24606, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "archive", - "token_id": 24638, + "token_id": 24607, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24639, + "token_id": 24608, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "url", - "token_id": 24640, + "token_id": 24609, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -216103,429 +215880,364 @@ }, { "str": "=", - "token_id": 24641, + "token_id": 24610, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "https", - "token_id": 24642, + "token_id": 24611, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24643, + "token_id": 24612, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24644, + "token_id": 24613, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24645, + "token_id": 24614, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24646, + "token_id": 24615, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24647, + "token_id": 24616, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24648, + "token_id": 24617, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24649, + "token_id": 24618, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24650, + "token_id": 24619, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24651, + "token_id": 24620, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24652, + "token_id": 24621, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24653, + "token_id": 24622, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221020132416", - "token_id": 24654, + "token_id": 24623, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24655, + "token_id": 24624, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24656, + "token_id": 24625, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24657, + "token_id": 24626, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24658, + "token_id": 24627, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24659, + "token_id": 24628, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24660, + "token_id": 24629, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24661, + "token_id": 24630, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "destructoid", - "token_id": 24662, + "token_id": 24631, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24663, + "token_id": 24632, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24664, + "token_id": 24633, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24665, + "token_id": 24634, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "reviews", - "token_id": 24666, + "token_id": 24635, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24667, + "token_id": 24636, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 24668, + "token_id": 24637, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24669, + "token_id": 24638, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24670, + "token_id": 24639, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24671, + "token_id": 24640, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24672, + "token_id": 24641, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24673, + "token_id": 24642, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 24674, + "token_id": 24643, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24675, + "token_id": 24644, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24676, + "token_id": 24645, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24677, + "token_id": 24646, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24678, + "token_id": 24647, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 24679, + "token_id": 24648, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24680, + "token_id": 24649, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24681, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "ref", - "token_id": 24682, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "title", - "token_id": 24683, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "splatoon", - "token_id": 24684, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "3", - "token_id": 24685, + "token_id": 24650, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "review", - "token_id": 24686, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "website", - "token_id": 24687, + "str": "}}", + "token_id": 24651, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "eurogamer", - "token_id": 24688, + "str": "<", + "token_id": 24652, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "access", - "token_id": 24689, + "str": "/", + "token_id": 24653, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "date", - "token_id": 24690, + "str": "ref", + "token_id": 24654, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "23", - "token_id": 24691, + "str": ">", + "token_id": 24655, "o_rev_id": 1140535097, "in": [], "out": [] }, - { - "str": "september", - "token_id": 24692, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "2022", - "token_id": 24693, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, { "str": "|", - "token_id": 24694, + "token_id": 24656, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24695, + "token_id": 24657, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24696, + "token_id": 24658, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24697, + "token_id": 24659, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24698, + "token_id": 24660, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "7", - "token_id": 24699, + "token_id": 24661, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -216536,407 +216248,399 @@ }, { "str": "october", - "token_id": 24700, + "token_id": 24662, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24701, + "token_id": 24663, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24702, + "token_id": 24664, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "archive", - "token_id": 24703, + "token_id": 24665, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24704, + "token_id": 24666, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24705, + "token_id": 24667, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24706, + "token_id": 24668, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "https", - "token_id": 24707, + "token_id": 24669, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24708, + "token_id": 24670, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24709, + "token_id": 24671, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24710, + "token_id": 24672, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24711, + "token_id": 24673, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24712, + "token_id": 24674, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24713, + "token_id": 24675, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24714, + "token_id": 24676, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24715, + "token_id": 24677, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24716, + "token_id": 24678, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24717, + "token_id": 24679, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24718, + "token_id": 24680, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221007175304", - "token_id": 24719, + "token_id": 24681, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24720, + "token_id": 24682, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24721, + "token_id": 24683, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24722, + "token_id": 24684, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24723, + "token_id": 24685, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24724, + "token_id": 24686, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24725, + "token_id": 24687, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24726, + "token_id": 24688, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "eurogamer", - "token_id": 24727, + "token_id": 24689, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24728, + "token_id": 24690, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "net", - "token_id": 24729, + "token_id": 24691, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24730, + "token_id": 24692, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24731, + "token_id": 24693, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24732, + "token_id": 24694, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24733, + "token_id": 24695, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24734, + "token_id": 24696, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 24735, + "token_id": 24697, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24736, + "token_id": 24698, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "a", - "token_id": 24737, + "token_id": 24699, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24738, + "token_id": 24700, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "lot", - "token_id": 24739, + "token_id": 24701, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24740, + "token_id": 24702, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "more", - "token_id": 24741, + "token_id": 24703, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24742, + "token_id": 24704, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "of", - "token_id": 24743, + "token_id": 24705, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24744, + "token_id": 24706, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 24745, + "token_id": 24707, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24746, + "token_id": 24708, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "brilliant", - "token_id": 24747, + "token_id": 24709, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24748, + "token_id": 24710, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "same", - "token_id": 24749, + "token_id": 24711, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24750, + "token_id": 24712, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24751, + "token_id": 24713, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24752, + "token_id": 24714, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24753, + "token_id": 24715, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 24754, + "token_id": 24716, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24755, + "token_id": 24717, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24756, + "token_id": 24718, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -216947,49 +216651,61 @@ }, { "str": "|", - "token_id": 24757, + "token_id": 24719, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "access", - "token_id": 24758, + "token_id": 24720, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 24759, + "token_id": 24721, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24760, + "token_id": 24722, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24761, + "token_id": 24723, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "2022", - "token_id": 24762, + "token_id": 24724, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24763, + "token_id": 24725, "o_rev_id": 1140535097, "in": [], "out": [ @@ -216998,7 +216714,7 @@ }, { "str": "10", - "token_id": 24764, + "token_id": 24726, "o_rev_id": 1140535097, "in": [], "out": [ @@ -217007,7 +216723,7 @@ }, { "str": "-", - "token_id": 24765, + "token_id": 24727, "o_rev_id": 1140535097, "in": [], "out": [ @@ -217016,14 +216732,14 @@ }, { "str": "11", - "token_id": 24766, + "token_id": 24728, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24767, + "token_id": 24729, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -217034,14 +216750,18 @@ }, { "str": "website", - "token_id": 24768, + "token_id": 24730, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 24769, + "token_id": 24731, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -217052,42 +216772,42 @@ }, { "str": "gematsu", - "token_id": 24770, + "token_id": 24732, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24771, + "token_id": 24733, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 24772, + "token_id": 24734, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24773, + "token_id": 24735, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 24774, + "token_id": 24736, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24775, + "token_id": 24737, "o_rev_id": 1140535097, "in": [], "out": [ @@ -217096,58 +216816,56 @@ }, { "str": "us", - "token_id": 24776, + "token_id": 24738, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24777, + "token_id": 24739, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24778, + "token_id": 24740, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24779, + "token_id": 24741, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "date", - "token_id": 24780, + "token_id": 24742, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24781, + "token_id": 24743, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "11", - "token_id": 24782, + "token_id": 24744, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 24783, + "token_id": 24745, "o_rev_id": 1140535097, "in": [], "out": [ @@ -217156,366 +216874,372 @@ }, { "str": "2022", - "token_id": 24784, + "token_id": 24746, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24785, + "token_id": 24747, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24786, + "token_id": 24748, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24787, + "token_id": 24749, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1168453704 + 1202071552 ] }, { "str": "url", - "token_id": 24788, + "token_id": 24750, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24789, + "token_id": 24751, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24790, + "token_id": 24752, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24791, + "token_id": 24753, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24792, + "token_id": 24754, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24793, + "token_id": 24755, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24794, + "token_id": 24756, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24795, + "token_id": 24757, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24796, + "token_id": 24758, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24797, + "token_id": 24759, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24798, + "token_id": 24760, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24799, + "token_id": 24761, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24800, + "token_id": 24762, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24801, + "token_id": 24763, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221011162053", - "token_id": 24802, + "token_id": 24764, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24803, + "token_id": 24765, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24804, + "token_id": 24766, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24805, + "token_id": 24767, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24806, + "token_id": 24768, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24807, + "token_id": 24769, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24808, + "token_id": 24770, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24809, + "token_id": 24771, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gematsu", - "token_id": 24810, + "token_id": 24772, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24811, + "token_id": 24773, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24812, + "token_id": 24774, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24813, + "token_id": 24775, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24814, + "token_id": 24776, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24815, + "token_id": 24777, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 24816, + "token_id": 24778, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24817, + "token_id": 24779, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "famitsu", - "token_id": 24818, + "token_id": 24780, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24819, + "token_id": 24781, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 24820, + "token_id": 24782, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24821, + "token_id": 24783, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "scores", - "token_id": 24822, + "token_id": 24784, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24823, + "token_id": 24785, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "issue", - "token_id": 24824, + "token_id": 24786, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24825, + "token_id": 24787, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "1765", - "token_id": 24826, + "token_id": 24788, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 24827, + "token_id": 24789, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 24828, + "token_id": 24790, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24829, + "token_id": 24791, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 24830, + "token_id": 24792, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 24831, + "token_id": 24793, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24832, + "token_id": 24794, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "title", - "token_id": 24833, + "token_id": 24795, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 24834, + "token_id": 24796, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24835, + "token_id": 24797, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -217526,7 +217250,7 @@ }, { "str": "3", - "token_id": 24836, + "token_id": 24798, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -217537,63 +217261,67 @@ }, { "str": "review", - "token_id": 24837, + "token_id": 24799, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 24838, + "token_id": 24800, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "multicolored", - "token_id": 24839, + "token_id": 24801, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "mayhem", - "token_id": 24840, + "token_id": 24802, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24841, + "token_id": 24803, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "magazine", - "token_id": 24842, + "token_id": 24804, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24843, + "token_id": 24805, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 24844, + "token_id": 24806, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 24845, + "token_id": 24807, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -217604,91 +217332,91 @@ }, { "str": "informer", - "token_id": 24846, + "token_id": 24808, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 24847, + "token_id": 24809, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24848, + "token_id": 24810, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 24849, + "token_id": 24811, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24850, + "token_id": 24812, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24851, + "token_id": 24813, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24852, + "token_id": 24814, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "7", - "token_id": 24853, + "token_id": 24815, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 24854, + "token_id": 24816, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24855, + "token_id": 24817, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24856, + "token_id": 24818, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24857, + "token_id": 24819, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24858, + "token_id": 24820, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -217699,56 +217427,56 @@ }, { "str": "date", - "token_id": 24859, + "token_id": 24821, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24860, + "token_id": 24822, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "22", - "token_id": 24861, + "token_id": 24823, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 24862, + "token_id": 24824, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24863, + "token_id": 24825, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24864, + "token_id": 24826, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24865, + "token_id": 24827, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24866, + "token_id": 24828, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -217759,748 +217487,718 @@ }, { "str": "url", - "token_id": 24867, + "token_id": 24829, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24868, + "token_id": 24830, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24869, + "token_id": 24831, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24870, + "token_id": 24832, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24871, + "token_id": 24833, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24872, + "token_id": 24834, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24873, + "token_id": 24835, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24874, + "token_id": 24836, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24875, + "token_id": 24837, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24876, + "token_id": 24838, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24877, + "token_id": 24839, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24878, + "token_id": 24840, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24879, + "token_id": 24841, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24880, + "token_id": 24842, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221022155505", - "token_id": 24881, + "token_id": 24843, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24882, + "token_id": 24844, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24883, + "token_id": 24845, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24884, + "token_id": 24846, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24885, + "token_id": 24847, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24886, + "token_id": 24848, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24887, + "token_id": 24849, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24888, + "token_id": 24850, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gameinformer", - "token_id": 24889, + "token_id": 24851, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24890, + "token_id": 24852, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24891, + "token_id": 24853, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24892, + "token_id": 24854, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 24893, + "token_id": 24855, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24894, + "token_id": 24856, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24895, + "token_id": 24857, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24896, + "token_id": 24858, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24897, + "token_id": 24859, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24898, + "token_id": 24860, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "multicolored", - "token_id": 24899, + "token_id": 24861, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24900, + "token_id": 24862, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "mayhem", - "token_id": 24901, + "token_id": 24863, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24902, + "token_id": 24864, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24903, + "token_id": 24865, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24904, + "token_id": 24866, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 24905, + "token_id": 24867, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24906, + "token_id": 24868, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24907, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "ref", - "token_id": 24908, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "nintendo", - "token_id": 24909, - "o_rev_id": 1140535097, - "in": [], - "out": [ - 1351743164 - ] - }, - { - "str": "website", - "token_id": 24910, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "gamesradar", - "token_id": 24911, + "token_id": 24869, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "access", - "token_id": 24912, + "str": "}}", + "token_id": 24870, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "date", - "token_id": 24913, + "str": "<", + "token_id": 24871, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "7", - "token_id": 24914, + "str": "/", + "token_id": 24872, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "september", - "token_id": 24915, + "str": "ref", + "token_id": 24873, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "2022", - "token_id": 24916, + "str": ">", + "token_id": 24874, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24917, + "token_id": 24875, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24918, + "token_id": 24876, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24919, + "token_id": 24877, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24920, + "token_id": 24878, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24921, + "token_id": 24879, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "18", - "token_id": 24922, + "token_id": 24880, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 24923, + "token_id": 24881, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24924, + "token_id": 24882, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24925, + "token_id": 24883, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24926, + "token_id": 24884, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24927, + "token_id": 24885, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "url", - "token_id": 24928, + "token_id": 24886, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24929, + "token_id": 24887, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24930, + "token_id": 24888, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24931, + "token_id": 24889, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24932, + "token_id": 24890, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24933, + "token_id": 24891, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24934, + "token_id": 24892, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24935, + "token_id": 24893, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24936, + "token_id": 24894, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24937, + "token_id": 24895, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 24938, + "token_id": 24896, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24939, + "token_id": 24897, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 24940, + "token_id": 24898, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24941, + "token_id": 24899, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221018121119", - "token_id": 24942, + "token_id": 24900, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24943, + "token_id": 24901, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 24944, + "token_id": 24902, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 24945, + "token_id": 24903, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24946, + "token_id": 24904, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24947, + "token_id": 24905, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 24948, + "token_id": 24906, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24949, + "token_id": 24907, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gamesradar", - "token_id": 24950, + "token_id": 24908, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 24951, + "token_id": 24909, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 24952, + "token_id": 24910, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24953, + "token_id": 24911, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 24954, + "token_id": 24912, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24955, + "token_id": 24913, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24956, + "token_id": 24914, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24957, + "token_id": 24915, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 24958, + "token_id": 24916, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24959, + "token_id": 24917, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24960, + "token_id": 24918, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 24961, + "token_id": 24919, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24962, + "token_id": 24920, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 24963, + "token_id": 24921, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24964, + "token_id": 24922, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 24965, + "token_id": 24923, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 24966, + "token_id": 24924, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 24967, + "token_id": 24925, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 24968, + "token_id": 24926, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 24969, + "token_id": 24927, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 24970, + "token_id": 24928, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "title", - "token_id": 24971, + "token_id": 24929, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 24972, + "token_id": 24930, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -218511,28 +218209,32 @@ }, { "str": "splatoon", - "token_id": 24973, + "token_id": 24931, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 24974, + "token_id": 24932, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 24975, + "token_id": 24933, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 24976, + "token_id": 24934, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -218543,14 +218245,18 @@ }, { "str": "website", - "token_id": 24977, + "token_id": 24935, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 24978, + "token_id": 24936, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -218561,28 +218267,28 @@ }, { "str": "[[", - "token_id": 24979, + "token_id": 24937, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gamespot", - "token_id": 24980, + "token_id": 24938, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 24981, + "token_id": 24939, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24982, + "token_id": 24940, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -218593,32 +218299,28 @@ }, { "str": "access", - "token_id": 24983, + "token_id": 24941, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24984, + "token_id": 24942, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "date", - "token_id": 24985, + "token_id": 24943, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24986, + "token_id": 24944, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -218629,490 +218331,490 @@ }, { "str": "23", - "token_id": 24987, + "token_id": 24945, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 24988, + "token_id": 24946, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24989, + "token_id": 24947, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24990, + "token_id": 24948, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24991, + "token_id": 24949, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 24992, + "token_id": 24950, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 24993, + "token_id": 24951, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 24994, + "token_id": 24952, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20", - "token_id": 24995, + "token_id": 24953, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 24996, + "token_id": 24954, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 24997, + "token_id": 24955, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 24998, + "token_id": 24956, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 24999, + "token_id": 24957, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25000, + "token_id": 24958, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25001, + "token_id": 24959, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25002, + "token_id": 24960, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25003, + "token_id": 24961, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25004, + "token_id": 24962, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25005, + "token_id": 24963, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25006, + "token_id": 24964, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25007, + "token_id": 24965, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25008, + "token_id": 24966, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25009, + "token_id": 24967, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25010, + "token_id": 24968, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25011, + "token_id": 24969, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25012, + "token_id": 24970, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25013, + "token_id": 24971, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25014, + "token_id": 24972, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221020015209", - "token_id": 25015, + "token_id": 24973, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25016, + "token_id": 24974, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25017, + "token_id": 24975, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25018, + "token_id": 24976, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25019, + "token_id": 24977, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25020, + "token_id": 24978, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25021, + "token_id": 24979, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25022, + "token_id": 24980, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gamespot", - "token_id": 25023, + "token_id": 24981, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25024, + "token_id": 24982, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25025, + "token_id": 24983, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25026, + "token_id": 24984, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "reviews", - "token_id": 25027, + "token_id": 24985, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25028, + "token_id": 24986, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25029, + "token_id": 24987, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25030, + "token_id": 24988, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25031, + "token_id": 24989, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25032, + "token_id": 24990, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 25033, + "token_id": 24991, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25034, + "token_id": 24992, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "1900", - "token_id": 25035, + "token_id": 24993, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25036, + "token_id": 24994, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "6417951", - "token_id": 25037, + "token_id": 24995, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25038, + "token_id": 24996, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25039, + "token_id": 24997, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25040, + "token_id": 24998, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25041, + "token_id": 24999, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25042, + "token_id": 25000, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25043, + "token_id": 25001, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25044, + "token_id": 25002, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 25045, + "token_id": 25003, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 25046, + "token_id": 25004, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25047, + "token_id": 25005, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 25048, + "token_id": 25006, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 25049, + "token_id": 25007, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25050, + "token_id": 25008, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 25051, + "token_id": 25009, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25052, + "token_id": 25010, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25053, + "token_id": 25011, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25054, + "token_id": 25012, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25055, + "token_id": 25013, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25056, + "token_id": 25014, "o_rev_id": 1140535097, "in": [], "out": [ @@ -219121,7 +218823,7 @@ }, { "str": "10", - "token_id": 25057, + "token_id": 25015, "o_rev_id": 1140535097, "in": [], "out": [ @@ -219130,14 +218832,14 @@ }, { "str": "-", - "token_id": 25058, + "token_id": 25016, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 25059, + "token_id": 25017, "o_rev_id": 1140535097, "in": [], "out": [ @@ -219146,133 +218848,133 @@ }, { "str": "|", - "token_id": 25060, + "token_id": 25018, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 25061, + "token_id": 25019, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25062, + "token_id": 25020, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ign", - "token_id": 25063, + "token_id": 25021, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25064, + "token_id": 25022, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 25065, + "token_id": 25023, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25066, + "token_id": 25024, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 25067, + "token_id": 25025, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25068, + "token_id": 25026, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25069, + "token_id": 25027, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25070, + "token_id": 25028, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25071, + "token_id": 25029, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25072, + "token_id": 25030, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "9", - "token_id": 25073, + "token_id": 25031, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 25074, + "token_id": 25032, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25075, + "token_id": 25033, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25076, + "token_id": 25034, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25077, + "token_id": 25035, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25078, + "token_id": 25036, "o_rev_id": 1140535097, "in": [], "out": [ @@ -219281,329 +218983,329 @@ }, { "str": "url", - "token_id": 25079, + "token_id": 25037, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25080, + "token_id": 25038, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25081, + "token_id": 25039, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25082, + "token_id": 25040, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25083, + "token_id": 25041, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25084, + "token_id": 25042, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25085, + "token_id": 25043, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25086, + "token_id": 25044, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25087, + "token_id": 25045, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25088, + "token_id": 25046, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25089, + "token_id": 25047, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25090, + "token_id": 25048, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25091, + "token_id": 25049, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25092, + "token_id": 25050, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221009175055", - "token_id": 25093, + "token_id": 25051, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25094, + "token_id": 25052, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25095, + "token_id": 25053, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25096, + "token_id": 25054, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25097, + "token_id": 25055, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25098, + "token_id": 25056, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25099, + "token_id": 25057, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25100, + "token_id": 25058, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ign", - "token_id": 25101, + "token_id": 25059, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25102, + "token_id": 25060, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25103, + "token_id": 25061, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25104, + "token_id": 25062, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "articles", - "token_id": 25105, + "token_id": 25063, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25106, + "token_id": 25064, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25107, + "token_id": 25065, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25108, + "token_id": 25066, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25109, + "token_id": 25067, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25110, + "token_id": 25068, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 25111, + "token_id": 25069, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25112, + "token_id": 25070, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 25113, + "token_id": 25071, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25114, + "token_id": 25072, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25115, + "token_id": 25073, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25116, + "token_id": 25074, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25117, + "token_id": 25075, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25118, + "token_id": 25076, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25119, + "token_id": 25077, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 25120, + "token_id": 25078, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 25121, + "token_id": 25079, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25122, + "token_id": 25080, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 25123, + "token_id": 25081, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 25124, + "token_id": 25082, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25125, + "token_id": 25083, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -219614,14 +219316,18 @@ }, { "str": "access", - "token_id": 25126, + "token_id": 25084, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 25127, + "token_id": 25085, "o_rev_id": 1140535097, "in": [], "out": [ @@ -219630,14 +219336,18 @@ }, { "str": "date", - "token_id": 25128, + "token_id": 25086, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 25129, + "token_id": 25087, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -219648,14 +219358,14 @@ }, { "str": "2022", - "token_id": 25130, + "token_id": 25088, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25131, + "token_id": 25089, "o_rev_id": 1140535097, "in": [], "out": [ @@ -219664,7 +219374,7 @@ }, { "str": "10", - "token_id": 25132, + "token_id": 25090, "o_rev_id": 1140535097, "in": [], "out": [ @@ -219673,7 +219383,7 @@ }, { "str": "-", - "token_id": 25133, + "token_id": 25091, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -219685,7 +219395,7 @@ }, { "str": "09", - "token_id": 25134, + "token_id": 25092, "o_rev_id": 1140535097, "in": [], "out": [ @@ -219694,7 +219404,7 @@ }, { "str": "|", - "token_id": 25135, + "token_id": 25093, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -219705,14 +219415,18 @@ }, { "str": "website", - "token_id": 25136, + "token_id": 25094, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 25137, + "token_id": 25095, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -219723,459 +219437,457 @@ }, { "str": "ign", - "token_id": 25138, + "token_id": 25096, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25139, + "token_id": 25097, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 25140, + "token_id": 25098, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25141, + "token_id": 25099, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 25142, + "token_id": 25100, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25143, + "token_id": 25101, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25144, + "token_id": 25102, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25145, + "token_id": 25103, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "date", - "token_id": 25146, + "token_id": 25104, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25147, + "token_id": 25105, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "29", - "token_id": 25148, + "token_id": 25106, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 25149, + "token_id": 25107, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25150, + "token_id": 25108, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25151, + "token_id": 25109, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25152, + "token_id": 25110, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25153, + "token_id": 25111, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "url", - "token_id": 25154, + "token_id": 25112, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25155, + "token_id": 25113, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25156, + "token_id": 25114, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25157, + "token_id": 25115, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25158, + "token_id": 25116, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25159, + "token_id": 25117, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25160, + "token_id": 25118, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25161, + "token_id": 25119, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25162, + "token_id": 25120, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25163, + "token_id": 25121, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25164, + "token_id": 25122, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25165, + "token_id": 25123, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25166, + "token_id": 25124, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25167, + "token_id": 25125, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221029195016", - "token_id": 25168, + "token_id": 25126, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25169, + "token_id": 25127, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25170, + "token_id": 25128, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25171, + "token_id": 25129, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25172, + "token_id": 25130, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25173, + "token_id": 25131, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25174, + "token_id": 25132, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25175, + "token_id": 25133, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ign", - "token_id": 25176, + "token_id": 25134, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25177, + "token_id": 25135, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25178, + "token_id": 25136, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25179, + "token_id": 25137, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "articles", - "token_id": 25180, + "token_id": 25138, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25181, + "token_id": 25139, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25182, + "token_id": 25140, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25183, + "token_id": 25141, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25184, + "token_id": 25142, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25185, + "token_id": 25143, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 25186, + "token_id": 25144, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25187, + "token_id": 25145, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "single", - "token_id": 25188, + "token_id": 25146, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25189, + "token_id": 25147, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "player", - "token_id": 25190, + "token_id": 25148, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25191, + "token_id": 25149, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25192, + "token_id": 25150, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25193, + "token_id": 25151, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25194, + "token_id": 25152, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25195, + "token_id": 25153, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25196, + "token_id": 25154, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 25197, + "token_id": 25155, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 25198, + "token_id": 25156, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25199, + "token_id": 25157, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 25200, + "token_id": 25158, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 25201, + "token_id": 25159, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25202, + "token_id": 25160, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -220186,14 +219898,14 @@ }, { "str": "title", - "token_id": 25203, + "token_id": 25161, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25204, + "token_id": 25162, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -220204,546 +219916,546 @@ }, { "str": "splatoon", - "token_id": 25205, + "token_id": 25163, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25206, + "token_id": 25164, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 25207, + "token_id": 25165, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "(", - "token_id": 25208, + "token_id": 25166, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 25209, + "token_id": 25167, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ")", - "token_id": 25210, + "token_id": 25168, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25211, + "token_id": 25169, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 25212, + "token_id": 25170, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25213, + "token_id": 25171, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 25214, + "token_id": 25172, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 25215, + "token_id": 25173, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 25216, + "token_id": 25174, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25217, + "token_id": 25175, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 25218, + "token_id": 25176, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25219, + "token_id": 25177, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25220, + "token_id": 25178, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25221, + "token_id": 25179, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "7", - "token_id": 25222, + "token_id": 25180, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25223, + "token_id": 25181, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25224, + "token_id": 25182, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25225, + "token_id": 25183, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25226, + "token_id": 25184, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25227, + "token_id": 25185, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25228, + "token_id": 25186, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25229, + "token_id": 25187, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "5", - "token_id": 25230, + "token_id": 25188, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 25231, + "token_id": 25189, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25232, + "token_id": 25190, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25233, + "token_id": 25191, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25234, + "token_id": 25192, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25235, + "token_id": 25193, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25236, + "token_id": 25194, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25237, + "token_id": 25195, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25238, + "token_id": 25196, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25239, + "token_id": 25197, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25240, + "token_id": 25198, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25241, + "token_id": 25199, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25242, + "token_id": 25200, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25243, + "token_id": 25201, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25244, + "token_id": 25202, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25245, + "token_id": 25203, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25246, + "token_id": 25204, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25247, + "token_id": 25205, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25248, + "token_id": 25206, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25249, + "token_id": 25207, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221005131022", - "token_id": 25250, + "token_id": 25208, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25251, + "token_id": 25209, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25252, + "token_id": 25210, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25253, + "token_id": 25211, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25254, + "token_id": 25212, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25255, + "token_id": 25213, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25256, + "token_id": 25214, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25257, + "token_id": 25215, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 25258, + "token_id": 25216, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25259, + "token_id": 25217, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25260, + "token_id": 25218, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25261, + "token_id": 25219, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "reviews", - "token_id": 25262, + "token_id": 25220, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25263, + "token_id": 25221, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 25264, + "token_id": 25222, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25265, + "token_id": 25223, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 25266, + "token_id": 25224, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25267, + "token_id": 25225, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25268, + "token_id": 25226, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25269, + "token_id": 25227, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25270, + "token_id": 25228, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25271, + "token_id": 25229, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25272, + "token_id": 25230, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25273, + "token_id": 25231, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25274, + "token_id": 25232, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25275, + "token_id": 25233, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25276, + "token_id": 25234, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 25277, + "token_id": 25235, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 25278, + "token_id": 25236, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25279, + "token_id": 25237, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 25280, + "token_id": 25238, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 25281, + "token_id": 25239, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "squid", - "token_id": 25282, + "token_id": 25240, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -220754,162 +220466,154 @@ }, { "str": "game", - "token_id": 25283, + "token_id": 25241, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25284, + "token_id": 25242, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 25285, + "token_id": 25243, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25286, + "token_id": 25244, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 25287, + "token_id": 25245, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "shacknews", - "token_id": 25288, + "token_id": 25246, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 25289, + "token_id": 25247, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25290, + "token_id": 25248, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "access", - "token_id": 25291, + "token_id": 25249, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25292, + "token_id": 25250, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25293, + "token_id": 25251, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25294, + "token_id": 25252, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "7", - "token_id": 25295, + "token_id": 25253, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25296, + "token_id": 25254, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25297, + "token_id": 25255, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25298, + "token_id": 25256, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25299, + "token_id": 25257, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25300, + "token_id": 25258, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25301, + "token_id": 25259, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25302, + "token_id": 25260, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "9", - "token_id": 25303, + "token_id": 25261, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25304, + "token_id": 25262, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -220920,347 +220624,343 @@ }, { "str": "2022", - "token_id": 25305, + "token_id": 25263, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25306, + "token_id": 25264, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25307, + "token_id": 25265, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25308, + "token_id": 25266, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "url", - "token_id": 25309, + "token_id": 25267, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25310, + "token_id": 25268, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25311, + "token_id": 25269, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25312, + "token_id": 25270, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25313, + "token_id": 25271, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25314, + "token_id": 25272, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25315, + "token_id": 25273, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25316, + "token_id": 25274, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25317, + "token_id": 25275, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25318, + "token_id": 25276, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25319, + "token_id": 25277, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25320, + "token_id": 25278, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25321, + "token_id": 25279, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25322, + "token_id": 25280, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220909230145", - "token_id": 25323, + "token_id": 25281, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25324, + "token_id": 25282, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25325, + "token_id": 25283, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25326, + "token_id": 25284, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25327, + "token_id": 25285, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25328, + "token_id": 25286, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25329, + "token_id": 25287, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25330, + "token_id": 25288, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "shacknews", - "token_id": 25331, + "token_id": 25289, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25332, + "token_id": 25290, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25333, + "token_id": 25291, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25334, + "token_id": 25292, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "article", - "token_id": 25335, + "token_id": 25293, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25336, + "token_id": 25294, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "132162", - "token_id": 25337, + "token_id": 25295, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25338, + "token_id": 25296, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25339, + "token_id": 25297, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25340, + "token_id": 25298, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25341, + "token_id": 25299, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25342, + "token_id": 25300, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 25343, + "token_id": 25301, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25344, + "token_id": 25302, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 25345, + "token_id": 25303, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25346, + "token_id": 25304, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 25347, + "token_id": 25305, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25348, + "token_id": 25306, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25349, + "token_id": 25307, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25350, + "token_id": 25308, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25351, + "token_id": 25309, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25352, + "token_id": 25310, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25353, + "token_id": 25311, "o_rev_id": 1140535097, "in": [ 1284035910 @@ -221270,138 +220970,85 @@ ] }, { - "str": "ref", - "token_id": 25354, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "you", - "token_id": 25355, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "but", - "token_id": 25356, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "its", - "token_id": 25357, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "single", - "token_id": 25358, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "publisher", - "token_id": 25359, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "vg247", - "token_id": 25360, + "str": "}}", + "token_id": 25312, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "access", - "token_id": 25361, + "str": "<", + "token_id": 25313, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "date", - "token_id": 25362, + "str": "/", + "token_id": 25314, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "7", - "token_id": 25363, + "str": "ref", + "token_id": 25315, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "september", - "token_id": 25364, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "2022", - "token_id": 25365, + "str": ">", + "token_id": 25316, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25366, + "token_id": 25317, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25367, + "token_id": 25318, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25368, + "token_id": 25319, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25369, + "token_id": 25320, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25370, + "token_id": 25321, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "30", - "token_id": 25371, + "token_id": 25322, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25372, + "token_id": 25323, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -221412,252 +221059,252 @@ }, { "str": "2022", - "token_id": 25373, + "token_id": 25324, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25374, + "token_id": 25325, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25375, + "token_id": 25326, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25376, + "token_id": 25327, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25377, + "token_id": 25328, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25378, + "token_id": 25329, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25379, + "token_id": 25330, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25380, + "token_id": 25331, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25381, + "token_id": 25332, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25382, + "token_id": 25333, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25383, + "token_id": 25334, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25384, + "token_id": 25335, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25385, + "token_id": 25336, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25386, + "token_id": 25337, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25387, + "token_id": 25338, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25388, + "token_id": 25339, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25389, + "token_id": 25340, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25390, + "token_id": 25341, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220930083620", - "token_id": 25391, + "token_id": 25342, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25392, + "token_id": 25343, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25393, + "token_id": 25344, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25394, + "token_id": 25345, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25395, + "token_id": 25346, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25396, + "token_id": 25347, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25397, + "token_id": 25348, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25398, + "token_id": 25349, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "vg247", - "token_id": 25399, + "token_id": 25350, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25400, + "token_id": 25351, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25401, + "token_id": 25352, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25402, + "token_id": 25353, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25403, + "token_id": 25354, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25404, + "token_id": 25355, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25405, + "token_id": 25356, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25406, + "token_id": 25357, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 25407, + "token_id": 25358, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25408, + "token_id": 25359, "o_rev_id": 1140535097, "in": [], "out": [ @@ -221666,21 +221313,21 @@ }, { "str": "url", - "token_id": 25409, + "token_id": 25360, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25410, + "token_id": 25361, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25411, + "token_id": 25362, "o_rev_id": 1140535097, "in": [], "out": [ @@ -221689,7 +221336,7 @@ }, { "str": "=", - "token_id": 25412, + "token_id": 25363, "o_rev_id": 1140535097, "in": [], "out": [ @@ -221698,7 +221345,7 @@ }, { "str": "live", - "token_id": 25413, + "token_id": 25364, "o_rev_id": 1140535097, "in": [ 1284035910 @@ -221708,58 +221355,150 @@ 1334328058 ] }, + { + "str": "}}", + "token_id": 25365, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 25366, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 25367, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "ref", - "token_id": 25414, + "token_id": 25368, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 25369, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 25370, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25415, + "token_id": 25371, "o_rev_id": 1140535097, "in": [], "out": [] }, + { + "str": "-", + "token_id": 25372, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1168453704 + ] + }, { "str": "status", - "token_id": 25416, + "token_id": 25373, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 25374, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25417, + "token_id": 25375, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 25376, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 25418, + "token_id": 25377, "o_rev_id": 1140535097, "in": [], "out": [] }, + { + "str": "-", + "token_id": 25378, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1168453704 + ] + }, { "str": "date", - "token_id": 25419, + "token_id": 25379, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 25380, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25420, + "token_id": 25381, "o_rev_id": 1140535097, "in": [], "out": [] }, + { + "str": "-", + "token_id": 25382, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1168453704 + ] + }, { "str": "09", - "token_id": 25421, + "token_id": 25383, + "o_rev_id": 1140535097, + "in": [], + "out": [ + 1168453704 + ] + }, + { + "str": "-", + "token_id": 25384, "o_rev_id": 1140535097, "in": [], "out": [ @@ -221768,21 +221507,42 @@ }, { "str": "27", - "token_id": 25422, + "token_id": 25385, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 25386, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 25423, + "token_id": 25387, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 25388, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 25389, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "video", - "token_id": 25424, + "token_id": 25390, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -221793,77 +221553,107 @@ }, { "str": "games", - "token_id": 25425, + "token_id": 25391, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "chronicle", - "token_id": 25426, + "token_id": 25392, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 25393, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 25394, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 25427, + "token_id": 25395, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 25396, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 25428, + "token_id": 25397, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 25398, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gb", - "token_id": 25429, + "token_id": 25399, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25430, + "token_id": 25400, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25431, + "token_id": 25401, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25432, + "token_id": 25402, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "date", - "token_id": 25433, + "token_id": 25403, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25434, + "token_id": 25404, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "15", - "token_id": 25435, + "token_id": 25405, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -221874,454 +221664,301 @@ }, { "str": "october", - "token_id": 25436, + "token_id": 25406, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25437, + "token_id": 25407, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25438, + "token_id": 25408, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25439, + "token_id": 25409, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25440, + "token_id": 25410, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25441, + "token_id": 25411, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25442, + "token_id": 25412, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25443, + "token_id": 25413, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25444, + "token_id": 25414, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25445, + "token_id": 25415, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25446, + "token_id": 25416, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25447, + "token_id": 25417, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25448, + "token_id": 25418, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25449, + "token_id": 25419, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25450, + "token_id": 25420, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25451, + "token_id": 25421, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25452, + "token_id": 25422, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25453, + "token_id": 25423, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25454, + "token_id": 25424, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221015095100", - "token_id": 25455, + "token_id": 25425, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25456, + "token_id": 25426, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25457, + "token_id": 25427, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25458, + "token_id": 25428, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25459, + "token_id": 25429, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25460, + "token_id": 25430, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25461, + "token_id": 25431, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25462, + "token_id": 25432, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "videogameschronicle", - "token_id": 25463, + "token_id": 25433, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25464, + "token_id": 25434, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25465, + "token_id": 25435, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25466, + "token_id": 25436, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 25467, + "token_id": 25437, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25468, + "token_id": 25438, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon3", - "token_id": 25469, + "token_id": 25439, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25470, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "ref", - "token_id": 25471, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "title", - "token_id": 25472, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "splatoon", - "token_id": 25473, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "3", - "token_id": 25474, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "review", - "token_id": 25475, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "nintendo", - "token_id": 25476, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "redible", - "token_id": 25477, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "fun", - "token_id": 25478, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "first", - "token_id": 25479, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "keza", - "token_id": 25480, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "last", - "token_id": 25481, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "macdonald", - "token_id": 25482, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "date", - "token_id": 25483, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "2022", - "token_id": 25484, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "09", - "token_id": 25485, - "o_rev_id": 1140535097, - "in": [], - "out": [ - 1168453704 - ] - }, - { - "str": "15", - "token_id": 25486, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "access", - "token_id": 25487, + "token_id": 25440, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "date", - "token_id": 25488, + "str": "}}", + "token_id": 25441, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "2022", - "token_id": 25489, + "str": "<", + "token_id": 25442, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "10", - "token_id": 25490, - "o_rev_id": 1140535097, - "in": [], - "out": [ - 1168453704 - ] - }, - { - "str": "25", - "token_id": 25491, + "str": "/", + "token_id": 25443, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "website", - "token_id": 25492, + "str": "ref", + "token_id": 25444, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "the", - "token_id": 25493, - "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "guardian", - "token_id": 25494, + "str": ">", + "token_id": 25445, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25495, + "token_id": 25446, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25496, + "token_id": 25447, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25497, + "token_id": 25448, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222330,554 +221967,560 @@ }, { "str": "date", - "token_id": 25498, + "token_id": 25449, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25499, + "token_id": 25450, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "25", - "token_id": 25500, + "token_id": 25451, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 25501, + "token_id": 25452, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25502, + "token_id": 25453, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25503, + "token_id": 25454, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25504, + "token_id": 25455, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25505, + "token_id": 25456, "o_rev_id": 1140535097, "in": [], - "out": [ - 1168453704 - ] + "out": [] }, { "str": "url", - "token_id": 25506, + "token_id": 25457, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25507, + "token_id": 25458, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25508, + "token_id": 25459, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25509, + "token_id": 25460, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25510, + "token_id": 25461, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25511, + "token_id": 25462, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25512, + "token_id": 25463, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25513, + "token_id": 25464, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25514, + "token_id": 25465, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25515, + "token_id": 25466, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25516, + "token_id": 25467, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25517, + "token_id": 25468, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25518, + "token_id": 25469, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25519, + "token_id": 25470, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221025205010", - "token_id": 25520, + "token_id": 25471, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25521, + "token_id": 25472, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25522, + "token_id": 25473, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25523, + "token_id": 25474, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25524, + "token_id": 25475, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25525, + "token_id": 25476, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25526, + "token_id": 25477, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25527, + "token_id": 25478, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "theguardian", - "token_id": 25528, + "token_id": 25479, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25529, + "token_id": 25480, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25530, + "token_id": 25481, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25531, + "token_id": 25482, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "games", - "token_id": 25532, + "token_id": 25483, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25533, + "token_id": 25484, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25534, + "token_id": 25485, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25535, + "token_id": 25486, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "sep", - "token_id": 25536, + "token_id": 25487, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25537, + "token_id": 25488, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "15", - "token_id": 25538, + "token_id": 25489, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25539, + "token_id": 25490, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25540, + "token_id": 25491, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25541, + "token_id": 25492, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25542, + "token_id": 25493, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25543, + "token_id": 25494, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "review", - "token_id": 25544, + "token_id": 25495, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25545, + "token_id": 25496, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendos", - "token_id": 25546, + "token_id": 25497, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25547, + "token_id": 25498, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "new", - "token_id": 25548, + "token_id": 25499, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25549, + "token_id": 25500, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "squid", - "token_id": 25550, + "token_id": 25501, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25551, + "token_id": 25502, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 25552, + "token_id": 25503, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25553, + "token_id": 25504, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "is", - "token_id": 25554, + "token_id": 25505, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25555, + "token_id": 25506, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ink", - "token_id": 25556, + "token_id": 25507, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25557, + "token_id": 25508, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "redible", - "token_id": 25558, + "token_id": 25509, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25559, + "token_id": 25510, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "fun", - "token_id": 25560, + "token_id": 25511, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25561, + "token_id": 25512, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25562, + "token_id": 25513, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25563, + "token_id": 25514, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25564, + "token_id": 25515, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25565, + "token_id": 25516, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25566, + "token_id": 25517, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 25567, + "token_id": 25518, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 25568, + "token_id": 25519, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25569, + "token_id": 25520, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 25570, + "token_id": 25521, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 25571, + "token_id": 25522, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25572, + "token_id": 25523, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1334176815 ] }, { "str": "access", - "token_id": 25573, + "token_id": 25524, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1334176815 ] }, { "str": "-", - "token_id": 25574, + "token_id": 25525, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ - 1334176815 + 1202071552 ] }, { "str": "date", - "token_id": 25575, + "token_id": 25526, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222886,16 +222529,19 @@ }, { "str": "=", - "token_id": 25576, + "token_id": 25527, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1334176815 ] }, { "str": "2022", - "token_id": 25577, + "token_id": 25528, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -222907,7 +222553,7 @@ }, { "str": "-", - "token_id": 25578, + "token_id": 25529, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222916,7 +222562,7 @@ }, { "str": "10", - "token_id": 25579, + "token_id": 25530, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222925,7 +222571,7 @@ }, { "str": "-", - "token_id": 25580, + "token_id": 25531, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222934,7 +222580,7 @@ }, { "str": "13", - "token_id": 25581, + "token_id": 25532, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -222946,7 +222592,7 @@ }, { "str": "|", - "token_id": 25582, + "token_id": 25533, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222955,7 +222601,7 @@ }, { "str": "website", - "token_id": 25583, + "token_id": 25534, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222964,7 +222610,7 @@ }, { "str": "=", - "token_id": 25584, + "token_id": 25535, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222973,7 +222619,7 @@ }, { "str": "kotaku", - "token_id": 25585, + "token_id": 25536, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222982,7 +222628,7 @@ }, { "str": "|", - "token_id": 25586, + "token_id": 25537, "o_rev_id": 1140535097, "in": [], "out": [ @@ -222991,7 +222637,7 @@ }, { "str": "language", - "token_id": 25587, + "token_id": 25538, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223000,7 +222646,7 @@ }, { "str": "=", - "token_id": 25588, + "token_id": 25539, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223009,7 +222655,7 @@ }, { "str": "en", - "token_id": 25589, + "token_id": 25540, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223018,7 +222664,7 @@ }, { "str": "|", - "token_id": 25590, + "token_id": 25541, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223027,7 +222673,7 @@ }, { "str": "archive", - "token_id": 25591, + "token_id": 25542, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223036,7 +222682,7 @@ }, { "str": "-", - "token_id": 25592, + "token_id": 25543, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223045,16 +222691,19 @@ }, { "str": "date", - "token_id": 25593, + "token_id": 25544, "o_rev_id": 1140535097, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1334176815 ] }, { "str": "=", - "token_id": 25594, + "token_id": 25545, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223063,7 +222712,7 @@ }, { "str": "13", - "token_id": 25595, + "token_id": 25546, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223072,14 +222721,14 @@ }, { "str": "october", - "token_id": 25596, + "token_id": 25547, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25597, + "token_id": 25548, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223088,7 +222737,7 @@ }, { "str": "|", - "token_id": 25598, + "token_id": 25549, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223097,7 +222746,7 @@ }, { "str": "archive", - "token_id": 25599, + "token_id": 25550, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223106,7 +222755,7 @@ }, { "str": "-", - "token_id": 25600, + "token_id": 25551, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223115,7 +222764,7 @@ }, { "str": "url", - "token_id": 25601, + "token_id": 25552, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223124,7 +222773,7 @@ }, { "str": "=", - "token_id": 25602, + "token_id": 25553, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223133,280 +222782,280 @@ }, { "str": "https", - "token_id": 25603, + "token_id": 25554, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25604, + "token_id": 25555, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25605, + "token_id": 25556, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25606, + "token_id": 25557, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25607, + "token_id": 25558, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25608, + "token_id": 25559, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25609, + "token_id": 25560, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25610, + "token_id": 25561, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25611, + "token_id": 25562, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25612, + "token_id": 25563, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25613, + "token_id": 25564, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25614, + "token_id": 25565, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221013005139", - "token_id": 25615, + "token_id": 25566, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25616, + "token_id": 25567, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25617, + "token_id": 25568, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25618, + "token_id": 25569, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25619, + "token_id": 25570, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25620, + "token_id": 25571, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "kotaku", - "token_id": 25621, + "token_id": 25572, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25622, + "token_id": 25573, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25623, + "token_id": 25574, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25624, + "token_id": 25575, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25625, + "token_id": 25576, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25626, + "token_id": 25577, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25627, + "token_id": 25578, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25628, + "token_id": 25579, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "online", - "token_id": 25629, + "token_id": 25580, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25630, + "token_id": 25581, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 25631, + "token_id": 25582, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25632, + "token_id": 25583, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 25633, + "token_id": 25584, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25634, + "token_id": 25585, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "turf", - "token_id": 25635, + "token_id": 25586, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25636, + "token_id": 25587, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "wars", - "token_id": 25637, + "token_id": 25588, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25638, + "token_id": 25589, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "connection", - "token_id": 25639, + "token_id": 25590, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25640, + "token_id": 25591, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "1849536980", - "token_id": 25641, + "token_id": 25592, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25642, + "token_id": 25593, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223415,7 +223064,7 @@ }, { "str": "url", - "token_id": 25643, + "token_id": 25594, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223424,7 +223073,7 @@ }, { "str": "-", - "token_id": 25644, + "token_id": 25595, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223433,7 +223082,7 @@ }, { "str": "status", - "token_id": 25645, + "token_id": 25596, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223442,7 +223091,7 @@ }, { "str": "=", - "token_id": 25646, + "token_id": 25597, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223451,7 +223100,7 @@ }, { "str": "live", - "token_id": 25647, + "token_id": 25598, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223460,7 +223109,7 @@ }, { "str": "}}", - "token_id": 25648, + "token_id": 25599, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223469,7 +223118,7 @@ }, { "str": "<", - "token_id": 25649, + "token_id": 25600, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223478,7 +223127,7 @@ }, { "str": "/", - "token_id": 25650, + "token_id": 25601, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223487,7 +223136,7 @@ }, { "str": "ref", - "token_id": 25651, + "token_id": 25602, "o_rev_id": 1140535097, "in": [], "out": [ @@ -223496,519 +223145,513 @@ }, { "str": ">", - "token_id": 25652, + "token_id": 25603, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1334176815 + ] }, { "str": "|", - "token_id": 25653, + "token_id": 25604, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 25654, + "token_id": 25605, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25655, + "token_id": 25606, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25656, + "token_id": 25607, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25657, + "token_id": 25608, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "12", - "token_id": 25658, + "token_id": 25609, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25659, + "token_id": 25610, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25660, + "token_id": 25611, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25661, + "token_id": 25612, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25662, + "token_id": 25613, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25663, + "token_id": 25614, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25664, + "token_id": 25615, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25665, + "token_id": 25616, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "16", - "token_id": 25666, + "token_id": 25617, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25667, + "token_id": 25618, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25668, + "token_id": 25619, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25669, + "token_id": 25620, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "archive", - "token_id": 25670, + "token_id": 25621, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25671, + "token_id": 25622, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25672, + "token_id": 25623, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25673, + "token_id": 25624, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "https", - "token_id": 25674, + "token_id": 25625, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25675, + "token_id": 25626, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25676, + "token_id": 25627, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25677, + "token_id": 25628, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25678, + "token_id": 25629, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25679, + "token_id": 25630, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25680, + "token_id": 25631, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25681, + "token_id": 25632, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25682, + "token_id": 25633, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25683, + "token_id": 25634, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25684, + "token_id": 25635, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25685, + "token_id": 25636, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220916052550", - "token_id": 25686, + "token_id": 25637, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25687, + "token_id": 25638, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25688, + "token_id": 25639, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25689, + "token_id": 25640, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25690, + "token_id": 25641, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25691, + "token_id": 25642, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25692, + "token_id": 25643, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25693, + "token_id": 25644, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 25694, + "token_id": 25645, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25695, + "token_id": 25646, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "co", - "token_id": 25696, + "token_id": 25647, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25697, + "token_id": 25648, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "jp", - "token_id": 25698, + "token_id": 25649, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25699, + "token_id": 25650, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "corporate", - "token_id": 25700, + "token_id": 25651, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25701, + "token_id": 25652, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "release", - "token_id": 25702, + "token_id": 25653, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25703, + "token_id": 25654, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 25704, + "token_id": 25655, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25705, + "token_id": 25656, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25706, + "token_id": 25657, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25707, + "token_id": 25658, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "220912", - "token_id": 25708, + "token_id": 25659, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25709, + "token_id": 25660, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "html", - "token_id": 25710, + "token_id": 25661, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25711, + "token_id": 25662, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25712, + "token_id": 25663, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25713, + "token_id": 25664, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25714, + "token_id": 25665, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25715, + "token_id": 25666, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25716, + "token_id": 25667, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 25717, + "token_id": 25668, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 25718, + "token_id": 25669, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25719, + "token_id": 25670, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 25720, + "token_id": 25671, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 25721, + "token_id": 25672, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25722, + "token_id": 25673, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 25723, + "token_id": 25674, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25724, + "token_id": 25675, "o_rev_id": 1140535097, "in": [], "out": [ @@ -224017,21 +223660,21 @@ }, { "str": "date", - "token_id": 25725, + "token_id": 25676, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25726, + "token_id": 25677, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25727, + "token_id": 25678, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -224042,7 +223685,7 @@ }, { "str": "-", - "token_id": 25728, + "token_id": 25679, "o_rev_id": 1140535097, "in": [], "out": [ @@ -224051,7 +223694,7 @@ }, { "str": "09", - "token_id": 25729, + "token_id": 25680, "o_rev_id": 1140535097, "in": [], "out": [ @@ -224060,21 +223703,21 @@ }, { "str": "-", - "token_id": 25730, + "token_id": 25681, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "16", - "token_id": 25731, + "token_id": 25682, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25732, + "token_id": 25683, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -224085,669 +223728,669 @@ }, { "str": "website", - "token_id": 25733, + "token_id": 25684, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25734, + "token_id": 25685, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "forbes", - "token_id": 25735, + "token_id": 25686, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25736, + "token_id": 25687, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 25737, + "token_id": 25688, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25738, + "token_id": 25689, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 25739, + "token_id": 25690, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25740, + "token_id": 25691, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25741, + "token_id": 25692, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25742, + "token_id": 25693, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "date", - "token_id": 25743, + "token_id": 25694, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25744, + "token_id": 25695, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "17", - "token_id": 25745, + "token_id": 25696, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25746, + "token_id": 25697, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25747, + "token_id": 25698, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25748, + "token_id": 25699, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25749, + "token_id": 25700, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25750, + "token_id": 25701, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25751, + "token_id": 25702, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25752, + "token_id": 25703, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25753, + "token_id": 25704, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25754, + "token_id": 25705, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25755, + "token_id": 25706, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25756, + "token_id": 25707, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25757, + "token_id": 25708, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25758, + "token_id": 25709, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25759, + "token_id": 25710, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25760, + "token_id": 25711, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25761, + "token_id": 25712, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25762, + "token_id": 25713, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25763, + "token_id": 25714, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25764, + "token_id": 25715, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220917013613", - "token_id": 25765, + "token_id": 25716, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25766, + "token_id": 25717, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25767, + "token_id": 25718, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25768, + "token_id": 25719, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25769, + "token_id": 25720, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25770, + "token_id": 25721, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25771, + "token_id": 25722, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25772, + "token_id": 25723, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "forbes", - "token_id": 25773, + "token_id": 25724, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25774, + "token_id": 25725, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25775, + "token_id": 25726, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25776, + "token_id": 25727, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "sites", - "token_id": 25777, + "token_id": 25728, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25778, + "token_id": 25729, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "paultassi", - "token_id": 25779, + "token_id": 25730, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25780, + "token_id": 25731, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25781, + "token_id": 25732, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25782, + "token_id": 25733, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 25783, + "token_id": 25734, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25784, + "token_id": 25735, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "12", - "token_id": 25785, + "token_id": 25736, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25786, + "token_id": 25737, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendos", - "token_id": 25787, + "token_id": 25738, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25788, + "token_id": 25739, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25789, + "token_id": 25740, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25790, + "token_id": 25741, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 25791, + "token_id": 25742, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25792, + "token_id": 25743, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "just", - "token_id": 25793, + "token_id": 25744, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25794, + "token_id": 25745, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "set", - "token_id": 25795, + "token_id": 25746, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25796, + "token_id": 25747, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "japans", - "token_id": 25797, + "token_id": 25748, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25798, + "token_id": 25749, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "all", - "token_id": 25799, + "token_id": 25750, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25800, + "token_id": 25751, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "time", - "token_id": 25801, + "token_id": 25752, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25802, + "token_id": 25753, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "launch", - "token_id": 25803, + "token_id": 25754, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25804, + "token_id": 25755, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "sales", - "token_id": 25805, + "token_id": 25756, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25806, + "token_id": 25757, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "record", - "token_id": 25807, + "token_id": 25758, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25808, + "token_id": 25759, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25809, + "token_id": 25760, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25810, + "token_id": 25761, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25811, + "token_id": 25762, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25812, + "token_id": 25763, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25813, + "token_id": 25764, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25814, + "token_id": 25765, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 25815, + "token_id": 25766, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 25816, + "token_id": 25767, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25817, + "token_id": 25768, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 25818, + "token_id": 25769, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 25819, + "token_id": 25770, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25820, + "token_id": 25771, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 25821, + "token_id": 25772, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25822, + "token_id": 25773, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25823, + "token_id": 25774, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25824, + "token_id": 25775, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25825, + "token_id": 25776, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "-", - "token_id": 25826, + "token_id": 25777, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 25827, + "token_id": 25778, "o_rev_id": 1140535097, "in": [], "out": [ @@ -224756,7 +224399,7 @@ }, { "str": "-", - "token_id": 25828, + "token_id": 25779, "o_rev_id": 1140535097, "in": [], "out": [ @@ -224765,704 +224408,700 @@ }, { "str": "15", - "token_id": 25829, + "token_id": 25780, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25830, + "token_id": 25781, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 25831, + "token_id": 25782, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25832, + "token_id": 25783, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 25833, + "token_id": 25784, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "bloomberg", - "token_id": 25834, + "token_id": 25785, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 25835, + "token_id": 25786, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 25836, + "token_id": 25787, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25837, + "token_id": 25788, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "publisher", - "token_id": 25838, + "token_id": 25789, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25839, + "token_id": 25790, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 25840, + "token_id": 25791, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "bloomberg", - "token_id": 25841, + "token_id": 25792, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "l", - "token_id": 25842, + "token_id": 25793, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25843, + "token_id": 25794, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "p", - "token_id": 25844, + "token_id": 25795, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25845, + "token_id": 25796, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 25846, + "token_id": 25797, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25847, + "token_id": 25798, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25848, + "token_id": 25799, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25849, + "token_id": 25800, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "date", - "token_id": 25850, + "token_id": 25801, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25851, + "token_id": 25802, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "27", - "token_id": 25852, + "token_id": 25803, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25853, + "token_id": 25804, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25854, + "token_id": 25805, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25855, + "token_id": 25806, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25856, + "token_id": 25807, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25857, + "token_id": 25808, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25858, + "token_id": 25809, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25859, + "token_id": 25810, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25860, + "token_id": 25811, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25861, + "token_id": 25812, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25862, + "token_id": 25813, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25863, + "token_id": 25814, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25864, + "token_id": 25815, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25865, + "token_id": 25816, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25866, + "token_id": 25817, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25867, + "token_id": 25818, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25868, + "token_id": 25819, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25869, + "token_id": 25820, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25870, + "token_id": 25821, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25871, + "token_id": 25822, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220927000017", - "token_id": 25872, + "token_id": 25823, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25873, + "token_id": 25824, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25874, + "token_id": 25825, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25875, + "token_id": 25826, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25876, + "token_id": 25827, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25877, + "token_id": 25828, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25878, + "token_id": 25829, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25879, + "token_id": 25830, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "bloomberg", - "token_id": 25880, + "token_id": 25831, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25881, + "token_id": 25832, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25882, + "token_id": 25833, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25883, + "token_id": 25834, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 25884, + "token_id": 25835, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25885, + "token_id": 25836, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "articles", - "token_id": 25886, + "token_id": 25837, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25887, + "token_id": 25838, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25888, + "token_id": 25839, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25889, + "token_id": 25840, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 25890, + "token_id": 25841, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25891, + "token_id": 25842, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 25892, + "token_id": 25843, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25893, + "token_id": 25844, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 25894, + "token_id": 25845, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25895, + "token_id": 25846, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "jumps", - "token_id": 25896, + "token_id": 25847, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25897, + "token_id": 25848, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "after", - "token_id": 25898, + "token_id": 25849, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25899, + "token_id": 25850, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "record", - "token_id": 25900, + "token_id": 25851, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25901, + "token_id": 25852, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "debut", - "token_id": 25902, + "token_id": 25853, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25903, + "token_id": 25854, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "of", - "token_id": 25904, + "token_id": 25855, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25905, + "token_id": 25856, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "new", - "token_id": 25906, + "token_id": 25857, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25907, + "token_id": 25858, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "switch", - "token_id": 25908, + "token_id": 25859, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25909, + "token_id": 25860, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 25910, + "token_id": 25861, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25911, + "token_id": 25862, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25912, + "token_id": 25863, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25913, + "token_id": 25864, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25914, + "token_id": 25865, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25915, + "token_id": 25866, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25916, + "token_id": 25867, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 25917, + "token_id": 25868, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 25918, + "token_id": 25869, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25919, + "token_id": 25870, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 25920, + "token_id": 25871, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 25921, + "token_id": 25872, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25922, + "token_id": 25873, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 25923, + "token_id": 25874, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25924, + "token_id": 25875, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25925, + "token_id": 25876, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25926, + "token_id": 25877, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25927, + "token_id": 25878, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25928, + "token_id": 25879, "o_rev_id": 1140535097, "in": [], "out": [ @@ -225471,7 +225110,7 @@ }, { "str": "09", - "token_id": 25929, + "token_id": 25880, "o_rev_id": 1140535097, "in": [], "out": [ @@ -225480,7 +225119,7 @@ }, { "str": "-", - "token_id": 25930, + "token_id": 25881, "o_rev_id": 1140535097, "in": [], "out": [ @@ -225489,567 +225128,567 @@ }, { "str": "15", - "token_id": 25931, + "token_id": 25882, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25932, + "token_id": 25883, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25933, + "token_id": 25884, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25934, + "token_id": 25885, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 25935, + "token_id": 25886, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25936, + "token_id": 25887, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "15", - "token_id": 25937, + "token_id": 25888, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 25938, + "token_id": 25889, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 25939, + "token_id": 25890, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25940, + "token_id": 25891, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25941, + "token_id": 25892, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25942, + "token_id": 25893, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25943, + "token_id": 25894, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25944, + "token_id": 25895, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25945, + "token_id": 25896, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25946, + "token_id": 25897, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25947, + "token_id": 25898, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25948, + "token_id": 25899, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25949, + "token_id": 25900, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25950, + "token_id": 25901, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 25951, + "token_id": 25902, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25952, + "token_id": 25903, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 25953, + "token_id": 25904, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25954, + "token_id": 25905, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 25955, + "token_id": 25906, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25956, + "token_id": 25907, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220915082234", - "token_id": 25957, + "token_id": 25908, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25958, + "token_id": 25909, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 25959, + "token_id": 25910, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 25960, + "token_id": 25911, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25961, + "token_id": 25912, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25962, + "token_id": 25913, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 25963, + "token_id": 25914, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25964, + "token_id": 25915, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "reuters", - "token_id": 25965, + "token_id": 25916, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 25966, + "token_id": 25917, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 25967, + "token_id": 25918, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25968, + "token_id": 25919, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "artcile", - "token_id": 25969, + "token_id": 25920, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25970, + "token_id": 25921, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "article", - "token_id": 25971, + "token_id": 25922, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25972, + "token_id": 25923, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 25973, + "token_id": 25924, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25974, + "token_id": 25925, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "stocks", - "token_id": 25975, + "token_id": 25926, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 25976, + "token_id": 25927, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 25977, + "token_id": 25928, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25978, + "token_id": 25929, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "shares", - "token_id": 25979, + "token_id": 25930, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25980, + "token_id": 25931, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "jump", - "token_id": 25981, + "token_id": 25932, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25982, + "token_id": 25933, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "5", - "token_id": 25983, + "token_id": 25934, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25984, + "token_id": 25935, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "on", - "token_id": 25985, + "token_id": 25936, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25986, + "token_id": 25937, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "record", - "token_id": 25987, + "token_id": 25938, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25988, + "token_id": 25939, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 25989, + "token_id": 25940, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25990, + "token_id": 25941, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "launch", - "token_id": 25991, + "token_id": 25942, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25992, + "token_id": 25943, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "iduskbn2qe02c", - "token_id": 25993, + "token_id": 25944, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 25994, + "token_id": 25945, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 25995, + "token_id": 25946, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 25996, + "token_id": 25947, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 25997, + "token_id": 25948, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 25998, + "token_id": 25949, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 25999, + "token_id": 25950, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 26000, + "token_id": 25951, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 26001, + "token_id": 25952, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26002, + "token_id": 25953, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 26003, + "token_id": 25954, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 26004, + "token_id": 25955, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26005, + "token_id": 25956, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 26006, + "token_id": 25957, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26007, + "token_id": 25958, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26008, + "token_id": 25959, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26009, + "token_id": 25960, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26010, + "token_id": 25961, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26011, + "token_id": 25962, "o_rev_id": 1140535097, "in": [], "out": [ @@ -226058,7 +225697,7 @@ }, { "str": "09", - "token_id": 26012, + "token_id": 25963, "o_rev_id": 1140535097, "in": [], "out": [ @@ -226067,646 +225706,630 @@ }, { "str": "-", - "token_id": 26013, + "token_id": 25964, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "15", - "token_id": 26014, + "token_id": 25965, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26015, + "token_id": 25966, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 26016, + "token_id": 25967, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26017, + "token_id": 25968, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "cnbc", - "token_id": 26018, + "token_id": 25969, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26019, + "token_id": 25970, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 26020, + "token_id": 25971, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26021, + "token_id": 25972, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 26022, + "token_id": 25973, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26023, + "token_id": 25974, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26024, + "token_id": 25975, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26025, + "token_id": 25976, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26026, + "token_id": 25977, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26027, + "token_id": 25978, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "15", - "token_id": 26028, + "token_id": 25979, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "september", - "token_id": 26029, + "token_id": 25980, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26030, + "token_id": 25981, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26031, + "token_id": 25982, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "archive", - "token_id": 26032, + "token_id": 25983, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26033, + "token_id": 25984, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26034, + "token_id": 25985, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26035, + "token_id": 25986, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "https", - "token_id": 26036, + "token_id": 25987, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26037, + "token_id": 25988, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26038, + "token_id": 25989, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26039, + "token_id": 25990, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26040, + "token_id": 25991, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26041, + "token_id": 25992, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26042, + "token_id": 25993, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26043, + "token_id": 25994, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 26044, + "token_id": 25995, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26045, + "token_id": 25996, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26046, + "token_id": 25997, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26047, + "token_id": 25998, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20220915082223", - "token_id": 26048, + "token_id": 25999, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26049, + "token_id": 26000, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26050, + "token_id": 26001, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26051, + "token_id": 26002, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26052, + "token_id": 26003, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26053, + "token_id": 26004, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 26054, + "token_id": 26005, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26055, + "token_id": 26006, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "cnbc", - "token_id": 26056, + "token_id": 26007, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26057, + "token_id": 26008, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 26058, + "token_id": 26009, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26059, + "token_id": 26010, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26060, + "token_id": 26011, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26061, + "token_id": 26012, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 26062, + "token_id": 26013, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26063, + "token_id": 26014, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 26064, + "token_id": 26015, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26065, + "token_id": 26016, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 26066, + "token_id": 26017, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26067, + "token_id": 26018, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "shares", - "token_id": 26068, + "token_id": 26019, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26069, + "token_id": 26020, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "jump", - "token_id": 26070, + "token_id": 26021, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26071, + "token_id": 26022, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "after", - "token_id": 26072, + "token_id": 26023, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26073, + "token_id": 26024, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26074, + "token_id": 26025, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26075, + "token_id": 26026, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 26076, + "token_id": 26027, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26077, + "token_id": 26028, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "japan", - "token_id": 26078, + "token_id": 26029, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26079, + "token_id": 26030, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "sales", - "token_id": 26080, + "token_id": 26031, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26081, + "token_id": 26032, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "record", - "token_id": 26082, + "token_id": 26033, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26083, + "token_id": 26034, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "html", - "token_id": 26084, + "token_id": 26035, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26085, + "token_id": 26036, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26086, + "token_id": 26037, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26087, + "token_id": 26038, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 26088, + "token_id": 26039, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26089, + "token_id": 26040, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 26090, + "token_id": 26041, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 26091, + "token_id": 26042, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 26092, + "token_id": 26043, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26093, + "token_id": 26044, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 26094, + "token_id": 26045, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 26095, + "token_id": 26046, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26096, + "token_id": 26047, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "access", - "token_id": 26097, + "token_id": 26048, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26098, + "token_id": 26049, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26099, + "token_id": 26050, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26100, + "token_id": 26051, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "2022", - "token_id": 26101, + "token_id": 26052, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26102, + "token_id": 26053, "o_rev_id": 1140535097, "in": [], "out": [ @@ -226715,7 +226338,7 @@ }, { "str": "10", - "token_id": 26103, + "token_id": 26054, "o_rev_id": 1140535097, "in": [], "out": [ @@ -226724,84 +226347,84 @@ }, { "str": "-", - "token_id": 26104, + "token_id": 26055, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 26105, + "token_id": 26056, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26106, + "token_id": 26057, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 26107, + "token_id": 26058, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26108, + "token_id": 26059, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 26109, + "token_id": 26060, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "life", - "token_id": 26110, + "token_id": 26061, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26111, + "token_id": 26062, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 26112, + "token_id": 26063, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26113, + "token_id": 26064, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 26114, + "token_id": 26065, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26115, + "token_id": 26066, "o_rev_id": 1140535097, "in": [], "out": [ @@ -226810,28 +226433,28 @@ }, { "str": "gb", - "token_id": 26116, + "token_id": 26067, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26117, + "token_id": 26068, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26118, + "token_id": 26069, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26119, + "token_id": 26070, "o_rev_id": 1140535097, "in": [], "out": [ @@ -226840,56 +226463,60 @@ }, { "str": "date", - "token_id": 26120, + "token_id": 26071, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26121, + "token_id": 26072, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 26122, + "token_id": 26073, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 26123, + "token_id": 26074, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26124, + "token_id": 26075, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "|", - "token_id": 26125, + "token_id": 26076, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26126, + "token_id": 26077, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26127, + "token_id": 26078, "o_rev_id": 1140535097, "in": [], "out": [ @@ -226898,487 +226525,480 @@ }, { "str": "url", - "token_id": 26128, + "token_id": 26079, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 26129, + "token_id": 26080, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26130, + "token_id": 26081, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26131, + "token_id": 26082, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26132, + "token_id": 26083, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26133, + "token_id": 26084, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26134, + "token_id": 26085, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26135, + "token_id": 26086, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26136, + "token_id": 26087, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26137, + "token_id": 26088, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 26138, + "token_id": 26089, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26139, + "token_id": 26090, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26140, + "token_id": 26091, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26141, + "token_id": 26092, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221013010617", - "token_id": 26142, + "token_id": 26093, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26143, + "token_id": 26094, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26144, + "token_id": 26095, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26145, + "token_id": 26096, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26146, + "token_id": 26097, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26147, + "token_id": 26098, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 26148, + "token_id": 26099, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26149, + "token_id": 26100, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 26150, + "token_id": 26101, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26151, + "token_id": 26102, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 26152, + "token_id": 26103, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26153, + "token_id": 26104, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 26154, + "token_id": 26105, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26155, + "token_id": 26106, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26156, + "token_id": 26107, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26157, + "token_id": 26108, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 26158, + "token_id": 26109, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26159, + "token_id": 26110, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "uk", - "token_id": 26160, + "token_id": 26111, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26161, + "token_id": 26112, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "charts", - "token_id": 26162, + "token_id": 26113, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26163, + "token_id": 26114, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26164, + "token_id": 26115, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26165, + "token_id": 26116, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 26166, + "token_id": 26117, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26167, + "token_id": 26118, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "inks", - "token_id": 26168, + "token_id": 26119, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26169, + "token_id": 26120, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "its", - "token_id": 26170, + "token_id": 26121, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26171, + "token_id": 26122, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "way", - "token_id": 26172, + "token_id": 26123, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26173, + "token_id": 26124, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "to", - "token_id": 26174, + "token_id": 26125, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26175, + "token_id": 26126, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 26176, + "token_id": 26127, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26177, + "token_id": 26128, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "top", - "token_id": 26178, + "token_id": 26129, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26179, + "token_id": 26130, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "spot", - "token_id": 26180, + "token_id": 26131, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26181, + "token_id": 26132, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26182, + "token_id": 26133, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26183, + "token_id": 26134, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 26184, + "token_id": 26135, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26185, + "token_id": 26136, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 26186, + "token_id": 26137, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 26187, + "token_id": 26138, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 26188, + "token_id": 26139, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26189, + "token_id": 26140, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 26190, + "token_id": 26141, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 26191, + "token_id": 26142, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26192, + "token_id": 26143, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "access", - "token_id": 26193, + "token_id": 26144, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26194, + "token_id": 26145, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26195, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "=", - "token_id": 26196, + "token_id": 26146, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -227387,16 +227007,23 @@ 1202071552 ] }, + { + "str": "=", + "token_id": 26147, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "2022", - "token_id": 26197, + "token_id": 26148, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26198, + "token_id": 26149, "o_rev_id": 1140535097, "in": [], "out": [ @@ -227405,7 +227032,7 @@ }, { "str": "10", - "token_id": 26199, + "token_id": 26150, "o_rev_id": 1140535097, "in": [], "out": [ @@ -227414,7 +227041,7 @@ }, { "str": "-", - "token_id": 26200, + "token_id": 26151, "o_rev_id": 1140535097, "in": [], "out": [ @@ -227423,35 +227050,35 @@ }, { "str": "13", - "token_id": 26201, + "token_id": 26152, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26202, + "token_id": 26153, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 26203, + "token_id": 26154, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26204, + "token_id": 26155, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 26205, + "token_id": 26156, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -227462,42 +227089,42 @@ }, { "str": "life", - "token_id": 26206, + "token_id": 26157, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26207, + "token_id": 26158, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 26208, + "token_id": 26159, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26209, + "token_id": 26160, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 26210, + "token_id": 26161, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26211, + "token_id": 26162, "o_rev_id": 1140535097, "in": [], "out": [ @@ -227506,567 +227133,567 @@ }, { "str": "gb", - "token_id": 26212, + "token_id": 26163, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26213, + "token_id": 26164, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26214, + "token_id": 26165, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26215, + "token_id": 26166, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26216, + "token_id": 26167, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26217, + "token_id": 26168, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 26218, + "token_id": 26169, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 26219, + "token_id": 26170, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26220, + "token_id": 26171, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26221, + "token_id": 26172, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26222, + "token_id": 26173, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26223, + "token_id": 26174, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26224, + "token_id": 26175, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26225, + "token_id": 26176, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26226, + "token_id": 26177, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26227, + "token_id": 26178, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26228, + "token_id": 26179, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26229, + "token_id": 26180, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26230, + "token_id": 26181, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26231, + "token_id": 26182, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26232, + "token_id": 26183, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26233, + "token_id": 26184, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 26234, + "token_id": 26185, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26235, + "token_id": 26186, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26236, + "token_id": 26187, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26237, + "token_id": 26188, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221013010605", - "token_id": 26238, + "token_id": 26189, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26239, + "token_id": 26190, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26240, + "token_id": 26191, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26241, + "token_id": 26192, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26242, + "token_id": 26193, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26243, + "token_id": 26194, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 26244, + "token_id": 26195, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26245, + "token_id": 26196, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 26246, + "token_id": 26197, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26247, + "token_id": 26198, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 26248, + "token_id": 26199, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26249, + "token_id": 26200, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 26250, + "token_id": 26201, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26251, + "token_id": 26202, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26252, + "token_id": 26203, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26253, + "token_id": 26204, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 26254, + "token_id": 26205, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26255, + "token_id": 26206, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "uk", - "token_id": 26256, + "token_id": 26207, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26257, + "token_id": 26208, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "charts", - "token_id": 26258, + "token_id": 26209, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26259, + "token_id": 26210, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26260, + "token_id": 26211, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26261, + "token_id": 26212, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 26262, + "token_id": 26213, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26263, + "token_id": 26214, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "holds", - "token_id": 26264, + "token_id": 26215, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26265, + "token_id": 26216, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "firm", - "token_id": 26266, + "token_id": 26217, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26267, + "token_id": 26218, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 26268, + "token_id": 26219, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26269, + "token_id": 26220, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "another", - "token_id": 26270, + "token_id": 26221, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26271, + "token_id": 26222, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "strong", - "token_id": 26272, + "token_id": 26223, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26273, + "token_id": 26224, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "week", - "token_id": 26274, + "token_id": 26225, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26275, + "token_id": 26226, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "for", - "token_id": 26276, + "token_id": 26227, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26277, + "token_id": 26228, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 26278, + "token_id": 26229, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26279, + "token_id": 26230, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26280, + "token_id": 26231, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26281, + "token_id": 26232, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 26282, + "token_id": 26233, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26283, + "token_id": 26234, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 26284, + "token_id": 26235, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 26285, + "token_id": 26236, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 26286, + "token_id": 26237, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26287, + "token_id": 26238, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 26288, + "token_id": 26239, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 26289, + "token_id": 26240, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26290, + "token_id": 26241, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 26291, + "token_id": 26242, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26292, + "token_id": 26243, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228075,28 +227702,28 @@ }, { "str": "date", - "token_id": 26293, + "token_id": 26244, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26294, + "token_id": 26245, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26295, + "token_id": 26246, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26296, + "token_id": 26247, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228105,7 +227732,7 @@ }, { "str": "10", - "token_id": 26297, + "token_id": 26248, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228114,7 +227741,7 @@ }, { "str": "-", - "token_id": 26298, + "token_id": 26249, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228123,77 +227750,77 @@ }, { "str": "13", - "token_id": 26299, + "token_id": 26250, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26300, + "token_id": 26251, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 26301, + "token_id": 26252, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26302, + "token_id": 26253, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 26303, + "token_id": 26254, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "life", - "token_id": 26304, + "token_id": 26255, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26305, + "token_id": 26256, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 26306, + "token_id": 26257, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26307, + "token_id": 26258, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 26308, + "token_id": 26259, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26309, + "token_id": 26260, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228202,28 +227829,28 @@ }, { "str": "gb", - "token_id": 26310, + "token_id": 26261, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26311, + "token_id": 26262, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26312, + "token_id": 26263, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26313, + "token_id": 26264, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228232,42 +227859,35 @@ }, { "str": "date", - "token_id": 26314, + "token_id": 26265, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26315, + "token_id": 26266, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 26316, + "token_id": 26267, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 26317, + "token_id": 26268, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26318, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 26319, + "token_id": 26269, "o_rev_id": 1140535097, "in": [ 1202097960 @@ -228276,16 +227896,23 @@ 1202071552 ] }, + { + "str": "|", + "token_id": 26270, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, { "str": "archive", - "token_id": 26320, + "token_id": 26271, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26321, + "token_id": 26272, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228294,505 +227921,497 @@ }, { "str": "url", - "token_id": 26322, + "token_id": 26273, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26323, + "token_id": 26274, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "https", - "token_id": 26324, + "token_id": 26275, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26325, + "token_id": 26276, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26326, + "token_id": 26277, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26327, + "token_id": 26278, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26328, + "token_id": 26279, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26329, + "token_id": 26280, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26330, + "token_id": 26281, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26331, + "token_id": 26282, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 26332, + "token_id": 26283, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26333, + "token_id": 26284, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26334, + "token_id": 26285, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26335, + "token_id": 26286, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221013010606", - "token_id": 26336, + "token_id": 26287, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26337, + "token_id": 26288, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26338, + "token_id": 26289, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26339, + "token_id": 26290, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26340, + "token_id": 26291, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26341, + "token_id": 26292, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 26342, + "token_id": 26293, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26343, + "token_id": 26294, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 26344, + "token_id": 26295, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26345, + "token_id": 26296, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 26346, + "token_id": 26297, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26347, + "token_id": 26298, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 26348, + "token_id": 26299, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26349, + "token_id": 26300, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26350, + "token_id": 26301, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26351, + "token_id": 26302, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "09", - "token_id": 26352, + "token_id": 26303, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26353, + "token_id": 26304, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "uk", - "token_id": 26354, + "token_id": 26305, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26355, + "token_id": 26306, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "charts", - "token_id": 26356, + "token_id": 26307, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26357, + "token_id": 26308, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "mario", - "token_id": 26358, + "token_id": 26309, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26359, + "token_id": 26310, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "kart", - "token_id": 26360, + "token_id": 26311, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26361, + "token_id": 26312, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "8", - "token_id": 26362, + "token_id": 26313, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26363, + "token_id": 26314, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gains", - "token_id": 26364, + "token_id": 26315, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26365, + "token_id": 26316, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ground", - "token_id": 26366, + "token_id": 26317, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26367, + "token_id": 26318, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "as", - "token_id": 26368, + "token_id": 26319, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26369, + "token_id": 26320, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26370, + "token_id": 26321, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26371, + "token_id": 26322, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 26372, + "token_id": 26323, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26373, + "token_id": 26324, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "continues", - "token_id": 26374, + "token_id": 26325, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26375, + "token_id": 26326, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "to", - "token_id": 26376, + "token_id": 26327, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26377, + "token_id": 26328, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "dominate", - "token_id": 26378, + "token_id": 26329, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26379, + "token_id": 26330, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26380, + "token_id": 26331, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26381, + "token_id": 26332, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 26382, + "token_id": 26333, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26383, + "token_id": 26334, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 26384, + "token_id": 26335, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 26385, + "token_id": 26336, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 26386, + "token_id": 26337, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26387, + "token_id": 26338, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 26388, + "token_id": 26339, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 26389, + "token_id": 26340, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26390, + "token_id": 26341, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "access", - "token_id": 26391, + "token_id": 26342, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26392, + "token_id": 26343, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228801,32 +228420,28 @@ }, { "str": "date", - "token_id": 26393, + "token_id": 26344, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26394, + "token_id": 26345, "o_rev_id": 1140535097, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "2022", - "token_id": 26395, + "token_id": 26346, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26396, + "token_id": 26347, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228835,7 +228450,7 @@ }, { "str": "10", - "token_id": 26397, + "token_id": 26348, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228844,7 +228459,7 @@ }, { "str": "-", - "token_id": 26398, + "token_id": 26349, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228853,70 +228468,74 @@ }, { "str": "13", - "token_id": 26399, + "token_id": 26350, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26400, + "token_id": 26351, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 26401, + "token_id": 26352, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26402, + "token_id": 26353, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 26403, + "token_id": 26354, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 26404, + "token_id": 26355, "o_rev_id": 1140535097, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "life", - "token_id": 26405, + "token_id": 26356, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 26406, + "token_id": 26357, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26407, + "token_id": 26358, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "publisher", - "token_id": 26408, + "token_id": 26359, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228925,7 +228544,7 @@ }, { "str": "=", - "token_id": 26409, + "token_id": 26360, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228934,7 +228553,7 @@ }, { "str": "hookshot", - "token_id": 26410, + "token_id": 26361, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228943,7 +228562,7 @@ }, { "str": "media", - "token_id": 26411, + "token_id": 26362, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228952,7 +228571,7 @@ }, { "str": "|", - "token_id": 26412, + "token_id": 26363, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228961,28 +228580,28 @@ }, { "str": "language", - "token_id": 26413, + "token_id": 26364, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26414, + "token_id": 26365, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 26415, + "token_id": 26366, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26416, + "token_id": 26367, "o_rev_id": 1140535097, "in": [], "out": [ @@ -228991,28 +228610,28 @@ }, { "str": "gb", - "token_id": 26417, + "token_id": 26368, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26418, + "token_id": 26369, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26419, + "token_id": 26370, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26420, + "token_id": 26371, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229021,56 +228640,56 @@ }, { "str": "date", - "token_id": 26421, + "token_id": 26372, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26422, + "token_id": 26373, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "13", - "token_id": 26423, + "token_id": 26374, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 26424, + "token_id": 26375, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26425, + "token_id": 26376, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26426, + "token_id": 26377, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26427, + "token_id": 26378, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26428, + "token_id": 26379, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229079,469 +228698,469 @@ }, { "str": "url", - "token_id": 26429, + "token_id": 26380, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26430, + "token_id": 26381, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26431, + "token_id": 26382, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26432, + "token_id": 26383, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26433, + "token_id": 26384, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26434, + "token_id": 26385, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26435, + "token_id": 26386, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26436, + "token_id": 26387, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26437, + "token_id": 26388, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26438, + "token_id": 26389, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 26439, + "token_id": 26390, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26440, + "token_id": 26391, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26441, + "token_id": 26392, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26442, + "token_id": 26393, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221013010604", - "token_id": 26443, + "token_id": 26394, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26444, + "token_id": 26395, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26445, + "token_id": 26396, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26446, + "token_id": 26397, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26447, + "token_id": 26398, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26448, + "token_id": 26399, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 26449, + "token_id": 26400, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26450, + "token_id": 26401, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 26451, + "token_id": 26402, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26452, + "token_id": 26403, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 26453, + "token_id": 26404, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26454, + "token_id": 26405, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 26455, + "token_id": 26406, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26456, + "token_id": 26407, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26457, + "token_id": 26408, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26458, + "token_id": 26409, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "10", - "token_id": 26459, + "token_id": 26410, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26460, + "token_id": 26411, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "uk", - "token_id": 26461, + "token_id": 26412, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26462, + "token_id": 26413, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "charts", - "token_id": 26463, + "token_id": 26414, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26464, + "token_id": 26415, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "fifa", - "token_id": 26465, + "token_id": 26416, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26466, + "token_id": 26417, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "23", - "token_id": 26467, + "token_id": 26418, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26468, + "token_id": 26419, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "knocks", - "token_id": 26469, + "token_id": 26420, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26470, + "token_id": 26421, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26471, + "token_id": 26422, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26472, + "token_id": 26423, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 26473, + "token_id": 26424, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26474, + "token_id": 26425, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "off", - "token_id": 26475, + "token_id": 26426, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26476, + "token_id": 26427, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 26477, + "token_id": 26428, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26478, + "token_id": 26429, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "top", - "token_id": 26479, + "token_id": 26430, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26480, + "token_id": 26431, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "spot", - "token_id": 26481, + "token_id": 26432, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26482, + "token_id": 26433, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26483, + "token_id": 26434, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26484, + "token_id": 26435, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 26485, + "token_id": 26436, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26486, + "token_id": 26437, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 26487, + "token_id": 26438, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "}}", - "token_id": 26488, + "token_id": 26439, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "<", - "token_id": 26489, + "token_id": 26440, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26490, + "token_id": 26441, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 26491, + "token_id": 26442, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ">", - "token_id": 26492, + "token_id": 26443, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26493, + "token_id": 26444, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 26494, + "token_id": 26445, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26495, + "token_id": 26446, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229550,28 +229169,28 @@ }, { "str": "date", - "token_id": 26496, + "token_id": 26447, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26497, + "token_id": 26448, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26498, + "token_id": 26449, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26499, + "token_id": 26450, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229580,7 +229199,7 @@ }, { "str": "10", - "token_id": 26500, + "token_id": 26451, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229589,7 +229208,7 @@ }, { "str": "-", - "token_id": 26501, + "token_id": 26452, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229598,63 +229217,63 @@ }, { "str": "18", - "token_id": 26502, + "token_id": 26453, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26503, + "token_id": 26454, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "website", - "token_id": 26504, + "token_id": 26455, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26505, + "token_id": 26456, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "[[", - "token_id": 26506, + "token_id": 26457, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 26507, + "token_id": 26458, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "life", - "token_id": 26508, + "token_id": 26459, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "]]", - "token_id": 26509, + "token_id": 26460, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26510, + "token_id": 26461, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229663,7 +229282,7 @@ }, { "str": "publisher", - "token_id": 26511, + "token_id": 26462, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229672,7 +229291,7 @@ }, { "str": "=", - "token_id": 26512, + "token_id": 26463, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229681,7 +229300,7 @@ }, { "str": "hookshot", - "token_id": 26513, + "token_id": 26464, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229690,7 +229309,7 @@ }, { "str": "media", - "token_id": 26514, + "token_id": 26465, "o_rev_id": 1140535097, "in": [], "out": [ @@ -229699,1834 +229318,1923 @@ }, { "str": "|", - "token_id": 26515, + "token_id": 26466, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "language", - "token_id": 26516, + "token_id": 26467, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26517, + "token_id": 26468, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "en", - "token_id": 26518, + "token_id": 26469, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26519, + "token_id": 26470, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "gb", - "token_id": 26520, + "token_id": 26471, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26521, + "token_id": 26472, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26522, + "token_id": 26473, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26523, + "token_id": 26474, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26524, + "token_id": 26475, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26525, + "token_id": 26476, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "18", - "token_id": 26526, + "token_id": 26477, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "october", - "token_id": 26527, + "token_id": 26478, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26528, + "token_id": 26479, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26529, + "token_id": 26480, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26530, + "token_id": 26481, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26531, + "token_id": 26482, "o_rev_id": 1140535097, "in": [], - "out": [] + "out": [ + 1168453704 + ] }, { "str": "url", - "token_id": 26532, + "token_id": 26483, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26533, + "token_id": 26484, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26534, + "token_id": 26485, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26535, + "token_id": 26486, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26536, + "token_id": 26487, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26537, + "token_id": 26488, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26538, + "token_id": 26489, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26539, + "token_id": 26490, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26540, + "token_id": 26491, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26541, + "token_id": 26492, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 26542, + "token_id": 26493, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26543, + "token_id": 26494, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26544, + "token_id": 26495, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26545, + "token_id": 26496, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221018194039", - "token_id": 26546, + "token_id": 26497, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26547, + "token_id": 26498, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26548, + "token_id": 26499, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26549, + "token_id": 26500, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26550, + "token_id": 26501, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26551, + "token_id": 26502, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 26552, + "token_id": 26503, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26553, + "token_id": 26504, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 26554, + "token_id": 26505, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26555, + "token_id": 26506, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 26556, + "token_id": 26507, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26557, + "token_id": 26508, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "news", - "token_id": 26558, + "token_id": 26509, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26559, + "token_id": 26510, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26560, + "token_id": 26511, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26561, + "token_id": 26512, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "10", - "token_id": 26562, + "token_id": 26513, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26563, + "token_id": 26514, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26564, + "token_id": 26515, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26565, + "token_id": 26516, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "3", - "token_id": 26566, + "token_id": 26517, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26567, + "token_id": 26518, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "is", - "token_id": 26568, + "token_id": 26519, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26569, + "token_id": 26520, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "already", - "token_id": 26570, + "token_id": 26521, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26571, + "token_id": 26522, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 26572, + "token_id": 26523, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26573, + "token_id": 26524, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "best", - "token_id": 26574, + "token_id": 26525, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26575, + "token_id": 26526, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "selling", - "token_id": 26576, + "token_id": 26527, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26577, + "token_id": 26528, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "video", - "token_id": 26578, + "token_id": 26529, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26579, + "token_id": 26530, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 26580, + "token_id": 26531, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26581, + "token_id": 26532, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "of", - "token_id": 26582, + "token_id": 26533, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26583, + "token_id": 26534, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26584, + "token_id": 26535, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26585, + "token_id": 26536, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "in", - "token_id": 26586, + "token_id": 26537, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26587, + "token_id": 26538, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "japan", - "token_id": 26588, + "token_id": 26539, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26589, + "token_id": 26540, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26590, + "token_id": 26541, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26591, + "token_id": 26542, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 26592, + "token_id": 26543, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26593, + "token_id": 26544, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 26594, + "token_id": 26545, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 26546, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 26547, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 26548, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ref", - "token_id": 26595, + "token_id": 26549, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 26550, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 26596, + "token_id": 26551, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "full", - "token_id": 26597, + "token_id": 26552, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "list", - "token_id": 26598, + "token_id": 26553, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 26554, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "last", - "token_id": 26599, + "token_id": 26555, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 26556, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "plant", - "token_id": 26600, + "token_id": 26557, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 26558, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "first", - "token_id": 26601, + "token_id": 26559, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "logan", - "token_id": 26602, + "str": "=", + "token_id": 26560, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "work", - "token_id": 26603, + "str": "logan", + "token_id": 26561, "o_rev_id": 1140535097, "in": [], "out": [] }, + { + "str": "|", + "token_id": 26562, + "o_rev_id": 1140535097, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "work", + "token_id": 26563, + "o_rev_id": 1140535097, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "=", + "token_id": 26564, + "o_rev_id": 1140535097, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "[[", + "token_id": 26565, + "o_rev_id": 1140535097, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, { "str": "ign", - "token_id": 26604, + "token_id": 26566, + "o_rev_id": 1140535097, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "]]", + "token_id": 26567, + "o_rev_id": 1140535097, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "|", + "token_id": 26568, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26605, + "token_id": 26569, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 26570, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "8", - "token_id": 26606, + "token_id": 26571, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "december", - "token_id": 26607, + "token_id": 26572, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26608, + "token_id": 26573, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 26574, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "access", - "token_id": 26609, + "token_id": 26575, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 26576, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26610, + "token_id": 26577, + "o_rev_id": 1140535097, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 26578, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "8", - "token_id": 26611, + "token_id": 26579, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "december", - "token_id": 26612, + "token_id": 26580, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26613, + "token_id": 26581, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26614, + "token_id": 26582, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26615, + "token_id": 26583, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26616, + "token_id": 26584, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26617, + "token_id": 26585, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26618, + "token_id": 26586, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "9", - "token_id": 26619, + "token_id": 26587, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "december", - "token_id": 26620, + "token_id": 26588, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26621, + "token_id": 26589, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26622, + "token_id": 26590, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26623, + "token_id": 26591, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26624, + "token_id": 26592, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26625, + "token_id": 26593, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26626, + "token_id": 26594, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26627, + "token_id": 26595, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26628, + "token_id": 26596, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26629, + "token_id": 26597, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26630, + "token_id": 26598, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26631, + "token_id": 26599, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26632, + "token_id": 26600, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26633, + "token_id": 26601, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26634, + "token_id": 26602, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 26635, + "token_id": 26603, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26636, + "token_id": 26604, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26637, + "token_id": 26605, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26638, + "token_id": 26606, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20221209041855", - "token_id": 26639, + "token_id": 26607, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26640, + "token_id": 26608, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26641, + "token_id": 26609, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26642, + "token_id": 26610, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26643, + "token_id": 26611, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26644, + "token_id": 26612, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 26645, + "token_id": 26613, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26646, + "token_id": 26614, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ign", - "token_id": 26647, + "token_id": 26615, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26648, + "token_id": 26616, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 26649, + "token_id": 26617, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26650, + "token_id": 26618, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "articles", - "token_id": 26651, + "token_id": 26619, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26652, + "token_id": 26620, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "the", - "token_id": 26653, + "token_id": 26621, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26654, + "token_id": 26622, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 26655, + "token_id": 26623, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26656, + "token_id": 26624, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "awards", - "token_id": 26657, + "token_id": 26625, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26658, + "token_id": 26626, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2022", - "token_id": 26659, + "token_id": 26627, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26660, + "token_id": 26628, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "winners", - "token_id": 26661, + "token_id": 26629, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26662, + "token_id": 26630, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26663, + "token_id": 26631, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26664, + "token_id": 26632, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 26665, + "token_id": 26633, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26666, + "token_id": 26634, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 26667, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "ref", - "token_id": 26668, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "last", - "token_id": 26669, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "bankhurst", - "token_id": 26670, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "first", - "token_id": 26671, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "adam", - "token_id": 26672, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "work", - "token_id": 26673, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "ign", - "token_id": 26674, - "o_rev_id": 1140535097, - "in": [], - "out": [] - }, - { - "str": "date", - "token_id": 26675, + "token_id": 26635, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "18", - "token_id": 26676, + "str": "}}", + "token_id": 26636, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "january", - "token_id": 26677, + "str": "<", + "token_id": 26637, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "2023", - "token_id": 26678, + "str": "/", + "token_id": 26638, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "access", - "token_id": 26679, + "str": "ref", + "token_id": 26639, "o_rev_id": 1140535097, "in": [], "out": [] }, { - "str": "date", - "token_id": 26680, + "str": ">", + "token_id": 26640, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26681, + "token_id": 26641, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26682, + "token_id": 26642, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26683, + "token_id": 26643, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "date", - "token_id": 26684, + "token_id": 26644, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26685, + "token_id": 26645, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "18", - "token_id": 26686, + "token_id": 26646, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "january", - "token_id": 26687, + "token_id": 26647, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2023", - "token_id": 26688, + "token_id": 26648, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26689, + "token_id": 26649, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26690, + "token_id": 26650, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26691, + "token_id": 26651, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26692, + "token_id": 26652, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26693, + "token_id": 26653, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26694, + "token_id": 26654, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26695, + "token_id": 26655, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26696, + "token_id": 26656, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26697, + "token_id": 26657, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26698, + "token_id": 26658, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26699, + "token_id": 26659, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "archive", - "token_id": 26700, + "token_id": 26660, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26701, + "token_id": 26661, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "org", - "token_id": 26702, + "token_id": 26662, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26703, + "token_id": 26663, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "web", - "token_id": 26704, + "token_id": 26664, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26705, + "token_id": 26665, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "20230118033959", - "token_id": 26706, + "token_id": 26666, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26707, + "token_id": 26667, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "https", - "token_id": 26708, + "token_id": 26668, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ":", - "token_id": 26709, + "token_id": 26669, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26710, + "token_id": 26670, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26711, + "token_id": 26671, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "www", - "token_id": 26712, + "token_id": 26672, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26713, + "token_id": 26673, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ign", - "token_id": 26714, + "token_id": 26674, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": ".", - "token_id": 26715, + "token_id": 26675, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "com", - "token_id": 26716, + "token_id": 26676, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26717, + "token_id": 26677, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "articles", - "token_id": 26718, + "token_id": 26678, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "/", - "token_id": 26719, + "token_id": 26679, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "new", - "token_id": 26720, + "token_id": 26680, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26721, + "token_id": 26681, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "york", - "token_id": 26722, + "token_id": 26682, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26723, + "token_id": 26683, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "game", - "token_id": 26724, + "token_id": 26684, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26725, + "token_id": 26685, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "awards", - "token_id": 26726, + "token_id": 26686, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26727, + "token_id": 26687, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "2023", - "token_id": 26728, + "token_id": 26688, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26729, + "token_id": 26689, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "elden", - "token_id": 26730, + "token_id": 26690, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26731, + "token_id": 26691, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "ring", - "token_id": 26732, + "token_id": 26692, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26733, + "token_id": 26693, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "wins", - "token_id": 26734, + "token_id": 26694, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26735, + "token_id": 26695, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "two", - "token_id": 26736, + "token_id": 26696, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26737, + "token_id": 26697, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "awards", - "token_id": 26738, + "token_id": 26698, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26739, + "token_id": 26699, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "as", - "token_id": 26740, + "token_id": 26700, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26741, + "token_id": 26701, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "phil", - "token_id": 26742, + "token_id": 26702, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26743, + "token_id": 26703, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "spencer", - "token_id": 26744, + "token_id": 26704, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26745, + "token_id": 26705, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "is", - "token_id": 26746, + "token_id": 26706, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26747, + "token_id": 26707, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "honored", - "token_id": 26748, + "token_id": 26708, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "|", - "token_id": 26749, + "token_id": 26709, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "url", - "token_id": 26750, + "token_id": 26710, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "-", - "token_id": 26751, + "token_id": 26711, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "status", - "token_id": 26752, + "token_id": 26712, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "=", - "token_id": 26753, + "token_id": 26713, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "live", - "token_id": 26754, + "token_id": 26714, "o_rev_id": 1140535097, "in": [], "out": [] }, { "str": "name", - "token_id": 26755, + "token_id": 26715, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "=", - "token_id": 26756, + "token_id": 26716, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "\"", - "token_id": 26757, + "token_id": 26717, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "auto", - "token_id": 26758, + "token_id": 26718, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "\"", - "token_id": 26759, + "token_id": 26719, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "name", - "token_id": 26760, + "token_id": 26720, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "=", - "token_id": 26761, + "token_id": 26721, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "\"", - "token_id": 26762, + "token_id": 26722, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "auto1", - "token_id": 26763, + "token_id": 26723, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "\"", - "token_id": 26764, + "token_id": 26724, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "name", - "token_id": 26765, + "token_id": 26725, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "=", - "token_id": 26766, + "token_id": 26726, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "\"", - "token_id": 26767, + "token_id": 26727, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "auto", - "token_id": 26768, + "token_id": 26728, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "\"", - "token_id": 26769, + "token_id": 26729, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "/", - "token_id": 26770, + "token_id": 26730, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "name", - "token_id": 26771, + "token_id": 26731, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "=", - "token_id": 26772, + "token_id": 26732, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "\"", - "token_id": 26773, + "token_id": 26733, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "auto1", - "token_id": 26774, + "token_id": 26734, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "\"", - "token_id": 26775, + "token_id": 26735, "o_rev_id": 1140535671, "in": [], "out": [] }, { "str": "also", - "token_id": 26776, + "token_id": 26736, "o_rev_id": 1140539003, "in": [], "out": [ @@ -231535,32 +231243,28 @@ }, { "str": "'", - "token_id": 26777, + "token_id": 26737, "o_rev_id": 1140552136, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26778, + "token_id": 26738, "o_rev_id": 1140552136, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "'", - "token_id": 26779, + "token_id": 26739, "o_rev_id": 1140552136, "in": [], "out": [] }, { "str": "all", - "token_id": 26780, + "token_id": 26740, "o_rev_id": 1140554677, "in": [], "out": [ @@ -231569,7 +231273,7 @@ }, { "str": "the", - "token_id": 26781, + "token_id": 26741, "o_rev_id": 1140554677, "in": [], "out": [ @@ -231578,14 +231282,14 @@ }, { "str": "time", - "token_id": 26782, + "token_id": 26742, "o_rev_id": 1140554677, "in": [], "out": [] }, { "str": "uses", - "token_id": 26783, + "token_id": 26743, "o_rev_id": 1140555728, "in": [ 1144952513, @@ -231598,7 +231302,7 @@ }, { "str": "inking", - "token_id": 26784, + "token_id": 26744, "o_rev_id": 1140759119, "in": [ 1140761800, @@ -231612,7 +231316,7 @@ }, { "str": "game", - "token_id": 26785, + "token_id": 26745, "o_rev_id": 1140994351, "in": [ 1229566085 @@ -231623,7 +231327,7 @@ }, { "str": "mode", - "token_id": 26786, + "token_id": 26746, "o_rev_id": 1140994351, "in": [ 1229566085 @@ -231634,7 +231338,7 @@ }, { "str": "<", - "token_id": 26787, + "token_id": 26747, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231645,7 +231349,7 @@ }, { "str": "ref", - "token_id": 26788, + "token_id": 26748, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231656,7 +231360,7 @@ }, { "str": ">", - "token_id": 26789, + "token_id": 26749, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231667,14 +231371,14 @@ }, { "str": "{{", - "token_id": 26790, + "token_id": 26750, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "cite", - "token_id": 26791, + "token_id": 26751, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231685,14 +231389,14 @@ }, { "str": "web", - "token_id": 26792, + "token_id": 26752, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "|", - "token_id": 26793, + "token_id": 26753, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231703,14 +231407,18 @@ }, { "str": "last", - "token_id": 26794, + "token_id": 26754, "o_rev_id": 1141241138, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 26795, + "token_id": 26755, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231721,14 +231429,14 @@ }, { "str": "dinsdale", - "token_id": 26796, + "token_id": 26756, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "|", - "token_id": 26797, + "token_id": 26757, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231739,7 +231447,7 @@ }, { "str": "first", - "token_id": 26798, + "token_id": 26758, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231750,7 +231458,7 @@ }, { "str": "=", - "token_id": 26799, + "token_id": 26759, "o_rev_id": 1141241138, "in": [ 1202097960 @@ -231761,42 +231469,42 @@ }, { "str": "ryan", - "token_id": 26800, + "token_id": 26760, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "|", - "token_id": 26801, + "token_id": 26761, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "date", - "token_id": 26802, + "token_id": 26762, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "=", - "token_id": 26803, + "token_id": 26763, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "2023", - "token_id": 26804, + "token_id": 26764, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26805, + "token_id": 26765, "o_rev_id": 1141241138, "in": [], "out": [ @@ -231805,7 +231513,7 @@ }, { "str": "02", - "token_id": 26806, + "token_id": 26766, "o_rev_id": 1141241138, "in": [], "out": [ @@ -231814,429 +231522,417 @@ }, { "str": "-", - "token_id": 26807, + "token_id": 26767, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "15", - "token_id": 26808, + "token_id": 26768, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "|", - "token_id": 26809, + "token_id": 26769, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "title", - "token_id": 26810, + "token_id": 26770, "o_rev_id": 1141241138, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "=", - "token_id": 26811, + "token_id": 26771, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26812, + "token_id": 26772, "o_rev_id": 1141241138, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "3", - "token_id": 26813, + "token_id": 26773, "o_rev_id": 1141241138, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "'", - "token_id": 26814, + "token_id": 26774, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "s", - "token_id": 26815, + "token_id": 26775, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "expansion", - "token_id": 26816, + "token_id": 26776, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "pass", - "token_id": 26817, + "token_id": 26777, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "wave", - "token_id": 26818, + "token_id": 26778, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "1", - "token_id": 26819, + "token_id": 26779, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "arrives", - "token_id": 26820, + "token_id": 26780, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "later", - "token_id": 26821, + "token_id": 26781, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "this", - "token_id": 26822, + "token_id": 26782, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "month", - "token_id": 26823, + "token_id": 26783, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "|", - "token_id": 26824, + "token_id": 26784, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "url", - "token_id": 26825, + "token_id": 26785, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "=", - "token_id": 26826, + "token_id": 26786, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "https", - "token_id": 26827, + "token_id": 26787, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": ":", - "token_id": 26828, + "token_id": 26788, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "/", - "token_id": 26829, + "token_id": 26789, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "/", - "token_id": 26830, + "token_id": 26790, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "www", - "token_id": 26831, + "token_id": 26791, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": ".", - "token_id": 26832, + "token_id": 26792, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "ign", - "token_id": 26833, + "token_id": 26793, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": ".", - "token_id": 26834, + "token_id": 26794, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "com", - "token_id": 26835, + "token_id": 26795, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "/", - "token_id": 26836, + "token_id": 26796, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "articles", - "token_id": 26837, + "token_id": 26797, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "/", - "token_id": 26838, + "token_id": 26798, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 26839, + "token_id": 26799, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26840, + "token_id": 26800, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "3s", - "token_id": 26841, + "token_id": 26801, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26842, + "token_id": 26802, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "expansion", - "token_id": 26843, + "token_id": 26803, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26844, + "token_id": 26804, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "pass", - "token_id": 26845, + "token_id": 26805, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26846, + "token_id": 26806, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "wave", - "token_id": 26847, + "token_id": 26807, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26848, + "token_id": 26808, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "1", - "token_id": 26849, + "token_id": 26809, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26850, + "token_id": 26810, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "arrives", - "token_id": 26851, + "token_id": 26811, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26852, + "token_id": 26812, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "later", - "token_id": 26853, + "token_id": 26813, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26854, + "token_id": 26814, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "this", - "token_id": 26855, + "token_id": 26815, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26856, + "token_id": 26816, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "month", - "token_id": 26857, + "token_id": 26817, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "|", - "token_id": 26858, + "token_id": 26818, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "access", - "token_id": 26859, + "token_id": 26819, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26860, + "token_id": 26820, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "date", - "token_id": 26861, + "token_id": 26821, "o_rev_id": 1141241138, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 26862, + "token_id": 26822, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "2023", - "token_id": 26863, + "token_id": 26823, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "-", - "token_id": 26864, + "token_id": 26824, "o_rev_id": 1141241138, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "02", - "token_id": 26865, + "token_id": 26825, "o_rev_id": 1141241138, "in": [], "out": [ @@ -232245,7 +231941,7 @@ }, { "str": "-", - "token_id": 26866, + "token_id": 26826, "o_rev_id": 1141241138, "in": [], "out": [ @@ -232254,70 +231950,70 @@ }, { "str": "24", - "token_id": 26867, + "token_id": 26827, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "|", - "token_id": 26868, + "token_id": 26828, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "website", - "token_id": 26869, + "token_id": 26829, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "=", - "token_id": 26870, + "token_id": 26830, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "ign", - "token_id": 26871, + "token_id": 26831, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "|", - "token_id": 26872, + "token_id": 26832, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "language", - "token_id": 26873, + "token_id": 26833, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "=", - "token_id": 26874, + "token_id": 26834, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "en", - "token_id": 26875, + "token_id": 26835, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "}}", - "token_id": 26876, + "token_id": 26836, "o_rev_id": 1141241138, "in": [], "out": [ @@ -232326,55 +232022,64 @@ }, { "str": "<", - "token_id": 26877, + "token_id": 26837, "o_rev_id": 1141241138, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1240817705 ] }, { "str": "/", - "token_id": 26878, + "token_id": 26838, "o_rev_id": 1141241138, "in": [], "out": [] }, { "str": "ref", - "token_id": 26879, + "token_id": 26839, "o_rev_id": 1141241138, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1240817705 ] }, { "str": ">", - "token_id": 26880, + "token_id": 26840, "o_rev_id": 1141241138, - "in": [], + "in": [ + 1202097960 + ], "out": [ + 1202071552, 1240817705 ] }, { "str": "[[", - "token_id": 26881, + "token_id": 26841, "o_rev_id": 1141435152, "in": [], "out": [] }, { "str": "]]", - "token_id": 26882, + "token_id": 26842, "o_rev_id": 1141435152, "in": [], "out": [] }, { "str": "[[", - "token_id": 26883, + "token_id": 26843, "o_rev_id": 1141450233, "in": [ 1178773007, @@ -232387,7 +232092,7 @@ }, { "str": "]]", - "token_id": 26884, + "token_id": 26844, "o_rev_id": 1141450233, "in": [ 1178773007, @@ -232400,28 +232105,28 @@ }, { "str": "combat", - "token_id": 26885, + "token_id": 26845, "o_rev_id": 1141450533, "in": [], "out": [] }, { "str": "based", - "token_id": 26886, + "token_id": 26846, "o_rev_id": 1141450533, "in": [], "out": [] }, { "str": "around", - "token_id": 26887, + "token_id": 26847, "o_rev_id": 1141450533, "in": [], "out": [] }, { "str": ".", - "token_id": 26888, + "token_id": 26848, "o_rev_id": 1141450690, "in": [ 1148919560, @@ -232434,7 +232139,7 @@ }, { "str": "it", - "token_id": 26889, + "token_id": 26849, "o_rev_id": 1141450690, "in": [ 1148919560 @@ -232446,7 +232151,7 @@ }, { "str": "weapons", - "token_id": 26890, + "token_id": 26850, "o_rev_id": 1141450918, "in": [ 1144952513, @@ -232459,7 +232164,7 @@ }, { "str": "which", - "token_id": 26891, + "token_id": 26851, "o_rev_id": 1141450918, "in": [ 1144952513, @@ -232472,7 +232177,7 @@ }, { "str": "resemble", - "token_id": 26892, + "token_id": 26852, "o_rev_id": 1141450918, "in": [ 1144952513, @@ -232485,7 +232190,7 @@ }, { "str": "a", - "token_id": 26893, + "token_id": 26853, "o_rev_id": 1141450918, "in": [ 1144952513, @@ -232498,7 +232203,7 @@ }, { "str": ",", - "token_id": 26894, + "token_id": 26854, "o_rev_id": 1141450918, "in": [ 1144952513, @@ -232511,7 +232216,7 @@ }, { "str": "and", - "token_id": 26895, + "token_id": 26855, "o_rev_id": 1141450918, "in": [ 1144952513, @@ -232524,7 +232229,7 @@ }, { "str": "have", - "token_id": 26896, + "token_id": 26856, "o_rev_id": 1141450918, "in": [ 1144952513, @@ -232537,7 +232242,7 @@ }, { "str": "main", - "token_id": 26897, + "token_id": 26857, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232548,7 +232253,7 @@ }, { "str": "weapons", - "token_id": 26898, + "token_id": 26858, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232559,7 +232264,7 @@ }, { "str": "are", - "token_id": 26899, + "token_id": 26859, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232570,7 +232275,7 @@ }, { "str": "able", - "token_id": 26900, + "token_id": 26860, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232582,7 +232287,7 @@ }, { "str": "to", - "token_id": 26901, + "token_id": 26861, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232594,7 +232299,7 @@ }, { "str": "be", - "token_id": 26902, + "token_id": 26862, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232606,7 +232311,7 @@ }, { "str": "chosen", - "token_id": 26903, + "token_id": 26863, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232617,7 +232322,7 @@ }, { "str": "by", - "token_id": 26904, + "token_id": 26864, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232628,7 +232333,7 @@ }, { "str": "the", - "token_id": 26905, + "token_id": 26865, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232639,7 +232344,7 @@ }, { "str": "player", - "token_id": 26906, + "token_id": 26866, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232650,7 +232355,7 @@ }, { "str": ",", - "token_id": 26907, + "token_id": 26867, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232661,7 +232366,7 @@ }, { "str": "while", - "token_id": 26908, + "token_id": 26868, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232673,7 +232378,7 @@ }, { "str": "special", - "token_id": 26909, + "token_id": 26869, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232684,7 +232389,7 @@ }, { "str": "weapons", - "token_id": 26910, + "token_id": 26870, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232695,7 +232400,7 @@ }, { "str": "are", - "token_id": 26911, + "token_id": 26871, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232707,7 +232412,7 @@ }, { "str": "assigned", - "token_id": 26912, + "token_id": 26872, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232719,7 +232424,7 @@ }, { "str": "to", - "token_id": 26913, + "token_id": 26873, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232731,7 +232436,7 @@ }, { "str": "specific", - "token_id": 26914, + "token_id": 26874, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232743,7 +232448,7 @@ }, { "str": "main", - "token_id": 26915, + "token_id": 26875, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232755,7 +232460,7 @@ }, { "str": "weapons", - "token_id": 26916, + "token_id": 26876, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232767,7 +232472,7 @@ }, { "str": "and", - "token_id": 26917, + "token_id": 26877, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232779,7 +232484,7 @@ }, { "str": "require", - "token_id": 26918, + "token_id": 26878, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232790,7 +232495,7 @@ }, { "str": "the", - "token_id": 26919, + "token_id": 26879, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232801,7 +232506,7 @@ }, { "str": "player", - "token_id": 26920, + "token_id": 26880, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232812,7 +232517,7 @@ }, { "str": "to", - "token_id": 26921, + "token_id": 26881, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232823,7 +232528,7 @@ }, { "str": "cover", - "token_id": 26922, + "token_id": 26882, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232834,7 +232539,7 @@ }, { "str": "the", - "token_id": 26923, + "token_id": 26883, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232845,7 +232550,7 @@ }, { "str": "ground", - "token_id": 26924, + "token_id": 26884, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232856,7 +232561,7 @@ }, { "str": "with", - "token_id": 26925, + "token_id": 26885, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232867,7 +232572,7 @@ }, { "str": "a", - "token_id": 26926, + "token_id": 26886, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232878,7 +232583,7 @@ }, { "str": "varying", - "token_id": 26927, + "token_id": 26887, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232889,7 +232594,7 @@ }, { "str": "amount", - "token_id": 26928, + "token_id": 26888, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232900,7 +232605,7 @@ }, { "str": "of", - "token_id": 26929, + "token_id": 26889, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232911,7 +232616,7 @@ }, { "str": "ink", - "token_id": 26930, + "token_id": 26890, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232922,7 +232627,7 @@ }, { "str": "in", - "token_id": 26931, + "token_id": 26891, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232933,7 +232638,7 @@ }, { "str": "order", - "token_id": 26932, + "token_id": 26892, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232944,7 +232649,7 @@ }, { "str": "to", - "token_id": 26933, + "token_id": 26893, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232955,7 +232660,7 @@ }, { "str": "charge", - "token_id": 26934, + "token_id": 26894, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232966,7 +232671,7 @@ }, { "str": "it", - "token_id": 26935, + "token_id": 26895, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232978,7 +232683,7 @@ }, { "str": "up", - "token_id": 26936, + "token_id": 26896, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -232989,7 +232694,7 @@ }, { "str": ".", - "token_id": 26937, + "token_id": 26897, "o_rev_id": 1141451898, "in": [ 1178773007 @@ -233000,49 +232705,49 @@ }, { "str": "turf", - "token_id": 26938, + "token_id": 26898, "o_rev_id": 1141452740, "in": [], "out": [] }, { "str": "war", - "token_id": 26939, + "token_id": 26899, "o_rev_id": 1141452740, "in": [], "out": [] }, { "str": "when", - "token_id": 26940, + "token_id": 26900, "o_rev_id": 1141452862, "in": [], "out": [] }, { "str": "walked", - "token_id": 26941, + "token_id": 26901, "o_rev_id": 1141452862, "in": [], "out": [] }, { "str": "on", - "token_id": 26942, + "token_id": 26902, "o_rev_id": 1141452862, "in": [], "out": [] }, { "str": ",", - "token_id": 26943, + "token_id": 26903, "o_rev_id": 1141452862, "in": [], "out": [] }, { "str": "the", - "token_id": 26944, + "token_id": 26904, "o_rev_id": 1141453547, "in": [ 1229566085 @@ -233053,77 +232758,77 @@ }, { "str": "the", - "token_id": 26945, + "token_id": 26905, "o_rev_id": 1141453818, "in": [], "out": [] }, { "str": "largest", - "token_id": 26946, + "token_id": 26906, "o_rev_id": 1141453818, "in": [], "out": [] }, { "str": "portion", - "token_id": 26947, + "token_id": 26907, "o_rev_id": 1141453818, "in": [], "out": [] }, { "str": "[[", - "token_id": 26948, + "token_id": 26908, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "glossary", - "token_id": 26949, + "token_id": 26909, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "of", - "token_id": 26950, + "token_id": 26910, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "video", - "token_id": 26951, + "token_id": 26911, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "games", - "token_id": 26952, + "token_id": 26912, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "#", - "token_id": 26953, + "token_id": 26913, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "checkpoint", - "token_id": 26954, + "token_id": 26914, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "|", - "token_id": 26955, + "token_id": 26915, "o_rev_id": 1141455323, "in": [ 1229566085 @@ -233134,7 +232839,7 @@ }, { "str": "checkpoint", - "token_id": 26956, + "token_id": 26916, "o_rev_id": 1141455323, "in": [ 1229566085 @@ -233145,231 +232850,231 @@ }, { "str": "]]", - "token_id": 26957, + "token_id": 26917, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "s", - "token_id": 26958, + "token_id": 26918, "o_rev_id": 1141455323, "in": [], "out": [] }, { "str": "a", - "token_id": 26959, + "token_id": 26919, "o_rev_id": 1141458236, "in": [], "out": [] }, { "str": "weapon", - "token_id": 26960, + "token_id": 26920, "o_rev_id": 1141458236, "in": [], "out": [] }, { "str": "called", - "token_id": 26961, + "token_id": 26921, "o_rev_id": 1141458236, "in": [], "out": [] }, { "str": "{{", - "token_id": 26962, + "token_id": 26922, "o_rev_id": 1141458599, "in": [], "out": [] }, { "str": "efn", - "token_id": 26963, + "token_id": 26923, "o_rev_id": 1141458599, "in": [], "out": [] }, { "str": "|", - "token_id": 26964, + "token_id": 26924, "o_rev_id": 1141458599, "in": [], "out": [] }, { "str": "alternatively", - "token_id": 26965, + "token_id": 26925, "o_rev_id": 1141458599, "in": [], "out": [] }, { "str": "}}", - "token_id": 26966, + "token_id": 26926, "o_rev_id": 1141458599, "in": [], "out": [] }, { "str": "rhys", - "token_id": 26967, + "token_id": 26927, "o_rev_id": 1141546675, "in": [], "out": [] }, { "str": "|", - "token_id": 26968, + "token_id": 26928, "o_rev_id": 1141547278, "in": [], "out": [] }, { "str": "last", - "token_id": 26969, + "token_id": 26929, "o_rev_id": 1141547278, "in": [], "out": [] }, { "str": "=", - "token_id": 26970, + "token_id": 26930, "o_rev_id": 1141547278, "in": [], "out": [] }, { "str": "epps", - "token_id": 26971, + "token_id": 26931, "o_rev_id": 1141547278, "in": [], "out": [] }, { "str": "|", - "token_id": 26972, + "token_id": 26932, "o_rev_id": 1141547278, "in": [], "out": [] }, { "str": "first", - "token_id": 26973, + "token_id": 26933, "o_rev_id": 1141547278, "in": [], "out": [] }, { "str": "=", - "token_id": 26974, + "token_id": 26934, "o_rev_id": 1141547278, "in": [], "out": [] }, { "str": "deangelo", - "token_id": 26975, + "token_id": 26935, "o_rev_id": 1141547278, "in": [], "out": [] }, { "str": "|", - "token_id": 26976, + "token_id": 26936, "o_rev_id": 1141548564, "in": [], "out": [] }, { "str": "url", - "token_id": 26977, + "token_id": 26937, "o_rev_id": 1141548564, "in": [], "out": [] }, { "str": "-", - "token_id": 26978, + "token_id": 26938, "o_rev_id": 1141548564, "in": [], "out": [] }, { "str": "access", - "token_id": 26979, + "token_id": 26939, "o_rev_id": 1141548564, "in": [], "out": [] }, { "str": "=", - "token_id": 26980, + "token_id": 26940, "o_rev_id": 1141548564, "in": [], "out": [] }, { "str": "subscription", - "token_id": 26981, + "token_id": 26941, "o_rev_id": 1141548564, "in": [], "out": [] }, { "str": "{{", - "token_id": 26982, + "token_id": 26942, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "cite", - "token_id": 26983, + "token_id": 26943, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "video", - "token_id": 26984, + "token_id": 26944, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "game", - "token_id": 26985, + "token_id": 26945, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "|", - "token_id": 26986, + "token_id": 26946, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "title", - "token_id": 26987, + "token_id": 26947, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "=", - "token_id": 26988, + "token_id": 26948, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "[[", - "token_id": 26989, + "token_id": 26949, "o_rev_id": 1141636643, "in": [], "out": [ @@ -233378,21 +233083,21 @@ }, { "str": "splatoon", - "token_id": 26990, + "token_id": 26950, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "3", - "token_id": 26991, + "token_id": 26951, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "]]", - "token_id": 26992, + "token_id": 26952, "o_rev_id": 1141636643, "in": [], "out": [ @@ -233401,773 +233106,742 @@ }, { "str": "|", - "token_id": 26993, + "token_id": 26953, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "developer", - "token_id": 26994, + "token_id": 26954, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "=", - "token_id": 26995, + "token_id": 26955, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 26996, + "token_id": 26956, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "epd", - "token_id": 26997, + "token_id": 26957, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "|", - "token_id": 26998, + "token_id": 26958, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "publish", - "token_id": 26999, + "token_id": 26959, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "=", - "token_id": 27000, + "token_id": 26960, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 27001, + "token_id": 26961, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "|", - "token_id": 27002, + "token_id": 26962, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "scene", - "token_id": 27003, + "token_id": 26963, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "=", - "token_id": 27004, + "token_id": 26964, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "staff", - "token_id": 27005, + "token_id": 26965, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "credits", - "token_id": 27006, + "token_id": 26966, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "|", - "token_id": 27007, + "token_id": 26967, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "date", - "token_id": 27008, + "token_id": 26968, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "=", - "token_id": 27009, + "token_id": 26969, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "25", - "token_id": 27010, + "token_id": 26970, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "february", - "token_id": 27011, + "token_id": 26971, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "2023", - "token_id": 27012, + "token_id": 26972, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "}}", - "token_id": 27013, + "token_id": 26973, "o_rev_id": 1141636643, "in": [], "out": [] }, { "str": "<", - "token_id": 27014, + "token_id": 26974, "o_rev_id": 1141636713, "in": [], "out": [] }, { "str": "ref", - "token_id": 27015, + "token_id": 26975, "o_rev_id": 1141636713, "in": [], "out": [] }, { "str": ">", - "token_id": 27016, + "token_id": 26976, "o_rev_id": 1141636713, "in": [], "out": [] }, { "str": "<", - "token_id": 27017, + "token_id": 26977, "o_rev_id": 1141636713, "in": [], "out": [] }, { "str": "/", - "token_id": 27018, + "token_id": 26978, "o_rev_id": 1141636713, "in": [], "out": [] }, { "str": "ref", - "token_id": 27019, + "token_id": 26979, "o_rev_id": 1141636713, "in": [], "out": [] }, { "str": ">", - "token_id": 27020, + "token_id": 26980, "o_rev_id": 1141636713, "in": [], "out": [] }, { "str": ",", - "token_id": 27021, + "token_id": 26981, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "as", - "token_id": 27022, + "token_id": 26982, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "well", - "token_id": 27023, + "token_id": 26983, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "as", - "token_id": 27024, + "token_id": 26984, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "[[", - "token_id": 27025, + "token_id": 26985, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "systems", - "token_id": 27026, + "token_id": 26986, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "research", - "token_id": 27027, + "token_id": 26987, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "&", - "token_id": 27028, + "token_id": 26988, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "development", - "token_id": 27029, + "token_id": 26989, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "|", - "token_id": 27030, + "token_id": 26990, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "srd", - "token_id": 27031, + "token_id": 26991, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "]]", - "token_id": 27032, + "token_id": 26992, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "and", - "token_id": 27033, + "token_id": 26993, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "[[", - "token_id": 27034, + "token_id": 26994, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "bandai", - "token_id": 27035, + "token_id": 26995, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "namco", - "token_id": 27036, + "token_id": 26996, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "studios", - "token_id": 27037, + "token_id": 26997, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "|", - "token_id": 27038, + "token_id": 26998, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "bandai", - "token_id": 27039, + "token_id": 26999, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "namco", - "token_id": 27040, + "token_id": 27000, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "studios", - "token_id": 27041, + "token_id": 27001, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "singapore", - "token_id": 27042, + "token_id": 27002, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "&", - "token_id": 27043, + "token_id": 27003, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "malaysia", - "token_id": 27044, + "token_id": 27004, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "]]", - "token_id": 27045, + "token_id": 27005, "o_rev_id": 1141637354, "in": [], "out": [] }, { "str": "name", - "token_id": 27046, + "token_id": 27006, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "=", - "token_id": 27047, + "token_id": 27007, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "\"", - "token_id": 27048, + "token_id": 27008, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "credits", - "token_id": 27049, + "token_id": 27009, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "\"", - "token_id": 27050, + "token_id": 27010, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "\"", - "token_id": 27051, + "token_id": 27011, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "/", - "token_id": 27052, + "token_id": 27012, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": ">", - "token_id": 27053, + "token_id": 27013, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "<", - "token_id": 27054, + "token_id": 27014, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "ref", - "token_id": 27055, + "token_id": 27015, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "name", - "token_id": 27056, + "token_id": 27016, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "=", - "token_id": 27057, + "token_id": 27017, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "\"", - "token_id": 27058, + "token_id": 27018, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "credits", - "token_id": 27059, + "token_id": 27019, "o_rev_id": 1141637585, "in": [], "out": [] }, { "str": "date", - "token_id": 27060, + "token_id": 27020, "o_rev_id": 1141644505, "in": [], "out": [] }, { "str": "=", - "token_id": 27061, + "token_id": 27021, "o_rev_id": 1141644505, "in": [], "out": [] }, { "str": "12", - "token_id": 27062, + "token_id": 27022, "o_rev_id": 1141644505, "in": [], "out": [] }, { "str": "september", - "token_id": 27063, + "token_id": 27023, "o_rev_id": 1141644505, "in": [], "out": [] }, { "str": "2022", - "token_id": 27064, + "token_id": 27024, "o_rev_id": 1141644505, "in": [], "out": [] }, { "str": "|", - "token_id": 27065, + "token_id": 27025, "o_rev_id": 1141644505, "in": [], "out": [] }, { "str": "[[", - "token_id": 27066, + "token_id": 27026, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 27067, + "token_id": 27027, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "#", - "token_id": 27068, + "token_id": 27028, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "splatfests", - "token_id": 27069, + "token_id": 27029, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "|", - "token_id": 27070, + "token_id": 27030, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "splatfests", - "token_id": 27071, + "token_id": 27031, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "]]", - "token_id": 27072, + "token_id": 27032, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": ",", - "token_id": 27073, + "token_id": 27033, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "|", - "token_id": 27074, + "token_id": 27034, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "url", - "token_id": 27075, + "token_id": 27035, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "-", - "token_id": 27076, + "token_id": 27036, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "status", - "token_id": 27077, + "token_id": 27037, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "=", - "token_id": 27078, + "token_id": 27038, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "live", - "token_id": 27079, + "token_id": 27039, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "|", - "token_id": 27080, + "token_id": 27040, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "archive", - "token_id": 27081, + "token_id": 27041, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "-", - "token_id": 27082, + "token_id": 27042, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "url", - "token_id": 27083, + "token_id": 27043, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "=", - "token_id": 27084, + "token_id": 27044, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "|", - "token_id": 27085, + "token_id": 27045, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "archive", - "token_id": 27086, + "token_id": 27046, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "-", - "token_id": 27087, + "token_id": 27047, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "date", - "token_id": 27088, + "token_id": 27048, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "=", - "token_id": 27089, + "token_id": 27049, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "11", - "token_id": 27090, + "token_id": 27050, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "october", - "token_id": 27091, + "token_id": 27051, "o_rev_id": 1141810947, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "2022", - "token_id": 27092, + "token_id": 27052, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "}}", - "token_id": 27093, + "token_id": 27053, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "<", - "token_id": 27094, + "token_id": 27054, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "/", - "token_id": 27095, + "token_id": 27055, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "ref", - "token_id": 27096, + "token_id": 27056, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": ">", - "token_id": 27097, + "token_id": 27057, "o_rev_id": 1141810947, "in": [], "out": [] }, - { - "str": "another", - "token_id": 27098, - "o_rev_id": 1141810947, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "player", - "token_id": 27099, - "o_rev_id": 1141810947, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "can", - "token_id": 27100, - "o_rev_id": 1141810947, - "in": [], - "out": [ - 1334188654 - ] - }, { "str": "revive", - "token_id": 27101, + "token_id": 27058, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234176,7 +233850,7 @@ }, { "str": "them", - "token_id": 27102, + "token_id": 27059, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234185,7 +233859,7 @@ }, { "str": "by", - "token_id": 27103, + "token_id": 27060, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234194,7 +233868,7 @@ }, { "str": "shooting", - "token_id": 27104, + "token_id": 27061, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234203,7 +233877,7 @@ }, { "str": "them", - "token_id": 27105, + "token_id": 27062, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234212,7 +233886,7 @@ }, { "str": "with", - "token_id": 27106, + "token_id": 27063, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234221,7 +233895,7 @@ }, { "str": "ink", - "token_id": 27107, + "token_id": 27064, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234230,7 +233904,7 @@ }, { "str": ".", - "token_id": 27108, + "token_id": 27065, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234239,14 +233913,14 @@ }, { "str": "oceanic", - "token_id": 27109, + "token_id": 27066, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "(", - "token_id": 27110, + "token_id": 27067, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234255,21 +233929,21 @@ }, { "str": "demo", - "token_id": 27111, + "token_id": 27068, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "splatfest", - "token_id": 27112, + "token_id": 27069, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": ")", - "token_id": 27113, + "token_id": 27070, "o_rev_id": 1141810947, "in": [], "out": [ @@ -234278,42 +233952,46 @@ }, { "str": ",", - "token_id": 27114, + "token_id": 27071, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "as", - "token_id": 27115, + "token_id": 27072, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "opposed", - "token_id": 27116, + "token_id": 27073, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "to", - "token_id": 27117, + "token_id": 27074, "o_rev_id": 1141810947, "in": [], "out": [] }, { "str": "date", - "token_id": 27118, + "token_id": 27075, "o_rev_id": 1141911721, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 27119, + "token_id": 27076, "o_rev_id": 1141911721, "in": [ 1202097960 @@ -234324,21 +234002,21 @@ }, { "str": "september", - "token_id": 27120, + "token_id": 27077, "o_rev_id": 1141911721, "in": [], "out": [] }, { "str": "12", - "token_id": 27121, + "token_id": 27078, "o_rev_id": 1141911721, "in": [], "out": [] }, { "str": ",", - "token_id": 27122, + "token_id": 27079, "o_rev_id": 1141911721, "in": [], "out": [ @@ -234347,21 +234025,21 @@ }, { "str": "2022", - "token_id": 27123, + "token_id": 27080, "o_rev_id": 1141911721, "in": [], "out": [] }, { "str": "|", - "token_id": 27124, + "token_id": 27081, "o_rev_id": 1141911721, "in": [], "out": [] }, { "str": "the", - "token_id": 27125, + "token_id": 27082, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234370,7 +234048,7 @@ }, { "str": "game", - "token_id": 27126, + "token_id": 27083, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234379,7 +234057,7 @@ }, { "str": "'", - "token_id": 27127, + "token_id": 27084, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234388,7 +234066,7 @@ }, { "str": "s", - "token_id": 27128, + "token_id": 27085, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234397,7 +234075,7 @@ }, { "str": "version", - "token_id": 27129, + "token_id": 27086, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234406,7 +234084,7 @@ }, { "str": "of", - "token_id": 27130, + "token_id": 27087, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234415,7 +234093,7 @@ }, { "str": "getting", - "token_id": 27131, + "token_id": 27088, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234424,7 +234102,7 @@ }, { "str": "killed", - "token_id": 27132, + "token_id": 27089, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234433,7 +234111,7 @@ }, { "str": ",", - "token_id": 27133, + "token_id": 27090, "o_rev_id": 1141912281, "in": [], "out": [ @@ -234442,158 +234120,140 @@ }, { "str": "at", - "token_id": 27134, + "token_id": 27091, "o_rev_id": 1141913039, "in": [], "out": [] }, { "str": "any", - "token_id": 27135, + "token_id": 27092, "o_rev_id": 1141913039, "in": [], "out": [] }, { "str": "occurs", - "token_id": 27136, + "token_id": 27093, "o_rev_id": 1141913108, "in": [], "out": [] }, { "str": ",", - "token_id": 27137, + "token_id": 27094, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "an", - "token_id": 27138, + "token_id": 27095, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "ink", - "token_id": 27139, + "token_id": 27096, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "-", - "token_id": 27140, + "token_id": 27097, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "like", - "token_id": 27141, + "token_id": 27098, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "substance", - "token_id": 27142, + "token_id": 27099, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "mostly", - "token_id": 27143, + "token_id": 27100, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "covered", - "token_id": 27144, + "token_id": 27101, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "in", - "token_id": 27145, + "token_id": 27102, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "brown", - "token_id": 27146, + "token_id": 27103, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "fur", - "token_id": 27147, + "token_id": 27104, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": ",", - "token_id": 27148, + "token_id": 27105, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "is", - "token_id": 27149, + "token_id": 27106, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "along", - "token_id": 27150, + "token_id": 27107, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "with", - "token_id": 27151, + "token_id": 27108, "o_rev_id": 1141913882, "in": [], "out": [] }, - { - "str": "little", - "token_id": 27152, - "o_rev_id": 1141913882, - "in": [], - "out": [ - 1203947758 - ] - }, - { - "str": "buddy", - "token_id": 27153, - "o_rev_id": 1141913882, - "in": [], - "out": [ - 1203947758 - ] - }, { "str": "by", - "token_id": 27154, + "token_id": 27109, "o_rev_id": 1141913882, "in": [], "out": [] }, { "str": "using", - "token_id": 27155, + "token_id": 27110, "o_rev_id": 1141913882, "in": [], "out": [ @@ -234602,21 +234262,21 @@ }, { "str": "cutting", - "token_id": 27156, + "token_id": 27111, "o_rev_id": 1141915862, "in": [], "out": [] }, { "str": "reaching", - "token_id": 27157, + "token_id": 27112, "o_rev_id": 1141928824, "in": [], "out": [] }, { "str": ",", - "token_id": 27158, + "token_id": 27113, "o_rev_id": 1141929489, "in": [ 1154926670 @@ -234627,7 +234287,7 @@ }, { "str": "defeats", - "token_id": 27159, + "token_id": 27114, "o_rev_id": 1141929489, "in": [ 1154926670 @@ -234638,35 +234298,35 @@ }, { "str": "mr", - "token_id": 27160, + "token_id": 27115, "o_rev_id": 1141929489, "in": [], "out": [] }, { "str": ".", - "token_id": 27161, + "token_id": 27116, "o_rev_id": 1141929489, "in": [], "out": [] }, { "str": "grizz", - "token_id": 27162, + "token_id": 27117, "o_rev_id": 1141929489, "in": [], "out": [] }, { "str": "and", - "token_id": 27163, + "token_id": 27118, "o_rev_id": 1141929489, "in": [], "out": [] }, { "str": "destroys", - "token_id": 27164, + "token_id": 27119, "o_rev_id": 1141929489, "in": [ 1154926670 @@ -234677,28 +234337,28 @@ }, { "str": "rocket", - "token_id": 27165, + "token_id": 27120, "o_rev_id": 1141929489, "in": [], "out": [] }, { "str": "[[", - "token_id": 27166, + "token_id": 27121, "o_rev_id": 1141930971, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 27167, + "token_id": 27122, "o_rev_id": 1141930971, "in": [], "out": [] }, { "str": "direct", - "token_id": 27168, + "token_id": 27123, "o_rev_id": 1141930971, "in": [ 1202097960 @@ -234709,7 +234369,7 @@ }, { "str": "|", - "token_id": 27169, + "token_id": 27124, "o_rev_id": 1141930971, "in": [ 1216768014 @@ -234720,21 +234380,21 @@ }, { "str": "]]", - "token_id": 27170, + "token_id": 27125, "o_rev_id": 1141930971, "in": [], "out": [] }, { "str": "worth", - "token_id": 27171, + "token_id": 27126, "o_rev_id": 1141930971, "in": [], "out": [] }, { "str": "(", - "token_id": 27172, + "token_id": 27127, "o_rev_id": 1141930971, "in": [], "out": [ @@ -234743,14 +234403,14 @@ }, { "str": "dlc", - "token_id": 27173, + "token_id": 27128, "o_rev_id": 1141930971, "in": [], "out": [] }, { "str": ")", - "token_id": 27174, + "token_id": 27129, "o_rev_id": 1141930971, "in": [], "out": [ @@ -234759,91 +234419,91 @@ }, { "str": "in", - "token_id": 27175, + "token_id": 27130, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "its", - "token_id": 27176, + "token_id": 27131, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "channel", - "token_id": 27177, + "token_id": 27132, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "of", - "token_id": 27178, + "token_id": 27133, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "9", - "token_id": 27179, + "token_id": 27134, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "september", - "token_id": 27180, + "token_id": 27135, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "2022", - "token_id": 27181, + "token_id": 27136, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": ",", - "token_id": 27182, + "token_id": 27137, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "a", - "token_id": 27183, + "token_id": 27138, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "limited", - "token_id": 27184, + "token_id": 27139, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "time", - "token_id": 27185, + "token_id": 27140, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "and", - "token_id": 27186, + "token_id": 27141, "o_rev_id": 1141932326, "in": [], "out": [] }, { "str": "the", - "token_id": 27187, + "token_id": 27142, "o_rev_id": 1141932977, "in": [], "out": [ @@ -234852,7 +234512,7 @@ }, { "str": "third", - "token_id": 27188, + "token_id": 27143, "o_rev_id": 1141932977, "in": [], "out": [ @@ -234861,7 +234521,7 @@ }, { "str": "installment", - "token_id": 27189, + "token_id": 27144, "o_rev_id": 1141932977, "in": [], "out": [ @@ -234870,56 +234530,56 @@ }, { "str": "had", - "token_id": 27190, + "token_id": 27145, "o_rev_id": 1141932977, "in": [], "out": [] }, { "str": "percent", - "token_id": 27191, + "token_id": 27146, "o_rev_id": 1141932977, "in": [], "out": [] }, { "str": "{{", - "token_id": 27192, + "token_id": 27147, "o_rev_id": 1141940611, "in": [], "out": [] }, { "str": "good", - "token_id": 27193, + "token_id": 27148, "o_rev_id": 1141940611, "in": [], "out": [] }, { "str": "article", - "token_id": 27194, + "token_id": 27149, "o_rev_id": 1141940611, "in": [], "out": [] }, { "str": "}}", - "token_id": 27195, + "token_id": 27150, "o_rev_id": 1141940611, "in": [], "out": [] }, { "str": "becoming", - "token_id": 27196, + "token_id": 27151, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27197, + "token_id": 27152, "o_rev_id": 1142020922, "in": [], "out": [ @@ -234928,317 +234588,301 @@ }, { "str": "at", - "token_id": 27198, + "token_id": 27153, "o_rev_id": 1142020922, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "the", - "token_id": 27199, + "token_id": 27154, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "time", - "token_id": 27200, + "token_id": 27155, "o_rev_id": 1142020922, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "{{", - "token_id": 27201, + "token_id": 27156, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "efn", - "token_id": 27202, + "token_id": 27157, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27203, + "token_id": 27158, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27204, + "token_id": 27159, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27205, + "token_id": 27160, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 27206, + "token_id": 27161, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "3", - "token_id": 27207, + "token_id": 27162, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27208, + "token_id": 27163, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27209, + "token_id": 27164, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "was", - "token_id": 27210, + "token_id": 27165, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "surpassed", - "token_id": 27211, + "token_id": 27166, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "as", - "token_id": 27212, + "token_id": 27167, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "the", - "token_id": 27213, + "token_id": 27168, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "fastest", - "token_id": 27214, + "token_id": 27169, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27215, + "token_id": 27170, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "selling", - "token_id": 27216, + "token_id": 27171, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "game", - "token_id": 27217, + "token_id": 27172, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "in", - "token_id": 27218, + "token_id": 27173, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "japan", - "token_id": 27219, + "token_id": 27174, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "by", - "token_id": 27220, + "token_id": 27175, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "[[", - "token_id": 27221, + "token_id": 27176, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "pokémon", - "token_id": 27222, + "token_id": 27177, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "scarlet", - "token_id": 27223, + "token_id": 27178, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "and", - "token_id": 27224, + "token_id": 27179, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "violet", - "token_id": 27225, + "token_id": 27180, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27226, + "token_id": 27181, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27227, + "token_id": 27182, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27228, + "token_id": 27183, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "pokémon", - "token_id": 27229, + "token_id": 27184, "o_rev_id": 1142020922, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "scarlet", - "token_id": 27230, + "token_id": 27185, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27231, + "token_id": 27186, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27232, + "token_id": 27187, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "and", - "token_id": 27233, + "token_id": 27188, "o_rev_id": 1142020922, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "'", - "token_id": 27234, + "token_id": 27189, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27235, + "token_id": 27190, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "violet", - "token_id": 27236, + "token_id": 27191, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27237, + "token_id": 27192, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "'", - "token_id": 27238, + "token_id": 27193, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "]]", - "token_id": 27239, + "token_id": 27194, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "in", - "token_id": 27240, + "token_id": 27195, "o_rev_id": 1142020922, "in": [ 1202097960 @@ -235249,21 +234893,21 @@ }, { "str": "november", - "token_id": 27241, + "token_id": 27196, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "2022", - "token_id": 27242, + "token_id": 27197, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ".", - "token_id": 27243, + "token_id": 27198, "o_rev_id": 1142020922, "in": [ 1202097960 @@ -235274,133 +234918,137 @@ }, { "str": "<", - "token_id": 27244, + "token_id": 27199, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "ref", - "token_id": 27245, + "token_id": 27200, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ">", - "token_id": 27246, + "token_id": 27201, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "{{", - "token_id": 27247, + "token_id": 27202, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "cite", - "token_id": 27248, + "token_id": 27203, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "web", - "token_id": 27249, + "token_id": 27204, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27250, + "token_id": 27205, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "last", - "token_id": 27251, + "token_id": 27206, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27252, + "token_id": 27207, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "doolan", - "token_id": 27253, + "token_id": 27208, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27254, + "token_id": 27209, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "first", - "token_id": 27255, + "token_id": 27210, "o_rev_id": 1142020922, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "=", - "token_id": 27256, + "token_id": 27211, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "liam", - "token_id": 27257, + "token_id": 27212, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27258, + "token_id": 27213, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "date", - "token_id": 27259, + "token_id": 27214, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27260, + "token_id": 27215, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "2022", - "token_id": 27261, + "token_id": 27216, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27262, + "token_id": 27217, "o_rev_id": 1142020922, "in": [], "out": [ @@ -235409,7 +235057,7 @@ }, { "str": "11", - "token_id": 27263, + "token_id": 27218, "o_rev_id": 1142020922, "in": [], "out": [ @@ -235418,7 +235066,7 @@ }, { "str": "-", - "token_id": 27264, + "token_id": 27219, "o_rev_id": 1142020922, "in": [], "out": [ @@ -235427,558 +235075,546 @@ }, { "str": "24", - "token_id": 27265, + "token_id": 27220, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27266, + "token_id": 27221, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "title", - "token_id": 27267, + "token_id": 27222, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27268, + "token_id": 27223, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "pokémon", - "token_id": 27269, + "token_id": 27224, "o_rev_id": 1142020922, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "scarlet", - "token_id": 27270, + "token_id": 27225, "o_rev_id": 1142020922, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "&", - "token_id": 27271, + "token_id": 27226, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "violet", - "token_id": 27272, + "token_id": 27227, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "surpass", - "token_id": 27273, + "token_id": 27228, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "10", - "token_id": 27274, + "token_id": 27229, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "million", - "token_id": 27275, + "token_id": 27230, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "sales", - "token_id": 27276, + "token_id": 27231, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "in", - "token_id": 27277, + "token_id": 27232, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "first", - "token_id": 27278, + "token_id": 27233, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "three", - "token_id": 27279, + "token_id": 27234, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "days", - "token_id": 27280, + "token_id": 27235, "o_rev_id": 1142020922, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": ",", - "token_id": 27281, + "token_id": 27236, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "setting", - "token_id": 27282, + "token_id": 27237, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "new", - "token_id": 27283, + "token_id": 27238, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 27284, + "token_id": 27239, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "record", - "token_id": 27285, + "token_id": 27240, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27286, + "token_id": 27241, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "url", - "token_id": 27287, + "token_id": 27242, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27288, + "token_id": 27243, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "https", - "token_id": 27289, + "token_id": 27244, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ":", - "token_id": 27290, + "token_id": 27245, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27291, + "token_id": 27246, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27292, + "token_id": 27247, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "www", - "token_id": 27293, + "token_id": 27248, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ".", - "token_id": 27294, + "token_id": 27249, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 27295, + "token_id": 27250, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ".", - "token_id": 27296, + "token_id": 27251, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "com", - "token_id": 27297, + "token_id": 27252, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27298, + "token_id": 27253, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "news", - "token_id": 27299, + "token_id": 27254, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27300, + "token_id": 27255, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "2022", - "token_id": 27301, + "token_id": 27256, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27302, + "token_id": 27257, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "11", - "token_id": 27303, + "token_id": 27258, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27304, + "token_id": 27259, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "pokemon", - "token_id": 27305, + "token_id": 27260, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27306, + "token_id": 27261, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "scarlet", - "token_id": 27307, + "token_id": 27262, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27308, + "token_id": 27263, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "and", - "token_id": 27309, + "token_id": 27264, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27310, + "token_id": 27265, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "violet", - "token_id": 27311, + "token_id": 27266, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27312, + "token_id": 27267, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "surpass", - "token_id": 27313, + "token_id": 27268, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27314, + "token_id": 27269, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "10", - "token_id": 27315, + "token_id": 27270, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27316, + "token_id": 27271, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "million", - "token_id": 27317, + "token_id": 27272, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27318, + "token_id": 27273, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "sales", - "token_id": 27319, + "token_id": 27274, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27320, + "token_id": 27275, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "in", - "token_id": 27321, + "token_id": 27276, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27322, + "token_id": 27277, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "first", - "token_id": 27323, + "token_id": 27278, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27324, + "token_id": 27279, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "three", - "token_id": 27325, + "token_id": 27280, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27326, + "token_id": 27281, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "days", - "token_id": 27327, + "token_id": 27282, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27328, + "token_id": 27283, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "setting", - "token_id": 27329, + "token_id": 27284, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27330, + "token_id": 27285, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "new", - "token_id": 27331, + "token_id": 27286, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27332, + "token_id": 27287, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 27333, + "token_id": 27288, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27334, + "token_id": 27289, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "record", - "token_id": 27335, + "token_id": 27290, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27336, + "token_id": 27291, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "access", - "token_id": 27337, + "token_id": 27292, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27338, + "token_id": 27293, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "date", - "token_id": 27339, + "token_id": 27294, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27340, + "token_id": 27295, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "2023", - "token_id": 27341, + "token_id": 27296, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27342, + "token_id": 27297, "o_rev_id": 1142020922, "in": [], "out": [ @@ -235987,7 +235623,7 @@ }, { "str": "02", - "token_id": 27343, + "token_id": 27298, "o_rev_id": 1142020922, "in": [], "out": [ @@ -235996,49 +235632,49 @@ }, { "str": "-", - "token_id": 27344, + "token_id": 27299, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "28", - "token_id": 27345, + "token_id": 27300, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27346, + "token_id": 27301, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "website", - "token_id": 27347, + "token_id": 27302, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27348, + "token_id": 27303, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "[[", - "token_id": 27349, + "token_id": 27304, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 27350, + "token_id": 27305, "o_rev_id": 1142020922, "in": [ 1202097960 @@ -236049,7 +235685,7 @@ }, { "str": "life", - "token_id": 27351, + "token_id": 27306, "o_rev_id": 1142020922, "in": [ 1202097960 @@ -236060,109 +235696,105 @@ }, { "str": "]]", - "token_id": 27352, + "token_id": 27307, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27353, + "token_id": 27308, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "publisher", - "token_id": 27354, + "token_id": 27309, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27355, + "token_id": 27310, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "[[", - "token_id": 27356, + "token_id": 27311, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "hookshot", - "token_id": 27357, + "token_id": 27312, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "media", - "token_id": 27358, + "token_id": 27313, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "]]", - "token_id": 27359, + "token_id": 27314, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27360, + "token_id": 27315, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "archive", - "token_id": 27361, + "token_id": 27316, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27362, + "token_id": 27317, "o_rev_id": 1142020922, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "date", - "token_id": 27363, + "token_id": 27318, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27364, + "token_id": 27319, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "2022", - "token_id": 27365, + "token_id": 27320, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27366, + "token_id": 27321, "o_rev_id": 1142020922, "in": [], "out": [ @@ -236171,7 +235803,7 @@ }, { "str": "11", - "token_id": 27367, + "token_id": 27322, "o_rev_id": 1142020922, "in": [], "out": [ @@ -236180,7 +235812,7 @@ }, { "str": "-", - "token_id": 27368, + "token_id": 27323, "o_rev_id": 1142020922, "in": [], "out": [ @@ -236189,28 +235821,28 @@ }, { "str": "24", - "token_id": 27369, + "token_id": 27324, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "|", - "token_id": 27370, + "token_id": 27325, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "archive", - "token_id": 27371, + "token_id": 27326, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27372, + "token_id": 27327, "o_rev_id": 1142020922, "in": [], "out": [ @@ -236219,455 +235851,455 @@ }, { "str": "url", - "token_id": 27373, + "token_id": 27328, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "=", - "token_id": 27374, + "token_id": 27329, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "https", - "token_id": 27375, + "token_id": 27330, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ":", - "token_id": 27376, + "token_id": 27331, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27377, + "token_id": 27332, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27378, + "token_id": 27333, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "web", - "token_id": 27379, + "token_id": 27334, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ".", - "token_id": 27380, + "token_id": 27335, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "archive", - "token_id": 27381, + "token_id": 27336, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ".", - "token_id": 27382, + "token_id": 27337, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "org", - "token_id": 27383, + "token_id": 27338, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27384, + "token_id": 27339, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "web", - "token_id": 27385, + "token_id": 27340, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27386, + "token_id": 27341, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "20221124010630", - "token_id": 27387, + "token_id": 27342, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27388, + "token_id": 27343, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "https", - "token_id": 27389, + "token_id": 27344, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ":", - "token_id": 27390, + "token_id": 27345, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27391, + "token_id": 27346, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27392, + "token_id": 27347, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "www", - "token_id": 27393, + "token_id": 27348, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ".", - "token_id": 27394, + "token_id": 27349, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 27395, + "token_id": 27350, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": ".", - "token_id": 27396, + "token_id": 27351, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "com", - "token_id": 27397, + "token_id": 27352, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27398, + "token_id": 27353, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "news", - "token_id": 27399, + "token_id": 27354, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27400, + "token_id": 27355, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "2022", - "token_id": 27401, + "token_id": 27356, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27402, + "token_id": 27357, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "11", - "token_id": 27403, + "token_id": 27358, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "/", - "token_id": 27404, + "token_id": 27359, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "pokemon", - "token_id": 27405, + "token_id": 27360, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27406, + "token_id": 27361, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "scarlet", - "token_id": 27407, + "token_id": 27362, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27408, + "token_id": 27363, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "and", - "token_id": 27409, + "token_id": 27364, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27410, + "token_id": 27365, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "violet", - "token_id": 27411, + "token_id": 27366, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27412, + "token_id": 27367, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "surpass", - "token_id": 27413, + "token_id": 27368, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27414, + "token_id": 27369, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "10", - "token_id": 27415, + "token_id": 27370, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27416, + "token_id": 27371, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "million", - "token_id": 27417, + "token_id": 27372, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27418, + "token_id": 27373, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "sales", - "token_id": 27419, + "token_id": 27374, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27420, + "token_id": 27375, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "in", - "token_id": 27421, + "token_id": 27376, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27422, + "token_id": 27377, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "first", - "token_id": 27423, + "token_id": 27378, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27424, + "token_id": 27379, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "three", - "token_id": 27425, + "token_id": 27380, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27426, + "token_id": 27381, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "days", - "token_id": 27427, + "token_id": 27382, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27428, + "token_id": 27383, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "setting", - "token_id": 27429, + "token_id": 27384, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27430, + "token_id": 27385, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "new", - "token_id": 27431, + "token_id": 27386, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27432, + "token_id": 27387, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 27433, + "token_id": 27388, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "-", - "token_id": 27434, + "token_id": 27389, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "record", - "token_id": 27435, + "token_id": 27390, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "}}", - "token_id": 27436, + "token_id": 27391, "o_rev_id": 1142020922, "in": [], "out": [] }, { "str": "alternatively", - "token_id": 27437, + "token_id": 27392, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236676,7 +236308,7 @@ }, { "str": ",", - "token_id": 27438, + "token_id": 27393, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236685,7 +236317,7 @@ }, { "str": "if", - "token_id": 27439, + "token_id": 27394, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236694,7 +236326,7 @@ }, { "str": "mr", - "token_id": 27440, + "token_id": 27395, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236703,7 +236335,7 @@ }, { "str": ".", - "token_id": 27441, + "token_id": 27396, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236712,7 +236344,7 @@ }, { "str": "grizz", - "token_id": 27442, + "token_id": 27397, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236721,7 +236353,7 @@ }, { "str": "and", - "token_id": 27443, + "token_id": 27398, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236730,7 +236362,7 @@ }, { "str": "the", - "token_id": 27444, + "token_id": 27399, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236739,7 +236371,7 @@ }, { "str": "rocket", - "token_id": 27445, + "token_id": 27400, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236748,7 +236380,7 @@ }, { "str": "are", - "token_id": 27446, + "token_id": 27401, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236757,7 +236389,7 @@ }, { "str": "not", - "token_id": 27447, + "token_id": 27402, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236766,7 +236398,7 @@ }, { "str": "destroyed", - "token_id": 27448, + "token_id": 27403, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236775,7 +236407,7 @@ }, { "str": "in", - "token_id": 27449, + "token_id": 27404, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236784,7 +236416,7 @@ }, { "str": "time", - "token_id": 27450, + "token_id": 27405, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236793,7 +236425,7 @@ }, { "str": ",", - "token_id": 27451, + "token_id": 27406, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236802,7 +236434,7 @@ }, { "str": "mr", - "token_id": 27452, + "token_id": 27407, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236811,7 +236443,7 @@ }, { "str": ".", - "token_id": 27453, + "token_id": 27408, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236820,7 +236452,7 @@ }, { "str": "grizz", - "token_id": 27454, + "token_id": 27409, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236829,7 +236461,7 @@ }, { "str": "will", - "token_id": 27455, + "token_id": 27410, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236838,7 +236470,7 @@ }, { "str": "succeed", - "token_id": 27456, + "token_id": 27411, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236847,7 +236479,7 @@ }, { "str": "in", - "token_id": 27457, + "token_id": 27412, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236856,7 +236488,7 @@ }, { "str": "reviving", - "token_id": 27458, + "token_id": 27413, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236865,7 +236497,7 @@ }, { "str": "mammalian", - "token_id": 27459, + "token_id": 27414, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236874,7 +236506,7 @@ }, { "str": "life", - "token_id": 27460, + "token_id": 27415, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236883,7 +236515,7 @@ }, { "str": ",", - "token_id": 27461, + "token_id": 27416, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236892,7 +236524,7 @@ }, { "str": "ending", - "token_id": 27462, + "token_id": 27417, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236901,7 +236533,7 @@ }, { "str": "in", - "token_id": 27463, + "token_id": 27418, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236910,7 +236542,7 @@ }, { "str": "a", - "token_id": 27464, + "token_id": 27419, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236919,7 +236551,7 @@ }, { "str": "game", - "token_id": 27465, + "token_id": 27420, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236928,7 +236560,7 @@ }, { "str": "over", - "token_id": 27466, + "token_id": 27421, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236937,7 +236569,7 @@ }, { "str": ",", - "token_id": 27467, + "token_id": 27422, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236946,7 +236578,7 @@ }, { "str": "prompting", - "token_id": 27468, + "token_id": 27423, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236955,7 +236587,7 @@ }, { "str": "the", - "token_id": 27469, + "token_id": 27424, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236964,7 +236596,7 @@ }, { "str": "player", - "token_id": 27470, + "token_id": 27425, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236973,7 +236605,7 @@ }, { "str": "to", - "token_id": 27471, + "token_id": 27426, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236982,7 +236614,7 @@ }, { "str": "try", - "token_id": 27472, + "token_id": 27427, "o_rev_id": 1142319756, "in": [], "out": [ @@ -236991,7 +236623,7 @@ }, { "str": "again", - "token_id": 27473, + "token_id": 27428, "o_rev_id": 1142319756, "in": [], "out": [ @@ -237000,7 +236632,7 @@ }, { "str": ".", - "token_id": 27474, + "token_id": 27429, "o_rev_id": 1142319756, "in": [], "out": [ @@ -237009,21 +236641,21 @@ }, { "str": "rowspan", - "token_id": 27475, + "token_id": 27430, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "=", - "token_id": 27476, + "token_id": 27431, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "2", - "token_id": 27477, + "token_id": 27432, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237032,70 +236664,70 @@ }, { "str": "|", - "token_id": 27478, + "token_id": 27433, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "-", - "token_id": 27479, + "token_id": 27434, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27480, + "token_id": 27435, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "[[", - "token_id": 27481, + "token_id": 27436, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "19th", - "token_id": 27482, + "token_id": 27437, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "british", - "token_id": 27483, + "token_id": 27438, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "academy", - "token_id": 27484, + "token_id": 27439, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "games", - "token_id": 27485, + "token_id": 27440, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "awards", - "token_id": 27486, + "token_id": 27441, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27487, + "token_id": 27442, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237104,7 +236736,7 @@ }, { "str": "british", - "token_id": 27488, + "token_id": 27443, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237113,7 +236745,7 @@ }, { "str": "academy", - "token_id": 27489, + "token_id": 27444, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237122,21 +236754,21 @@ }, { "str": "games", - "token_id": 27490, + "token_id": 27445, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "awards", - "token_id": 27491, + "token_id": 27446, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "]]", - "token_id": 27492, + "token_id": 27447, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237145,91 +236777,91 @@ }, { "str": "|", - "token_id": 27493, + "token_id": 27448, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "[[", - "token_id": 27494, + "token_id": 27449, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "british", - "token_id": 27495, + "token_id": 27450, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "academy", - "token_id": 27496, + "token_id": 27451, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "games", - "token_id": 27497, + "token_id": 27452, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "award", - "token_id": 27498, + "token_id": 27453, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "for", - "token_id": 27499, + "token_id": 27454, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 27500, + "token_id": 27455, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27501, + "token_id": 27456, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 27502, + "token_id": 27457, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "]]", - "token_id": 27503, + "token_id": 27458, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27504, + "token_id": 27459, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "{{", - "token_id": 27505, + "token_id": 27460, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237238,7 +236870,7 @@ }, { "str": "pending", - "token_id": 27506, + "token_id": 27461, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237247,7 +236879,7 @@ }, { "str": "}}", - "token_id": 27507, + "token_id": 27462, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237256,495 +236888,492 @@ }, { "str": "|", - "token_id": 27508, + "token_id": 27463, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "style", - "token_id": 27509, + "token_id": 27464, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "=", - "token_id": 27510, + "token_id": 27465, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "\"", - "token_id": 27511, + "token_id": 27466, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "text", - "token_id": 27512, + "token_id": 27467, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "-", - "token_id": 27513, + "token_id": 27468, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "align", - "token_id": 27514, + "token_id": 27469, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": ":", - "token_id": 27515, + "token_id": 27470, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "center", - "token_id": 27516, + "token_id": 27471, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": ";", - "token_id": 27517, + "token_id": 27472, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "\"", - "token_id": 27518, + "token_id": 27473, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27519, + "token_id": 27474, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "<", - "token_id": 27520, + "token_id": 27475, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "ref", - "token_id": 27521, + "token_id": 27476, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": ">", - "token_id": 27522, + "token_id": 27477, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "{{", - "token_id": 27523, + "token_id": 27478, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "cite", - "token_id": 27524, + "token_id": 27479, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "web", - "token_id": 27525, + "token_id": 27480, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27526, + "token_id": 27481, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "url", - "token_id": 27527, + "token_id": 27482, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "=", - "token_id": 27528, + "token_id": 27483, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "https", - "token_id": 27529, + "token_id": 27484, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": ":", - "token_id": 27530, + "token_id": 27485, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "/", - "token_id": 27531, + "token_id": 27486, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "/", - "token_id": 27532, + "token_id": 27487, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "www", - "token_id": 27533, + "token_id": 27488, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": ".", - "token_id": 27534, + "token_id": 27489, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "bafta", - "token_id": 27535, + "token_id": 27490, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": ".", - "token_id": 27536, + "token_id": 27491, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "org", - "token_id": 27537, + "token_id": 27492, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "/", - "token_id": 27538, + "token_id": 27493, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "games", - "token_id": 27539, + "token_id": 27494, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "/", - "token_id": 27540, + "token_id": 27495, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "awards", - "token_id": 27541, + "token_id": 27496, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "/", - "token_id": 27542, + "token_id": 27497, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "2023", - "token_id": 27543, + "token_id": 27498, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "-", - "token_id": 27544, + "token_id": 27499, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "nominations", - "token_id": 27545, + "token_id": 27500, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27546, + "token_id": 27501, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "title", - "token_id": 27547, + "token_id": 27502, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "=", - "token_id": 27548, + "token_id": 27503, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "2023", - "token_id": 27549, + "token_id": 27504, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "bafta", - "token_id": 27550, + "token_id": 27505, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "games", - "token_id": 27551, + "token_id": 27506, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "awards", - "token_id": 27552, + "token_id": 27507, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": ":", - "token_id": 27553, + "token_id": 27508, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "the", - "token_id": 27554, + "token_id": 27509, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "nominations", - "token_id": 27555, + "token_id": 27510, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27556, + "token_id": 27511, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "publisher", - "token_id": 27557, + "token_id": 27512, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "=", - "token_id": 27558, + "token_id": 27513, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "[[", - "token_id": 27559, + "token_id": 27514, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "bafta", - "token_id": 27560, + "token_id": 27515, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "]]", - "token_id": 27561, + "token_id": 27516, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27562, + "token_id": 27517, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "date", - "token_id": 27563, + "token_id": 27518, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "=", - "token_id": 27564, + "token_id": 27519, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "2", - "token_id": 27565, + "token_id": 27520, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "march", - "token_id": 27566, + "token_id": 27521, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "2023", - "token_id": 27567, + "token_id": 27522, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "|", - "token_id": 27568, + "token_id": 27523, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "access", - "token_id": 27569, + "token_id": 27524, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "-", - "token_id": 27570, + "token_id": 27525, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "date", - "token_id": 27571, + "token_id": 27526, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "=", - "token_id": 27572, + "token_id": 27527, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "2", - "token_id": 27573, + "token_id": 27528, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "march", - "token_id": 27574, + "token_id": 27529, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "2023", - "token_id": 27575, + "token_id": 27530, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "}}", - "token_id": 27576, + "token_id": 27531, "o_rev_id": 1143464753, - "in": [ - 1202097960 - ], + "in": [], "out": [ - 1202071552, 1240817705 ] }, { "str": "<", - "token_id": 27577, + "token_id": 27532, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237753,14 +237382,14 @@ }, { "str": "/", - "token_id": 27578, + "token_id": 27533, "o_rev_id": 1143464753, "in": [], "out": [] }, { "str": "ref", - "token_id": 27579, + "token_id": 27534, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237769,7 +237398,7 @@ }, { "str": ">", - "token_id": 27580, + "token_id": 27535, "o_rev_id": 1143464753, "in": [], "out": [ @@ -237778,7 +237407,7 @@ }, { "str": "(", - "token_id": 27581, + "token_id": 27536, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237787,7 +237416,7 @@ }, { "str": "either", - "token_id": 27582, + "token_id": 27537, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237796,7 +237425,7 @@ }, { "str": "the", - "token_id": 27583, + "token_id": 27538, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237805,7 +237434,7 @@ }, { "str": "cohozuna", - "token_id": 27584, + "token_id": 27539, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237814,7 +237443,7 @@ }, { "str": "or", - "token_id": 27585, + "token_id": 27540, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237823,7 +237452,7 @@ }, { "str": "the", - "token_id": 27586, + "token_id": 27541, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237832,7 +237461,7 @@ }, { "str": "horrorboros", - "token_id": 27587, + "token_id": 27542, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237841,7 +237470,7 @@ }, { "str": ",", - "token_id": 27588, + "token_id": 27543, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237850,7 +237479,7 @@ }, { "str": "predetermined", - "token_id": 27589, + "token_id": 27544, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237859,7 +237488,7 @@ }, { "str": "randomly", - "token_id": 27590, + "token_id": 27545, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237868,7 +237497,7 @@ }, { "str": "for", - "token_id": 27591, + "token_id": 27546, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237877,7 +237506,7 @@ }, { "str": "each", - "token_id": 27592, + "token_id": 27547, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237886,7 +237515,7 @@ }, { "str": "job", - "token_id": 27593, + "token_id": 27548, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237895,7 +237524,7 @@ }, { "str": ")", - "token_id": 27594, + "token_id": 27549, "o_rev_id": 1144601212, "in": [], "out": [ @@ -237904,7 +237533,7 @@ }, { "str": ",", - "token_id": 27595, + "token_id": 27550, "o_rev_id": 1144896380, "in": [], "out": [ @@ -237913,7 +237542,7 @@ }, { "str": "wielding", - "token_id": 27596, + "token_id": 27551, "o_rev_id": 1144896380, "in": [], "out": [ @@ -237922,7 +237551,7 @@ }, { "str": "use", - "token_id": 27597, + "token_id": 27552, "o_rev_id": 1144896380, "in": [], "out": [ @@ -237931,7 +237560,7 @@ }, { "str": "doolan2022", - "token_id": 27598, + "token_id": 27553, "o_rev_id": 1145000539, "in": [ 1179974250 @@ -237942,7 +237571,7 @@ }, { "str": "doolan2022", - "token_id": 27599, + "token_id": 27554, "o_rev_id": 1145000539, "in": [], "out": [ @@ -237951,245 +237580,252 @@ }, { "str": "=", - "token_id": 27600, + "token_id": 27555, "o_rev_id": 1145000539, "in": [], "out": [] }, { "str": "mccarter2022", - "token_id": 27601, + "token_id": 27556, "o_rev_id": 1145000539, "in": [], "out": [] }, { "str": "mccarter2022", - "token_id": 27602, + "token_id": 27557, "o_rev_id": 1145000539, "in": [], "out": [] }, { "str": "]]", - "token_id": 27603, + "token_id": 27558, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "(", - "token_id": 27604, + "token_id": 27559, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": ")", - "token_id": 27605, + "token_id": 27560, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "as", - "token_id": 27606, + "token_id": 27561, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "also", - "token_id": 27607, + "token_id": 27562, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "|", - "token_id": 27608, + "token_id": 27563, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "url", - "token_id": 27609, + "token_id": 27564, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "-", - "token_id": 27610, + "token_id": 27565, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "status", - "token_id": 27611, + "token_id": 27566, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "=", - "token_id": 27612, + "token_id": 27567, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "live", - "token_id": 27613, + "token_id": 27568, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "|", - "token_id": 27614, + "token_id": 27569, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "archive", - "token_id": 27615, + "token_id": 27570, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "-", - "token_id": 27616, + "token_id": 27571, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "url", - "token_id": 27617, + "token_id": 27572, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "=", - "token_id": 27618, + "token_id": 27573, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "|", - "token_id": 27619, + "token_id": 27574, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "archive", - "token_id": 27620, + "token_id": 27575, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "-", - "token_id": 27621, + "token_id": 27576, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "date", - "token_id": 27622, + "token_id": 27577, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "=", - "token_id": 27623, + "token_id": 27578, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "12", - "token_id": 27624, + "token_id": 27579, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "october", - "token_id": 27625, + "token_id": 27580, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "2022", - "token_id": 27626, + "token_id": 27581, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "which", - "token_id": 27627, + "token_id": 27582, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "team", - "token_id": 27628, + "token_id": 27583, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "rock", - "token_id": 27629, + "token_id": 27584, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "won", - "token_id": 27630, + "token_id": 27585, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "in", - "token_id": 27631, + "token_id": 27586, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "all", - "token_id": 27632, + "token_id": 27587, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "regions", - "token_id": 27633, + "token_id": 27588, + "o_rev_id": 1145400671, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 27589, "o_rev_id": 1145400671, "in": [], "out": [] }, { "str": "squid", - "token_id": 27634, + "token_id": 27590, "o_rev_id": 1146210516, "in": [], "out": [ @@ -238198,7 +237834,7 @@ }, { "str": "game", - "token_id": 27635, + "token_id": 27591, "o_rev_id": 1146210516, "in": [], "out": [ @@ -238207,7 +237843,7 @@ }, { "str": "squid", - "token_id": 27636, + "token_id": 27592, "o_rev_id": 1146210516, "in": [], "out": [ @@ -238216,7 +237852,7 @@ }, { "str": "games", - "token_id": 27637, + "token_id": 27593, "o_rev_id": 1146210516, "in": [], "out": [ @@ -238225,7 +237861,7 @@ }, { "str": "squid", - "token_id": 27638, + "token_id": 27594, "o_rev_id": 1146210663, "in": [], "out": [ @@ -238234,7 +237870,7 @@ }, { "str": "game", - "token_id": 27639, + "token_id": 27595, "o_rev_id": 1146210663, "in": [], "out": [ @@ -238243,7 +237879,7 @@ }, { "str": "squid", - "token_id": 27640, + "token_id": 27596, "o_rev_id": 1146210937, "in": [], "out": [ @@ -238252,7 +237888,7 @@ }, { "str": "game", - "token_id": 27641, + "token_id": 27597, "o_rev_id": 1146210937, "in": [], "out": [ @@ -238261,28 +237897,28 @@ }, { "str": "{{", - "token_id": 27642, + "token_id": 27598, "o_rev_id": 1147465679, "in": [], "out": [] }, { "str": "nom", - "token_id": 27643, + "token_id": 27599, "o_rev_id": 1147465679, "in": [], "out": [] }, { "str": "}}", - "token_id": 27644, + "token_id": 27600, "o_rev_id": 1147465679, "in": [], "out": [] }, { "str": "21", - "token_id": 27645, + "token_id": 27601, "o_rev_id": 1148047431, "in": [], "out": [ @@ -238291,7 +237927,7 @@ }, { "str": "july", - "token_id": 27646, + "token_id": 27602, "o_rev_id": 1148047431, "in": [], "out": [ @@ -238300,7 +237936,7 @@ }, { "str": "2017", - "token_id": 27647, + "token_id": 27603, "o_rev_id": 1148047431, "in": [], "out": [ @@ -238309,21 +237945,21 @@ }, { "str": "rehydrates", - "token_id": 27648, + "token_id": 27604, "o_rev_id": 1148438847, "in": [], "out": [] }, { "str": "with", - "token_id": 27649, + "token_id": 27605, "o_rev_id": 1148438847, "in": [], "out": [] }, { "str": "their", - "token_id": 27650, + "token_id": 27606, "o_rev_id": 1148438847, "in": [ 1330183493 @@ -238334,14 +237970,14 @@ }, { "str": "tears", - "token_id": 27651, + "token_id": 27607, "o_rev_id": 1148438847, "in": [], "out": [] }, { "str": "change", - "token_id": 27652, + "token_id": 27608, "o_rev_id": 1148907045, "in": [], "out": [ @@ -238350,7 +237986,7 @@ }, { "str": "-", - "token_id": 27653, + "token_id": 27609, "o_rev_id": 1148907045, "in": [], "out": [ @@ -238359,7 +237995,7 @@ }, { "str": "like", - "token_id": 27654, + "token_id": 27610, "o_rev_id": 1148907045, "in": [], "out": [ @@ -238368,7 +238004,7 @@ }, { "str": "to", - "token_id": 27655, + "token_id": 27611, "o_rev_id": 1148907045, "in": [], "out": [ @@ -238377,7 +238013,7 @@ }, { "str": "swim", - "token_id": 27656, + "token_id": 27612, "o_rev_id": 1148907045, "in": [], "out": [ @@ -238386,7 +238022,7 @@ }, { "str": "through", - "token_id": 27657, + "token_id": 27613, "o_rev_id": 1148907045, "in": [], "out": [ @@ -238395,7 +238031,7 @@ }, { "str": "ink", - "token_id": 27658, + "token_id": 27614, "o_rev_id": 1148907045, "in": [], "out": [ @@ -238404,7 +238040,7 @@ }, { "str": "(", - "token_id": 27659, + "token_id": 27615, "o_rev_id": 1148907167, "in": [], "out": [ @@ -238413,7 +238049,7 @@ }, { "str": "evolved", - "token_id": 27660, + "token_id": 27616, "o_rev_id": 1148907167, "in": [], "out": [ @@ -238422,7 +238058,7 @@ }, { "str": "from", - "token_id": 27661, + "token_id": 27617, "o_rev_id": 1148907167, "in": [], "out": [ @@ -238431,7 +238067,7 @@ }, { "str": "squids", - "token_id": 27662, + "token_id": 27618, "o_rev_id": 1148907167, "in": [], "out": [ @@ -238440,7 +238076,7 @@ }, { "str": "and", - "token_id": 27663, + "token_id": 27619, "o_rev_id": 1148907167, "in": [], "out": [ @@ -238449,7 +238085,7 @@ }, { "str": "octopi", - "token_id": 27664, + "token_id": 27620, "o_rev_id": 1148907167, "in": [], "out": [ @@ -238458,7 +238094,7 @@ }, { "str": "respectively", - "token_id": 27665, + "token_id": 27621, "o_rev_id": 1148907167, "in": [], "out": [ @@ -238467,7 +238103,7 @@ }, { "str": ")", - "token_id": 27666, + "token_id": 27622, "o_rev_id": 1148907167, "in": [], "out": [ @@ -238476,7 +238112,7 @@ }, { "str": "and", - "token_id": 27667, + "token_id": 27623, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238485,7 +238121,7 @@ }, { "str": "was", - "token_id": 27668, + "token_id": 27624, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238494,7 +238130,7 @@ }, { "str": "the", - "token_id": 27669, + "token_id": 27625, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238503,7 +238139,7 @@ }, { "str": "place", - "token_id": 27670, + "token_id": 27626, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238512,7 +238148,7 @@ }, { "str": "where", - "token_id": 27671, + "token_id": 27627, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238521,7 +238157,7 @@ }, { "str": "both", - "token_id": 27672, + "token_id": 27628, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238530,7 +238166,7 @@ }, { "str": "the", - "token_id": 27673, + "token_id": 27629, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238539,7 +238175,7 @@ }, { "str": "modern", - "token_id": 27674, + "token_id": 27630, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238548,7 +238184,7 @@ }, { "str": "sentinent", - "token_id": 27675, + "token_id": 27631, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238557,7 +238193,7 @@ }, { "str": "creatures", - "token_id": 27676, + "token_id": 27632, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238566,7 +238202,7 @@ }, { "str": "of", - "token_id": 27677, + "token_id": 27633, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238575,7 +238211,7 @@ }, { "str": "splatoon", - "token_id": 27678, + "token_id": 27634, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238584,7 +238220,7 @@ }, { "str": "evolved", - "token_id": 27679, + "token_id": 27635, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238593,7 +238229,7 @@ }, { "str": "from", - "token_id": 27680, + "token_id": 27636, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238602,7 +238238,7 @@ }, { "str": "and", - "token_id": 27681, + "token_id": 27637, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238611,7 +238247,7 @@ }, { "str": "the", - "token_id": 27682, + "token_id": 27638, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238620,7 +238256,7 @@ }, { "str": "last", - "token_id": 27683, + "token_id": 27639, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238629,7 +238265,7 @@ }, { "str": "resort", - "token_id": 27684, + "token_id": 27640, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238638,7 +238274,7 @@ }, { "str": "of", - "token_id": 27685, + "token_id": 27641, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238647,7 +238283,7 @@ }, { "str": "humans", - "token_id": 27686, + "token_id": 27642, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238656,7 +238292,7 @@ }, { "str": "before", - "token_id": 27687, + "token_id": 27643, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238665,7 +238301,7 @@ }, { "str": "their", - "token_id": 27688, + "token_id": 27644, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238674,7 +238310,7 @@ }, { "str": "ultimate", - "token_id": 27689, + "token_id": 27645, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238683,7 +238319,7 @@ }, { "str": "extinction", - "token_id": 27690, + "token_id": 27646, "o_rev_id": 1148907648, "in": [], "out": [ @@ -238692,7 +238328,7 @@ }, { "str": "bud", - "token_id": 27691, + "token_id": 27647, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238701,7 +238337,7 @@ }, { "str": ",", - "token_id": 27692, + "token_id": 27648, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238710,7 +238346,7 @@ }, { "str": "also", - "token_id": 27693, + "token_id": 27649, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238719,7 +238355,7 @@ }, { "str": "the", - "token_id": 27694, + "token_id": 27650, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238728,7 +238364,7 @@ }, { "str": "great", - "token_id": 27695, + "token_id": 27651, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238737,7 +238373,7 @@ }, { "str": "army", - "token_id": 27696, + "token_id": 27652, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238746,7 +238382,7 @@ }, { "str": "the", - "token_id": 27697, + "token_id": 27653, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238755,7 +238391,7 @@ }, { "str": "squid", - "token_id": 27698, + "token_id": 27654, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238764,7 +238400,7 @@ }, { "str": "sisters", - "token_id": 27699, + "token_id": 27655, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238773,7 +238409,7 @@ }, { "str": ".", - "token_id": 27700, + "token_id": 27656, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238782,7 +238418,7 @@ }, { "str": "they", - "token_id": 27701, + "token_id": 27657, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238791,7 +238427,7 @@ }, { "str": "new", - "token_id": 27702, + "token_id": 27658, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238800,7 +238436,7 @@ }, { "str": "ai", - "token_id": 27703, + "token_id": 27659, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238809,7 +238445,7 @@ }, { "str": "dj", - "token_id": 27704, + "token_id": 27660, "o_rev_id": 1148918924, "in": [], "out": [ @@ -238818,7 +238454,7 @@ }, { "str": "fifty", - "token_id": 27705, + "token_id": 27661, "o_rev_id": 1148936330, "in": [], "out": [ @@ -238827,28 +238463,28 @@ }, { "str": "[[", - "token_id": 27706, + "token_id": 27662, "o_rev_id": 1148983044, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 27707, + "token_id": 27663, "o_rev_id": 1148983044, "in": [], "out": [] }, { "str": "2", - "token_id": 27708, + "token_id": 27664, "o_rev_id": 1148983044, "in": [], "out": [] }, { "str": "|", - "token_id": 27709, + "token_id": 27665, "o_rev_id": 1148983044, "in": [], "out": [ @@ -238857,7 +238493,7 @@ }, { "str": "]]", - "token_id": 27710, + "token_id": 27666, "o_rev_id": 1148983044, "in": [], "out": [ @@ -238866,7 +238502,7 @@ }, { "str": ".", - "token_id": 27711, + "token_id": 27667, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238875,7 +238511,7 @@ }, { "str": "splatoon", - "token_id": 27712, + "token_id": 27668, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238884,7 +238520,7 @@ }, { "str": "3", - "token_id": 27713, + "token_id": 27669, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238893,7 +238529,7 @@ }, { "str": "has", - "token_id": 27714, + "token_id": 27670, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238902,7 +238538,7 @@ }, { "str": "been", - "token_id": 27715, + "token_id": 27671, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238911,7 +238547,7 @@ }, { "str": "taken", - "token_id": 27716, + "token_id": 27672, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238920,7 +238556,7 @@ }, { "str": "over", - "token_id": 27717, + "token_id": 27673, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238929,7 +238565,7 @@ }, { "str": "by", - "token_id": 27718, + "token_id": 27674, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238938,7 +238574,7 @@ }, { "str": "danganronpa", - "token_id": 27719, + "token_id": 27675, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238947,7 +238583,7 @@ }, { "str": ".", - "token_id": 27720, + "token_id": 27676, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238956,7 +238592,7 @@ }, { "str": "feel", - "token_id": 27721, + "token_id": 27677, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238965,7 +238601,7 @@ }, { "str": "the", - "token_id": 27722, + "token_id": 27678, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238974,7 +238610,7 @@ }, { "str": "despair", - "token_id": 27723, + "token_id": 27679, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238983,7 +238619,7 @@ }, { "str": ".", - "token_id": 27724, + "token_id": 27680, "o_rev_id": 1148992236, "in": [], "out": [ @@ -238992,7 +238628,7 @@ }, { "str": "by", - "token_id": 27725, + "token_id": 27681, "o_rev_id": 1148992236, "in": [], "out": [ @@ -239001,7 +238637,7 @@ }, { "str": ":", - "token_id": 27726, + "token_id": 27682, "o_rev_id": 1148992236, "in": [], "out": [ @@ -239010,7 +238646,7 @@ }, { "str": "junko", - "token_id": 27727, + "token_id": 27683, "o_rev_id": 1148992236, "in": [], "out": [ @@ -239019,7 +238655,7 @@ }, { "str": "2021", - "token_id": 27728, + "token_id": 27684, "o_rev_id": 1148993576, "in": [], "out": [ @@ -239028,7 +238664,7 @@ }, { "str": "splatoon", - "token_id": 27729, + "token_id": 27685, "o_rev_id": 1148993576, "in": [], "out": [ @@ -239037,7 +238673,7 @@ }, { "str": "x", - "token_id": 27730, + "token_id": 27686, "o_rev_id": 1148993576, "in": [], "out": [ @@ -239046,7 +238682,7 @@ }, { "str": "danganronpa", - "token_id": 27731, + "token_id": 27687, "o_rev_id": 1148993576, "in": [], "out": [ @@ -239055,7 +238691,7 @@ }, { "str": "4", - "token_id": 27732, + "token_id": 27688, "o_rev_id": 1149040307, "in": [ 1149896665 @@ -239067,21 +238703,21 @@ }, { "str": "a", - "token_id": 27733, + "token_id": 27689, "o_rev_id": 1149048856, "in": [], "out": [] }, { "str": "lot", - "token_id": 27734, + "token_id": 27690, "o_rev_id": 1149048856, "in": [], "out": [] }, { "str": "[[", - "token_id": 27735, + "token_id": 27691, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239090,7 +238726,7 @@ }, { "str": "first", - "token_id": 27736, + "token_id": 27692, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239099,7 +238735,7 @@ }, { "str": "-", - "token_id": 27737, + "token_id": 27693, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239108,7 +238744,7 @@ }, { "str": "person", - "token_id": 27738, + "token_id": 27694, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239117,7 +238753,7 @@ }, { "str": "shooter", - "token_id": 27739, + "token_id": 27695, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239126,7 +238762,7 @@ }, { "str": "|", - "token_id": 27740, + "token_id": 27696, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239135,7 +238771,7 @@ }, { "str": "]]", - "token_id": 27741, + "token_id": 27697, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239144,7 +238780,7 @@ }, { "str": "that", - "token_id": 27742, + "token_id": 27698, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239153,7 +238789,7 @@ }, { "str": "was", - "token_id": 27743, + "token_id": 27699, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239162,7 +238798,7 @@ }, { "str": "n", - "token_id": 27744, + "token_id": 27700, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239171,7 +238807,7 @@ }, { "str": "seventy", - "token_id": 27745, + "token_id": 27701, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239180,7 +238816,7 @@ }, { "str": "six", - "token_id": 27746, + "token_id": 27702, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239189,7 +238825,7 @@ }, { "str": "do", - "token_id": 27747, + "token_id": 27703, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239198,7 +238834,7 @@ }, { "str": "you", - "token_id": 27748, + "token_id": 27704, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239207,7 +238843,7 @@ }, { "str": "ever", - "token_id": 27749, + "token_id": 27705, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239216,7 +238852,7 @@ }, { "str": "just", - "token_id": 27750, + "token_id": 27706, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239225,7 +238861,7 @@ }, { "str": "fart", - "token_id": 27751, + "token_id": 27707, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239234,7 +238870,7 @@ }, { "str": "out", - "token_id": 27752, + "token_id": 27708, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239243,7 +238879,7 @@ }, { "str": "a", - "token_id": 27753, + "token_id": 27709, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239252,7 +238888,7 @@ }, { "str": "whole", - "token_id": 27754, + "token_id": 27710, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239261,7 +238897,7 @@ }, { "str": "entire", - "token_id": 27755, + "token_id": 27711, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239270,7 +238906,7 @@ }, { "str": "onion", - "token_id": 27756, + "token_id": 27712, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239279,7 +238915,7 @@ }, { "str": "?", - "token_id": 27757, + "token_id": 27713, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239288,7 +238924,7 @@ }, { "str": "me", - "token_id": 27758, + "token_id": 27714, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239297,7 +238933,7 @@ }, { "str": "too", - "token_id": 27759, + "token_id": 27715, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239306,7 +238942,7 @@ }, { "str": "and", - "token_id": 27760, + "token_id": 27716, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239315,7 +238951,7 @@ }, { "str": "it", - "token_id": 27761, + "token_id": 27717, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239324,7 +238960,7 @@ }, { "str": "'", - "token_id": 27762, + "token_id": 27718, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239333,7 +238969,7 @@ }, { "str": "s", - "token_id": 27763, + "token_id": 27719, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239342,7 +238978,7 @@ }, { "str": "so", - "token_id": 27764, + "token_id": 27720, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239351,7 +238987,7 @@ }, { "str": "fun", - "token_id": 27765, + "token_id": 27721, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239360,7 +238996,7 @@ }, { "str": "!", - "token_id": 27766, + "token_id": 27722, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239369,7 +239005,7 @@ }, { "str": "visit", - "token_id": 27767, + "token_id": 27723, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239378,7 +239014,7 @@ }, { "str": "grammarly", - "token_id": 27768, + "token_id": 27724, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239387,7 +239023,7 @@ }, { "str": "to", - "token_id": 27769, + "token_id": 27725, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239396,7 +239032,7 @@ }, { "str": "find", - "token_id": 27770, + "token_id": 27726, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239405,7 +239041,7 @@ }, { "str": "out", - "token_id": 27771, + "token_id": 27727, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239414,7 +239050,7 @@ }, { "str": "more", - "token_id": 27772, + "token_id": 27728, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239423,7 +239059,7 @@ }, { "str": "on", - "token_id": 27773, + "token_id": 27729, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239432,7 +239068,7 @@ }, { "str": "the", - "token_id": 27774, + "token_id": 27730, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239441,7 +239077,7 @@ }, { "str": "onion", - "token_id": 27775, + "token_id": 27731, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239450,7 +239086,7 @@ }, { "str": "farting", - "token_id": 27776, + "token_id": 27732, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239459,7 +239095,7 @@ }, { "str": "disease", - "token_id": 27777, + "token_id": 27733, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239468,7 +239104,7 @@ }, { "str": "to", - "token_id": 27778, + "token_id": 27734, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239477,7 +239113,7 @@ }, { "str": "get", - "token_id": 27779, + "token_id": 27735, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239486,7 +239122,7 @@ }, { "str": "peed", - "token_id": 27780, + "token_id": 27736, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239495,7 +239131,7 @@ }, { "str": "on", - "token_id": 27781, + "token_id": 27737, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239504,7 +239140,7 @@ }, { "str": "by", - "token_id": 27782, + "token_id": 27738, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239513,7 +239149,7 @@ }, { "str": "me", - "token_id": 27783, + "token_id": 27739, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239522,7 +239158,7 @@ }, { "str": "and", - "token_id": 27784, + "token_id": 27740, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239531,7 +239167,7 @@ }, { "str": "a", - "token_id": 27785, + "token_id": 27741, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239540,7 +239176,7 @@ }, { "str": "random", - "token_id": 27786, + "token_id": 27742, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239549,7 +239185,7 @@ }, { "str": "toddler", - "token_id": 27787, + "token_id": 27743, "o_rev_id": 1149845289, "in": [], "out": [ @@ -239558,7 +239194,7 @@ }, { "str": "most", - "token_id": 27788, + "token_id": 27744, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239567,7 +239203,7 @@ }, { "str": "sexxxy", - "token_id": 27789, + "token_id": 27745, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239576,7 +239212,7 @@ }, { "str": "porrn", - "token_id": 27790, + "token_id": 27746, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239585,7 +239221,7 @@ }, { "str": "games", - "token_id": 27791, + "token_id": 27747, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239594,7 +239230,7 @@ }, { "str": "ever", - "token_id": 27792, + "token_id": 27748, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239603,7 +239239,7 @@ }, { "str": "sold", - "token_id": 27793, + "token_id": 27749, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239612,7 +239248,7 @@ }, { "str": "by", - "token_id": 27794, + "token_id": 27750, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239621,7 +239257,7 @@ }, { "str": "featureing", - "token_id": 27795, + "token_id": 27751, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239630,7 +239266,7 @@ }, { "str": "squids", - "token_id": 27796, + "token_id": 27752, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239639,7 +239275,7 @@ }, { "str": "shitttting", - "token_id": 27797, + "token_id": 27753, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239648,7 +239284,7 @@ }, { "str": "out", - "token_id": 27798, + "token_id": 27754, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239657,7 +239293,7 @@ }, { "str": "whole", - "token_id": 27799, + "token_id": 27755, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239666,7 +239302,7 @@ }, { "str": "entire", - "token_id": 27800, + "token_id": 27756, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239675,7 +239311,7 @@ }, { "str": "dicckks", - "token_id": 27801, + "token_id": 27757, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239684,7 +239320,7 @@ }, { "str": "and", - "token_id": 27802, + "token_id": 27758, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239693,7 +239329,7 @@ }, { "str": "having", - "token_id": 27803, + "token_id": 27759, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239702,7 +239338,7 @@ }, { "str": "their", - "token_id": 27804, + "token_id": 27760, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239711,7 +239347,7 @@ }, { "str": "asssssssholes", - "token_id": 27805, + "token_id": 27761, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239720,7 +239356,7 @@ }, { "str": "pounded", - "token_id": 27806, + "token_id": 27762, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239729,7 +239365,7 @@ }, { "str": "by", - "token_id": 27807, + "token_id": 27763, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239738,7 +239374,7 @@ }, { "str": "pale", - "token_id": 27808, + "token_id": 27764, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239747,7 +239383,7 @@ }, { "str": "white", - "token_id": 27809, + "token_id": 27765, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239756,7 +239392,7 @@ }, { "str": "12", - "token_id": 27810, + "token_id": 27766, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239765,7 +239401,7 @@ }, { "str": "inch", - "token_id": 27811, + "token_id": 27767, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239774,7 +239410,7 @@ }, { "str": "coccckkkks", - "token_id": 27812, + "token_id": 27768, "o_rev_id": 1149896621, "in": [], "out": [ @@ -239783,7 +239419,7 @@ }, { "str": ",", - "token_id": 27813, + "token_id": 27769, "o_rev_id": 1149971637, "in": [ 1178773007 @@ -239794,7 +239430,7 @@ }, { "str": "sub", - "token_id": 27814, + "token_id": 27770, "o_rev_id": 1149971637, "in": [ 1178773007 @@ -239805,7 +239441,7 @@ }, { "str": ",", - "token_id": 27815, + "token_id": 27771, "o_rev_id": 1149971637, "in": [ 1178773007 @@ -239816,7 +239452,7 @@ }, { "str": "sub", - "token_id": 27816, + "token_id": 27772, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239827,7 +239463,7 @@ }, { "str": "weapons", - "token_id": 27817, + "token_id": 27773, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239838,7 +239474,7 @@ }, { "str": "are", - "token_id": 27818, + "token_id": 27774, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239850,7 +239486,7 @@ }, { "str": "assigned", - "token_id": 27819, + "token_id": 27775, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239862,7 +239498,7 @@ }, { "str": "to", - "token_id": 27820, + "token_id": 27776, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239874,7 +239510,7 @@ }, { "str": "main", - "token_id": 27821, + "token_id": 27777, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239886,7 +239522,7 @@ }, { "str": "weapons", - "token_id": 27822, + "token_id": 27778, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239898,7 +239534,7 @@ }, { "str": "and", - "token_id": 27823, + "token_id": 27779, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239910,7 +239546,7 @@ }, { "str": "act", - "token_id": 27824, + "token_id": 27780, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239921,7 +239557,7 @@ }, { "str": "as", - "token_id": 27825, + "token_id": 27781, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239932,7 +239568,7 @@ }, { "str": "secondary", - "token_id": 27826, + "token_id": 27782, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239943,7 +239579,7 @@ }, { "str": "weapons", - "token_id": 27827, + "token_id": 27783, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239954,7 +239590,7 @@ }, { "str": "that", - "token_id": 27828, + "token_id": 27784, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239965,7 +239601,7 @@ }, { "str": "use", - "token_id": 27829, + "token_id": 27785, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239976,7 +239612,7 @@ }, { "str": "up", - "token_id": 27830, + "token_id": 27786, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239987,7 +239623,7 @@ }, { "str": "more", - "token_id": 27831, + "token_id": 27787, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -239998,7 +239634,7 @@ }, { "str": "ink", - "token_id": 27832, + "token_id": 27788, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -240009,7 +239645,7 @@ }, { "str": ",", - "token_id": 27833, + "token_id": 27789, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -240021,7 +239657,7 @@ }, { "str": "also", - "token_id": 27834, + "token_id": 27790, "o_rev_id": 1149972261, "in": [ 1178773007 @@ -240033,154 +239669,154 @@ }, { "str": "there", - "token_id": 27835, + "token_id": 27791, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "is", - "token_id": 27836, + "token_id": 27792, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "also", - "token_id": 27837, + "token_id": 27793, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "another", - "token_id": 27838, + "token_id": 27794, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "salmon", - "token_id": 27839, + "token_id": 27795, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "run", - "token_id": 27840, + "token_id": 27796, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "event", - "token_id": 27841, + "token_id": 27797, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "called", - "token_id": 27842, + "token_id": 27798, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "eggstra", - "token_id": 27843, + "token_id": 27799, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "work", - "token_id": 27844, + "token_id": 27800, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "where", - "token_id": 27845, + "token_id": 27801, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "teams", - "token_id": 27846, + "token_id": 27802, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "compete", - "token_id": 27847, + "token_id": 27803, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "to", - "token_id": 27848, + "token_id": 27804, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "get", - "token_id": 27849, + "token_id": 27805, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "the", - "token_id": 27850, + "token_id": 27806, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "most", - "token_id": 27851, + "token_id": 27807, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "golden", - "token_id": 27852, + "token_id": 27808, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "eggs", - "token_id": 27853, + "token_id": 27809, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "in", - "token_id": 27854, + "token_id": 27810, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "a", - "token_id": 27855, + "token_id": 27811, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "set", - "token_id": 27856, + "token_id": 27812, "o_rev_id": 1149973283, "in": [], "out": [ @@ -240189,14 +239825,14 @@ }, { "str": "of", - "token_id": 27857, + "token_id": 27813, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "5", - "token_id": 27858, + "token_id": 27814, "o_rev_id": 1149973283, "in": [ 1282797042 @@ -240207,14 +239843,14 @@ }, { "str": "waves", - "token_id": 27859, + "token_id": 27815, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "with", - "token_id": 27860, + "token_id": 27816, "o_rev_id": 1149973283, "in": [], "out": [ @@ -240223,7 +239859,7 @@ }, { "str": "the", - "token_id": 27861, + "token_id": 27817, "o_rev_id": 1149973283, "in": [], "out": [ @@ -240232,7 +239868,7 @@ }, { "str": "same", - "token_id": 27862, + "token_id": 27818, "o_rev_id": 1149973283, "in": [], "out": [ @@ -240241,7 +239877,7 @@ }, { "str": "enemies", - "token_id": 27863, + "token_id": 27819, "o_rev_id": 1149973283, "in": [], "out": [ @@ -240250,7 +239886,7 @@ }, { "str": "and", - "token_id": 27864, + "token_id": 27820, "o_rev_id": 1149973283, "in": [], "out": [ @@ -240259,7 +239895,7 @@ }, { "str": "weapons", - "token_id": 27865, + "token_id": 27821, "o_rev_id": 1149973283, "in": [], "out": [ @@ -240268,14 +239904,14 @@ }, { "str": ".", - "token_id": 27866, + "token_id": 27822, "o_rev_id": 1149973283, "in": [], "out": [] }, { "str": "=", - "token_id": 27867, + "token_id": 27823, "o_rev_id": 1150186189, "in": [], "out": [ @@ -240284,7 +239920,7 @@ }, { "str": "=", - "token_id": 27868, + "token_id": 27824, "o_rev_id": 1150186189, "in": [], "out": [ @@ -240293,7 +239929,7 @@ }, { "str": "weapons", - "token_id": 27869, + "token_id": 27825, "o_rev_id": 1150186189, "in": [], "out": [ @@ -240302,7 +239938,7 @@ }, { "str": "=", - "token_id": 27870, + "token_id": 27826, "o_rev_id": 1150186189, "in": [], "out": [ @@ -240311,7 +239947,7 @@ }, { "str": "=", - "token_id": 27871, + "token_id": 27827, "o_rev_id": 1150186189, "in": [], "out": [ @@ -240320,35 +239956,35 @@ }, { "str": "next", - "token_id": 27872, + "token_id": 27828, "o_rev_id": 1151022008, "in": [], "out": [] }, { "str": "wave", - "token_id": 27873, + "token_id": 27829, "o_rev_id": 1151022008, "in": [], "out": [] }, { "str": "the", - "token_id": 27874, + "token_id": 27830, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "game", - "token_id": 27875, + "token_id": 27831, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "has", - "token_id": 27876, + "token_id": 27832, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240357,7 +239993,7 @@ }, { "str": "been", - "token_id": 27877, + "token_id": 27833, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240366,7 +240002,7 @@ }, { "str": "praised", - "token_id": 27878, + "token_id": 27834, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240375,21 +240011,21 @@ }, { "str": "for", - "token_id": 27879, + "token_id": 27835, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "its", - "token_id": 27880, + "token_id": 27836, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 27881, + "token_id": 27837, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240398,7 +240034,7 @@ }, { "str": ",", - "token_id": 27882, + "token_id": 27838, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240407,35 +240043,35 @@ }, { "str": "single", - "token_id": 27883, + "token_id": 27839, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "player", - "token_id": 27884, + "token_id": 27840, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "campaign", - "token_id": 27885, + "token_id": 27841, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": ",", - "token_id": 27886, + "token_id": 27842, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "co", - "token_id": 27887, + "token_id": 27843, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240444,7 +240080,7 @@ }, { "str": "-", - "token_id": 27888, + "token_id": 27844, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240453,7 +240089,7 @@ }, { "str": "op", - "token_id": 27889, + "token_id": 27845, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240462,7 +240098,7 @@ }, { "str": "modes", - "token_id": 27890, + "token_id": 27846, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240471,7 +240107,7 @@ }, { "str": ",", - "token_id": 27891, + "token_id": 27847, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240480,7 +240116,7 @@ }, { "str": "and", - "token_id": 27892, + "token_id": 27848, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240489,7 +240125,7 @@ }, { "str": "a", - "token_id": 27893, + "token_id": 27849, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240498,7 +240134,7 @@ }, { "str": "variety", - "token_id": 27894, + "token_id": 27850, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240507,7 +240143,7 @@ }, { "str": "of", - "token_id": 27895, + "token_id": 27851, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240516,7 +240152,7 @@ }, { "str": "maps", - "token_id": 27896, + "token_id": 27852, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240525,7 +240161,7 @@ }, { "str": "and", - "token_id": 27897, + "token_id": 27853, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240534,7 +240170,7 @@ }, { "str": "weapons", - "token_id": 27898, + "token_id": 27854, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240543,7 +240179,7 @@ }, { "str": ".", - "token_id": 27899, + "token_id": 27855, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240552,7 +240188,7 @@ }, { "str": "although", - "token_id": 27900, + "token_id": 27856, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240561,14 +240197,14 @@ }, { "str": "criticism", - "token_id": 27901, + "token_id": 27857, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "was", - "token_id": 27902, + "token_id": 27858, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240577,7 +240213,7 @@ }, { "str": "aimed", - "token_id": 27903, + "token_id": 27859, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240586,7 +240222,7 @@ }, { "str": "at", - "token_id": 27904, + "token_id": 27860, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240595,7 +240231,7 @@ }, { "str": "constant", - "token_id": 27905, + "token_id": 27861, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240604,7 +240240,7 @@ }, { "str": "disconnects", - "token_id": 27906, + "token_id": 27862, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240613,42 +240249,42 @@ }, { "str": "and", - "token_id": 27907, + "token_id": 27863, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "lack", - "token_id": 27908, + "token_id": 27864, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "of", - "token_id": 27909, + "token_id": 27865, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "new", - "token_id": 27910, + "token_id": 27866, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "content", - "token_id": 27911, + "token_id": 27867, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": "and", - "token_id": 27912, + "token_id": 27868, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240657,7 +240293,7 @@ }, { "str": "ideas", - "token_id": 27913, + "token_id": 27869, "o_rev_id": 1151297826, "in": [], "out": [ @@ -240666,14 +240302,14 @@ }, { "str": ".", - "token_id": 27914, + "token_id": 27870, "o_rev_id": 1151297826, "in": [], "out": [] }, { "str": ",", - "token_id": 27915, + "token_id": 27871, "o_rev_id": 1151298268, "in": [], "out": [ @@ -240682,7 +240318,7 @@ }, { "str": "and", - "token_id": 27916, + "token_id": 27872, "o_rev_id": 1151298268, "in": [], "out": [ @@ -240691,14 +240327,14 @@ }, { "str": "customization", - "token_id": 27917, + "token_id": 27873, "o_rev_id": 1151298268, "in": [], "out": [] }, { "str": "options", - "token_id": 27918, + "token_id": 27874, "o_rev_id": 1151298268, "in": [ 1229566085 @@ -240709,7 +240345,7 @@ }, { "str": "its", - "token_id": 27919, + "token_id": 27875, "o_rev_id": 1151298544, "in": [], "out": [ @@ -240718,7 +240354,7 @@ }, { "str": "mode", - "token_id": 27920, + "token_id": 27876, "o_rev_id": 1151298544, "in": [], "out": [ @@ -240727,7 +240363,7 @@ }, { "str": "salmon", - "token_id": 27921, + "token_id": 27877, "o_rev_id": 1151298544, "in": [], "out": [ @@ -240736,7 +240372,7 @@ }, { "str": "run", - "token_id": 27922, + "token_id": 27878, "o_rev_id": 1151298544, "in": [], "out": [ @@ -240745,21 +240381,21 @@ }, { "str": "received", - "token_id": 27923, + "token_id": 27879, "o_rev_id": 1151560809, "in": [], "out": [] }, { "str": "praise", - "token_id": 27924, + "token_id": 27880, "o_rev_id": 1151560809, "in": [], "out": [] }, { "str": "additional", - "token_id": 27925, + "token_id": 27881, "o_rev_id": 1151560809, "in": [], "out": [ @@ -240768,7 +240404,7 @@ }, { "str": "maps", - "token_id": 27926, + "token_id": 27882, "o_rev_id": 1151560809, "in": [], "out": [ @@ -240777,56 +240413,56 @@ }, { "str": ",", - "token_id": 27927, + "token_id": 27883, "o_rev_id": 1151560809, "in": [], "out": [] }, { "str": "but", - "token_id": 27928, + "token_id": 27884, "o_rev_id": 1151560809, "in": [], "out": [] }, { "str": "for", - "token_id": 27929, + "token_id": 27885, "o_rev_id": 1151560809, "in": [], "out": [] }, { "str": "its", - "token_id": 27930, + "token_id": 27886, "o_rev_id": 1151560809, "in": [], "out": [] }, { "str": "disconnection", - "token_id": 27931, + "token_id": 27887, "o_rev_id": 1151560809, "in": [], "out": [] }, { "str": "issues", - "token_id": 27932, + "token_id": 27888, "o_rev_id": 1151560809, "in": [], "out": [] }, { "str": "generally", - "token_id": 27933, + "token_id": 27889, "o_rev_id": 1151561167, "in": [], "out": [] }, { "str": "favourable", - "token_id": 27934, + "token_id": 27890, "o_rev_id": 1151561167, "in": [], "out": [ @@ -240835,658 +240471,658 @@ }, { "str": "reviews", - "token_id": 27935, + "token_id": 27891, "o_rev_id": 1151561167, "in": [], "out": [] }, { "str": ",", - "token_id": 27936, + "token_id": 27892, "o_rev_id": 1151561167, "in": [], "out": [] }, { "str": "with", - "token_id": 27937, + "token_id": 27893, "o_rev_id": 1151561167, "in": [], "out": [] }, { "str": "favorable", - "token_id": 27938, + "token_id": 27894, "o_rev_id": 1151571135, "in": [], "out": [] }, { "str": "matchmaking", - "token_id": 27939, + "token_id": 27895, "o_rev_id": 1152257575, "in": [], "out": [] }, { "str": "and", - "token_id": 27940, + "token_id": 27896, "o_rev_id": 1152257575, "in": [], "out": [] }, { "str": ",", - "token_id": 27941, + "token_id": 27897, "o_rev_id": 1152297902, "in": [], "out": [] }, { "str": ",", - "token_id": 27942, + "token_id": 27898, "o_rev_id": 1152297902, "in": [], "out": [] }, { "str": "'", - "token_id": 27943, + "token_id": 27899, "o_rev_id": 1152297902, "in": [], "out": [] }, { "str": "'", - "token_id": 27944, + "token_id": 27900, "o_rev_id": 1152297902, "in": [], "out": [] }, { "str": "]]", - "token_id": 27945, + "token_id": 27901, "o_rev_id": 1152297902, "in": [], "out": [] }, { "str": "4", - "token_id": 27946, + "token_id": 27902, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "\"", - "token_id": 27947, + "token_id": 27903, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 27948, + "token_id": 27904, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "2022", - "token_id": 27949, + "token_id": 27905, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 27950, + "token_id": 27906, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "rowspan", - "token_id": 27951, + "token_id": 27907, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 27952, + "token_id": 27908, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "\"", - "token_id": 27953, + "token_id": 27909, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "[[", - "token_id": 27954, + "token_id": 27910, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "golden", - "token_id": 27955, + "token_id": 27911, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "joystick", - "token_id": 27956, + "token_id": 27912, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "awards", - "token_id": 27957, + "token_id": 27913, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "]]", - "token_id": 27958, + "token_id": 27914, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 27959, + "token_id": 27915, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "best", - "token_id": 27960, + "token_id": 27916, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 27961, + "token_id": 27917, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "game", - "token_id": 27962, + "token_id": 27918, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 27963, + "token_id": 27919, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "{{", - "token_id": 27964, + "token_id": 27920, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "nom", - "token_id": 27965, + "token_id": 27921, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "}}", - "token_id": 27966, + "token_id": 27922, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 27967, + "token_id": 27923, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "style", - "token_id": 27968, + "token_id": 27924, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 27969, + "token_id": 27925, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "\"", - "token_id": 27970, + "token_id": 27926, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "text", - "token_id": 27971, + "token_id": 27927, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 27972, + "token_id": 27928, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "align", - "token_id": 27973, + "token_id": 27929, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ":", - "token_id": 27974, + "token_id": 27930, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "center", - "token_id": 27975, + "token_id": 27931, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ";", - "token_id": 27976, + "token_id": 27932, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "\"", - "token_id": 27977, + "token_id": 27933, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "rowspan", - "token_id": 27978, + "token_id": 27934, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 27979, + "token_id": 27935, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "\"", - "token_id": 27980, + "token_id": 27936, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "2", - "token_id": 27981, + "token_id": 27937, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "\"", - "token_id": 27982, + "token_id": 27938, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 27983, + "token_id": 27939, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "<", - "token_id": 27984, + "token_id": 27940, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "ref", - "token_id": 27985, + "token_id": 27941, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ">", - "token_id": 27986, + "token_id": 27942, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "{{", - "token_id": 27987, + "token_id": 27943, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "cite", - "token_id": 27988, + "token_id": 27944, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "web", - "token_id": 27989, + "token_id": 27945, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 27990, + "token_id": 27946, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "url", - "token_id": 27991, + "token_id": 27947, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 27992, + "token_id": 27948, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "https", - "token_id": 27993, + "token_id": 27949, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ":", - "token_id": 27994, + "token_id": 27950, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 27995, + "token_id": 27951, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 27996, + "token_id": 27952, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "www", - "token_id": 27997, + "token_id": 27953, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ".", - "token_id": 27998, + "token_id": 27954, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "gamesradar", - "token_id": 27999, + "token_id": 27955, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ".", - "token_id": 28000, + "token_id": 27956, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "com", - "token_id": 28001, + "token_id": 27957, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28002, + "token_id": 27958, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "golden", - "token_id": 28003, + "token_id": 27959, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28004, + "token_id": 27960, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "joystick", - "token_id": 28005, + "token_id": 27961, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28006, + "token_id": 27962, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "awards", - "token_id": 28007, + "token_id": 27963, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28008, + "token_id": 27964, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28009, + "token_id": 27965, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "winners", - "token_id": 28010, + "token_id": 27966, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28011, + "token_id": 27967, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28012, + "token_id": 27968, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "title", - "token_id": 28013, + "token_id": 27969, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28014, + "token_id": 27970, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "here", - "token_id": 28015, + "token_id": 27971, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "are", - "token_id": 28016, + "token_id": 27972, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "all", - "token_id": 28017, + "token_id": 27973, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "the", - "token_id": 28018, + "token_id": 27974, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "golden", - "token_id": 28019, + "token_id": 27975, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "joystick", - "token_id": 28020, + "token_id": 27976, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "awards", - "token_id": 28021, + "token_id": 27977, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "2022", - "token_id": 28022, + "token_id": 27978, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "winners", - "token_id": 28023, + "token_id": 27979, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28024, + "token_id": 27980, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "date", - "token_id": 28025, + "token_id": 27981, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28026, + "token_id": 27982, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "2022", - "token_id": 28027, + "token_id": 27983, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28028, + "token_id": 27984, "o_rev_id": 1152546330, "in": [], "out": [ @@ -241495,7 +241131,7 @@ }, { "str": "11", - "token_id": 28029, + "token_id": 27985, "o_rev_id": 1152546330, "in": [], "out": [ @@ -241504,7 +241140,7 @@ }, { "str": "-", - "token_id": 28030, + "token_id": 27986, "o_rev_id": 1152546330, "in": [], "out": [ @@ -241513,28 +241149,28 @@ }, { "str": "22", - "token_id": 28031, + "token_id": 27987, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28032, + "token_id": 27988, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "access", - "token_id": 28033, + "token_id": 27989, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28034, + "token_id": 27990, "o_rev_id": 1152546330, "in": [], "out": [ @@ -241543,28 +241179,28 @@ }, { "str": "date", - "token_id": 28035, + "token_id": 27991, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28036, + "token_id": 27992, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "2023", - "token_id": 28037, + "token_id": 27993, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28038, + "token_id": 27994, "o_rev_id": 1152546330, "in": [], "out": [ @@ -241573,7 +241209,7 @@ }, { "str": "04", - "token_id": 28039, + "token_id": 27995, "o_rev_id": 1152546330, "in": [], "out": [ @@ -241582,7 +241218,7 @@ }, { "str": "-", - "token_id": 28040, + "token_id": 27996, "o_rev_id": 1152546330, "in": [], "out": [ @@ -241591,133 +241227,133 @@ }, { "str": "30", - "token_id": 28041, + "token_id": 27997, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28042, + "token_id": 27998, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "website", - "token_id": 28043, + "token_id": 27999, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28044, + "token_id": 28000, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "[[", - "token_id": 28045, + "token_id": 28001, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "gamesradar", - "token_id": 28046, + "token_id": 28002, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "+", - "token_id": 28047, + "token_id": 28003, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "]]", - "token_id": 28048, + "token_id": 28004, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28049, + "token_id": 28005, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "last", - "token_id": 28050, + "token_id": 28006, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28051, + "token_id": 28007, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "loveridge", - "token_id": 28052, + "token_id": 28008, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28053, + "token_id": 28009, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "first", - "token_id": 28054, + "token_id": 28010, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28055, + "token_id": 28011, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "sam", - "token_id": 28056, + "token_id": 28012, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28057, + "token_id": 28013, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "archive", - "token_id": 28058, + "token_id": 28014, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28059, + "token_id": 28015, "o_rev_id": 1152546330, "in": [], "out": [ @@ -241726,273 +241362,273 @@ }, { "str": "url", - "token_id": 28060, + "token_id": 28016, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28061, + "token_id": 28017, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "https", - "token_id": 28062, + "token_id": 28018, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ":", - "token_id": 28063, + "token_id": 28019, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28064, + "token_id": 28020, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28065, + "token_id": 28021, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "web", - "token_id": 28066, + "token_id": 28022, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ".", - "token_id": 28067, + "token_id": 28023, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "archive", - "token_id": 28068, + "token_id": 28024, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ".", - "token_id": 28069, + "token_id": 28025, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "org", - "token_id": 28070, + "token_id": 28026, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28071, + "token_id": 28027, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "web", - "token_id": 28072, + "token_id": 28028, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28073, + "token_id": 28029, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "20230317003345", - "token_id": 28074, + "token_id": 28030, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28075, + "token_id": 28031, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "https", - "token_id": 28076, + "token_id": 28032, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ":", - "token_id": 28077, + "token_id": 28033, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28078, + "token_id": 28034, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28079, + "token_id": 28035, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "www", - "token_id": 28080, + "token_id": 28036, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ".", - "token_id": 28081, + "token_id": 28037, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "gamesradar", - "token_id": 28082, + "token_id": 28038, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ".", - "token_id": 28083, + "token_id": 28039, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "com", - "token_id": 28084, + "token_id": 28040, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28085, + "token_id": 28041, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "golden", - "token_id": 28086, + "token_id": 28042, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28087, + "token_id": 28043, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "joystick", - "token_id": 28088, + "token_id": 28044, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28089, + "token_id": 28045, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "awards", - "token_id": 28090, + "token_id": 28046, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28091, + "token_id": 28047, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "2022", - "token_id": 28092, + "token_id": 28048, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28093, + "token_id": 28049, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "winners", - "token_id": 28094, + "token_id": 28050, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28095, + "token_id": 28051, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28096, + "token_id": 28052, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "archive", - "token_id": 28097, + "token_id": 28053, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28098, + "token_id": 28054, "o_rev_id": 1152546330, "in": [], "out": [ @@ -242001,28 +241637,28 @@ }, { "str": "date", - "token_id": 28099, + "token_id": 28055, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28100, + "token_id": 28056, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "2023", - "token_id": 28101, + "token_id": 28057, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28102, + "token_id": 28058, "o_rev_id": 1152546330, "in": [], "out": [ @@ -242031,7 +241667,7 @@ }, { "str": "03", - "token_id": 28103, + "token_id": 28059, "o_rev_id": 1152546330, "in": [], "out": [ @@ -242040,7 +241676,7 @@ }, { "str": "-", - "token_id": 28104, + "token_id": 28060, "o_rev_id": 1152546330, "in": [], "out": [ @@ -242049,28 +241685,28 @@ }, { "str": "17", - "token_id": 28105, + "token_id": 28061, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28106, + "token_id": 28062, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "url", - "token_id": 28107, + "token_id": 28063, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28108, + "token_id": 28064, "o_rev_id": 1152546330, "in": [], "out": [ @@ -242079,161 +241715,161 @@ }, { "str": "status", - "token_id": 28109, + "token_id": 28065, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "=", - "token_id": 28110, + "token_id": 28066, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "live", - "token_id": 28111, + "token_id": 28067, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "}}", - "token_id": 28112, + "token_id": 28068, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "<", - "token_id": 28113, + "token_id": 28069, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "/", - "token_id": 28114, + "token_id": 28070, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "ref", - "token_id": 28115, + "token_id": 28071, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": ">", - "token_id": 28116, + "token_id": 28072, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28117, + "token_id": 28073, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28118, + "token_id": 28074, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28119, + "token_id": 28075, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 28120, + "token_id": 28076, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "game", - "token_id": 28121, + "token_id": 28077, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "of", - "token_id": 28122, + "token_id": 28078, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "the", - "token_id": 28123, + "token_id": 28079, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "year", - "token_id": 28124, + "token_id": 28080, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28125, + "token_id": 28081, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "{{", - "token_id": 28126, + "token_id": 28082, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "nom", - "token_id": 28127, + "token_id": 28083, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "}}", - "token_id": 28128, + "token_id": 28084, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "|", - "token_id": 28129, + "token_id": 28085, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "-", - "token_id": 28130, + "token_id": 28086, "o_rev_id": 1152546330, "in": [], "out": [] }, { "str": "[", - "token_id": 28131, + "token_id": 28087, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242242,7 +241878,7 @@ }, { "str": "https", - "token_id": 28132, + "token_id": 28088, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242251,7 +241887,7 @@ }, { "str": ":", - "token_id": 28133, + "token_id": 28089, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242260,7 +241896,7 @@ }, { "str": "/", - "token_id": 28134, + "token_id": 28090, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242269,7 +241905,7 @@ }, { "str": "/", - "token_id": 28135, + "token_id": 28091, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242278,7 +241914,7 @@ }, { "str": "splatoon", - "token_id": 28136, + "token_id": 28092, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242287,7 +241923,7 @@ }, { "str": ".", - "token_id": 28137, + "token_id": 28093, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242296,7 +241932,7 @@ }, { "str": "nintendo", - "token_id": 28138, + "token_id": 28094, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242305,7 +241941,7 @@ }, { "str": ".", - "token_id": 28139, + "token_id": 28095, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242314,7 +241950,7 @@ }, { "str": "com", - "token_id": 28140, + "token_id": 28096, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242323,7 +241959,7 @@ }, { "str": "/", - "token_id": 28141, + "token_id": 28097, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242332,7 +241968,7 @@ }, { "str": "79", - "token_id": 28142, + "token_id": 28098, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242341,7 +241977,7 @@ }, { "str": ".", - "token_id": 28143, + "token_id": 28099, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242350,7 +241986,7 @@ }, { "str": "nintendo", - "token_id": 28144, + "token_id": 28100, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242359,7 +241995,7 @@ }, { "str": ":", - "token_id": 28145, + "token_id": 28101, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242368,7 +242004,7 @@ }, { "str": "splatoon", - "token_id": 28146, + "token_id": 28102, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242377,7 +242013,7 @@ }, { "str": "3", - "token_id": 28147, + "token_id": 28103, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242386,7 +242022,7 @@ }, { "str": "]", - "token_id": 28148, + "token_id": 28104, "o_rev_id": 1153208497, "in": [], "out": [ @@ -242395,7 +242031,7 @@ }, { "str": "as", - "token_id": 28149, + "token_id": 28105, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242407,7 +242043,7 @@ }, { "str": "of", - "token_id": 28150, + "token_id": 28106, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242419,42 +242055,43 @@ }, { "str": "31", - "token_id": 28151, + "token_id": 28107, "o_rev_id": 1154033087, "in": [ 1154342703 ], "out": [ - 1154339561 + 1154339561, + 1154342836 ] }, { "str": "march", - "token_id": 28152, + "token_id": 28108, "o_rev_id": 1154033087, "in": [ 1154342703 ], "out": [ 1154339561, - 1204813986 + 1154342836 ] }, { "str": "2023", - "token_id": 28153, + "token_id": 28109, "o_rev_id": 1154033087, "in": [ 1154342703 ], "out": [ 1154339561, - 1222725383 + 1154342836 ] }, { "str": "the", - "token_id": 28154, + "token_id": 28110, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242466,7 +242103,7 @@ }, { "str": "game", - "token_id": 28155, + "token_id": 28111, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242478,7 +242115,7 @@ }, { "str": "has", - "token_id": 28156, + "token_id": 28112, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242490,7 +242127,7 @@ }, { "str": "now", - "token_id": 28157, + "token_id": 28113, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242502,7 +242139,7 @@ }, { "str": "sold", - "token_id": 28158, + "token_id": 28114, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242514,7 +242151,7 @@ }, { "str": "10", - "token_id": 28159, + "token_id": 28115, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242526,7 +242163,7 @@ }, { "str": ".", - "token_id": 28160, + "token_id": 28116, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242538,7 +242175,7 @@ }, { "str": "67", - "token_id": 28161, + "token_id": 28117, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242550,7 +242187,7 @@ }, { "str": "million", - "token_id": 28162, + "token_id": 28118, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242562,7 +242199,7 @@ }, { "str": "copies", - "token_id": 28163, + "token_id": 28119, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242574,7 +242211,7 @@ }, { "str": "worldwide", - "token_id": 28164, + "token_id": 28120, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242586,7 +242223,7 @@ }, { "str": ".", - "token_id": 28165, + "token_id": 28121, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242598,7 +242235,7 @@ }, { "str": "<", - "token_id": 28166, + "token_id": 28122, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242609,7 +242246,7 @@ }, { "str": "ref", - "token_id": 28167, + "token_id": 28123, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242620,7 +242257,7 @@ }, { "str": ">", - "token_id": 28168, + "token_id": 28124, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242631,7 +242268,7 @@ }, { "str": "{{", - "token_id": 28169, + "token_id": 28125, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242642,7 +242279,7 @@ }, { "str": "cite", - "token_id": 28170, + "token_id": 28126, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242653,7 +242290,7 @@ }, { "str": "web", - "token_id": 28171, + "token_id": 28127, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242664,7 +242301,7 @@ }, { "str": "|", - "token_id": 28172, + "token_id": 28128, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242675,7 +242312,7 @@ }, { "str": "title", - "token_id": 28173, + "token_id": 28129, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242686,7 +242323,7 @@ }, { "str": "=", - "token_id": 28174, + "token_id": 28130, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242697,7 +242334,7 @@ }, { "str": "financial", - "token_id": 28175, + "token_id": 28131, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242708,7 +242345,7 @@ }, { "str": "results", - "token_id": 28176, + "token_id": 28132, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242719,7 +242356,7 @@ }, { "str": "explanatory", - "token_id": 28177, + "token_id": 28133, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242730,7 +242367,7 @@ }, { "str": "material", - "token_id": 28178, + "token_id": 28134, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242741,7 +242378,7 @@ }, { "str": "fiscal", - "token_id": 28179, + "token_id": 28135, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242752,7 +242389,7 @@ }, { "str": "year", - "token_id": 28180, + "token_id": 28136, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242763,7 +242400,7 @@ }, { "str": "ended", - "token_id": 28181, + "token_id": 28137, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242774,7 +242411,7 @@ }, { "str": "march", - "token_id": 28182, + "token_id": 28138, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242786,7 +242423,7 @@ }, { "str": "2023", - "token_id": 28183, + "token_id": 28139, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242798,7 +242435,7 @@ }, { "str": "|", - "token_id": 28184, + "token_id": 28140, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242809,7 +242446,7 @@ }, { "str": "url", - "token_id": 28185, + "token_id": 28141, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242820,7 +242457,7 @@ }, { "str": "=", - "token_id": 28186, + "token_id": 28142, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242831,7 +242468,7 @@ }, { "str": "https", - "token_id": 28187, + "token_id": 28143, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242842,7 +242479,7 @@ }, { "str": ":", - "token_id": 28188, + "token_id": 28144, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242853,7 +242490,7 @@ }, { "str": "/", - "token_id": 28189, + "token_id": 28145, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242864,7 +242501,7 @@ }, { "str": "/", - "token_id": 28190, + "token_id": 28146, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242875,7 +242512,7 @@ }, { "str": "www", - "token_id": 28191, + "token_id": 28147, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242886,7 +242523,7 @@ }, { "str": ".", - "token_id": 28192, + "token_id": 28148, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242897,7 +242534,7 @@ }, { "str": "nintendo", - "token_id": 28193, + "token_id": 28149, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242908,7 +242545,7 @@ }, { "str": ".", - "token_id": 28194, + "token_id": 28150, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242919,7 +242556,7 @@ }, { "str": "co", - "token_id": 28195, + "token_id": 28151, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242930,7 +242567,7 @@ }, { "str": ".", - "token_id": 28196, + "token_id": 28152, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242941,7 +242578,7 @@ }, { "str": "jp", - "token_id": 28197, + "token_id": 28153, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242952,7 +242589,7 @@ }, { "str": "/", - "token_id": 28198, + "token_id": 28154, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242963,7 +242600,7 @@ }, { "str": "ir", - "token_id": 28199, + "token_id": 28155, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242974,7 +242611,7 @@ }, { "str": "/", - "token_id": 28200, + "token_id": 28156, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242985,7 +242622,7 @@ }, { "str": "pdf", - "token_id": 28201, + "token_id": 28157, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -242996,7 +242633,7 @@ }, { "str": "/", - "token_id": 28202, + "token_id": 28158, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243007,7 +242644,7 @@ }, { "str": "2023", - "token_id": 28203, + "token_id": 28159, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243019,7 +242656,7 @@ }, { "str": "/", - "token_id": 28204, + "token_id": 28160, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243030,7 +242667,7 @@ }, { "str": "230509", - "token_id": 28205, + "token_id": 28161, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243042,7 +242679,7 @@ }, { "str": "_", - "token_id": 28206, + "token_id": 28162, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243053,7 +242690,7 @@ }, { "str": "3e", - "token_id": 28207, + "token_id": 28163, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243064,7 +242701,7 @@ }, { "str": ".", - "token_id": 28208, + "token_id": 28164, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243075,7 +242712,7 @@ }, { "str": "pdf", - "token_id": 28209, + "token_id": 28165, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243086,7 +242723,7 @@ }, { "str": "#", - "token_id": 28210, + "token_id": 28166, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243098,7 +242735,7 @@ }, { "str": "page", - "token_id": 28211, + "token_id": 28167, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243110,7 +242747,7 @@ }, { "str": "=", - "token_id": 28212, + "token_id": 28168, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243122,7 +242759,7 @@ }, { "str": "19", - "token_id": 28213, + "token_id": 28169, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243134,7 +242771,7 @@ }, { "str": "|", - "token_id": 28214, + "token_id": 28170, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243145,7 +242782,7 @@ }, { "str": "access", - "token_id": 28215, + "token_id": 28171, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243156,7 +242793,7 @@ }, { "str": "-", - "token_id": 28216, + "token_id": 28172, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243170,7 +242807,7 @@ }, { "str": "date", - "token_id": 28217, + "token_id": 28173, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243181,7 +242818,7 @@ }, { "str": "=", - "token_id": 28218, + "token_id": 28174, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243192,7 +242829,7 @@ }, { "str": "may", - "token_id": 28219, + "token_id": 28175, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243204,7 +242841,7 @@ }, { "str": "9", - "token_id": 28220, + "token_id": 28176, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243216,7 +242853,7 @@ }, { "str": ",", - "token_id": 28221, + "token_id": 28177, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243230,7 +242867,7 @@ }, { "str": "2023", - "token_id": 28222, + "token_id": 28178, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243242,7 +242879,7 @@ }, { "str": "|", - "token_id": 28223, + "token_id": 28179, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243253,7 +242890,7 @@ }, { "str": "archive", - "token_id": 28224, + "token_id": 28180, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243264,7 +242901,7 @@ }, { "str": "-", - "token_id": 28225, + "token_id": 28181, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243275,7 +242912,7 @@ }, { "str": "date", - "token_id": 28226, + "token_id": 28182, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243286,7 +242923,7 @@ }, { "str": "=", - "token_id": 28227, + "token_id": 28183, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243297,7 +242934,7 @@ }, { "str": "may", - "token_id": 28228, + "token_id": 28184, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243309,7 +242946,7 @@ }, { "str": "9", - "token_id": 28229, + "token_id": 28185, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243321,7 +242958,7 @@ }, { "str": ",", - "token_id": 28230, + "token_id": 28186, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243335,7 +242972,7 @@ }, { "str": "2023", - "token_id": 28231, + "token_id": 28187, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243347,7 +242984,7 @@ }, { "str": "|", - "token_id": 28232, + "token_id": 28188, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243358,7 +242995,7 @@ }, { "str": "archive", - "token_id": 28233, + "token_id": 28189, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243369,7 +243006,7 @@ }, { "str": "-", - "token_id": 28234, + "token_id": 28190, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243383,7 +243020,7 @@ }, { "str": "url", - "token_id": 28235, + "token_id": 28191, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243394,7 +243031,7 @@ }, { "str": "=", - "token_id": 28236, + "token_id": 28192, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243405,7 +243042,7 @@ }, { "str": "https", - "token_id": 28237, + "token_id": 28193, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243416,7 +243053,7 @@ }, { "str": ":", - "token_id": 28238, + "token_id": 28194, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243427,7 +243064,7 @@ }, { "str": "/", - "token_id": 28239, + "token_id": 28195, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243438,7 +243075,7 @@ }, { "str": "/", - "token_id": 28240, + "token_id": 28196, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243449,7 +243086,7 @@ }, { "str": "web", - "token_id": 28241, + "token_id": 28197, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243460,7 +243097,7 @@ }, { "str": ".", - "token_id": 28242, + "token_id": 28198, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243471,7 +243108,7 @@ }, { "str": "archive", - "token_id": 28243, + "token_id": 28199, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243482,7 +243119,7 @@ }, { "str": ".", - "token_id": 28244, + "token_id": 28200, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243493,7 +243130,7 @@ }, { "str": "org", - "token_id": 28245, + "token_id": 28201, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243504,7 +243141,7 @@ }, { "str": "/", - "token_id": 28246, + "token_id": 28202, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243515,7 +243152,7 @@ }, { "str": "web", - "token_id": 28247, + "token_id": 28203, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243526,7 +243163,7 @@ }, { "str": "/", - "token_id": 28248, + "token_id": 28204, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243537,7 +243174,7 @@ }, { "str": "20230509154008", - "token_id": 28249, + "token_id": 28205, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243549,7 +243186,7 @@ }, { "str": "/", - "token_id": 28250, + "token_id": 28206, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243560,7 +243197,7 @@ }, { "str": "https", - "token_id": 28251, + "token_id": 28207, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243571,7 +243208,7 @@ }, { "str": ":", - "token_id": 28252, + "token_id": 28208, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243582,7 +243219,7 @@ }, { "str": "/", - "token_id": 28253, + "token_id": 28209, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243593,7 +243230,7 @@ }, { "str": "/", - "token_id": 28254, + "token_id": 28210, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243604,7 +243241,7 @@ }, { "str": "www", - "token_id": 28255, + "token_id": 28211, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243615,7 +243252,7 @@ }, { "str": ".", - "token_id": 28256, + "token_id": 28212, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243626,7 +243263,7 @@ }, { "str": "nintendo", - "token_id": 28257, + "token_id": 28213, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243637,7 +243274,7 @@ }, { "str": ".", - "token_id": 28258, + "token_id": 28214, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243648,7 +243285,7 @@ }, { "str": "co", - "token_id": 28259, + "token_id": 28215, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243659,7 +243296,7 @@ }, { "str": ".", - "token_id": 28260, + "token_id": 28216, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243670,7 +243307,7 @@ }, { "str": "jp", - "token_id": 28261, + "token_id": 28217, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243681,7 +243318,7 @@ }, { "str": "/", - "token_id": 28262, + "token_id": 28218, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243692,7 +243329,7 @@ }, { "str": "ir", - "token_id": 28263, + "token_id": 28219, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243703,7 +243340,7 @@ }, { "str": "/", - "token_id": 28264, + "token_id": 28220, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243714,7 +243351,7 @@ }, { "str": "pdf", - "token_id": 28265, + "token_id": 28221, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243725,7 +243362,7 @@ }, { "str": "/", - "token_id": 28266, + "token_id": 28222, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243736,7 +243373,7 @@ }, { "str": "2023", - "token_id": 28267, + "token_id": 28223, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243748,7 +243385,7 @@ }, { "str": "/", - "token_id": 28268, + "token_id": 28224, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243759,7 +243396,7 @@ }, { "str": "230509", - "token_id": 28269, + "token_id": 28225, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243771,7 +243408,7 @@ }, { "str": "_", - "token_id": 28270, + "token_id": 28226, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243782,7 +243419,7 @@ }, { "str": "3e", - "token_id": 28271, + "token_id": 28227, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243793,7 +243430,7 @@ }, { "str": ".", - "token_id": 28272, + "token_id": 28228, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243804,7 +243441,7 @@ }, { "str": "pdf", - "token_id": 28273, + "token_id": 28229, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243815,7 +243452,7 @@ }, { "str": "#", - "token_id": 28274, + "token_id": 28230, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243827,7 +243464,7 @@ }, { "str": "page", - "token_id": 28275, + "token_id": 28231, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243839,7 +243476,7 @@ }, { "str": "=", - "token_id": 28276, + "token_id": 28232, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243851,7 +243488,7 @@ }, { "str": "19", - "token_id": 28277, + "token_id": 28233, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243863,7 +243500,7 @@ }, { "str": "|", - "token_id": 28278, + "token_id": 28234, "o_rev_id": 1154033087, "in": [ 1154342703 @@ -243874,7 +243511,7 @@ }, { "str": "url", - "token_id": 28279, + "token_id": 28235, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243887,7 +243524,7 @@ }, { "str": "-", - "token_id": 28280, + "token_id": 28236, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243900,7 +243537,7 @@ }, { "str": "status", - "token_id": 28281, + "token_id": 28237, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243913,7 +243550,7 @@ }, { "str": "=", - "token_id": 28282, + "token_id": 28238, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243926,7 +243563,7 @@ }, { "str": "live", - "token_id": 28283, + "token_id": 28239, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243939,7 +243576,7 @@ }, { "str": "}}", - "token_id": 28284, + "token_id": 28240, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243952,7 +243589,7 @@ }, { "str": "<", - "token_id": 28285, + "token_id": 28241, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243965,7 +243602,7 @@ }, { "str": "/", - "token_id": 28286, + "token_id": 28242, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243978,7 +243615,7 @@ }, { "str": "ref", - "token_id": 28287, + "token_id": 28243, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -243991,7 +243628,7 @@ }, { "str": ">", - "token_id": 28288, + "token_id": 28244, "o_rev_id": 1154033087, "in": [ 1154342703, @@ -244002,9 +243639,34 @@ 1154342836 ] }, + { + "str": "31", + "token_id": 28245, + "o_rev_id": 1154342836, + "in": [], + "out": [] + }, + { + "str": "march", + "token_id": 28246, + "o_rev_id": 1154342836, + "in": [], + "out": [ + 1204813986 + ] + }, + { + "str": "2023", + "token_id": 28247, + "o_rev_id": 1154342836, + "in": [], + "out": [ + 1222725383 + ] + }, { "str": "now", - "token_id": 28289, + "token_id": 28248, "o_rev_id": 1154342836, "in": [], "out": [ @@ -244013,7 +243675,7 @@ }, { "str": "67", - "token_id": 28290, + "token_id": 28249, "o_rev_id": 1154342836, "in": [], "out": [ @@ -244022,7 +243684,7 @@ }, { "str": "kit", - "token_id": 28291, + "token_id": 28250, "o_rev_id": 1154668874, "in": [ 1154797999, @@ -244040,7 +243702,7 @@ }, { "str": "kit", - "token_id": 28292, + "token_id": 28251, "o_rev_id": 1154668874, "in": [ 1154797999, @@ -244058,7 +243720,7 @@ }, { "str": "sub", - "token_id": 28293, + "token_id": 28252, "o_rev_id": 1154668874, "in": [ 1154797999, @@ -244076,7 +243738,7 @@ }, { "str": "sub", - "token_id": 28294, + "token_id": 28253, "o_rev_id": 1154668874, "in": [ 1154797999, @@ -244094,7 +243756,7 @@ }, { "str": "1", - "token_id": 28295, + "token_id": 28254, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244103,7 +243765,7 @@ }, { "str": "2", - "token_id": 28296, + "token_id": 28255, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244112,7 +243774,7 @@ }, { "str": "(", - "token_id": 28297, + "token_id": 28256, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244121,7 +243783,7 @@ }, { "str": "plus", - "token_id": 28298, + "token_id": 28257, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244130,7 +243792,7 @@ }, { "str": "our", - "token_id": 28299, + "token_id": 28258, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244139,7 +243801,7 @@ }, { "str": "dear", - "token_id": 28300, + "token_id": 28259, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244148,7 +243810,7 @@ }, { "str": "friend", - "token_id": 28301, + "token_id": 28260, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244157,7 +243819,7 @@ }, { "str": "deep", - "token_id": 28302, + "token_id": 28261, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244166,7 +243828,7 @@ }, { "str": "cut", - "token_id": 28303, + "token_id": 28262, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244175,7 +243837,7 @@ }, { "str": ")", - "token_id": 28304, + "token_id": 28263, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244184,7 +243846,7 @@ }, { "str": "sing", - "token_id": 28305, + "token_id": 28264, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244193,7 +243855,7 @@ }, { "str": "calamari", - "token_id": 28306, + "token_id": 28265, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244202,7 +243864,7 @@ }, { "str": "inkantation", - "token_id": 28307, + "token_id": 28266, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244211,7 +243873,7 @@ }, { "str": "remix", - "token_id": 28308, + "token_id": 28267, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244220,7 +243882,7 @@ }, { "str": "causing", - "token_id": 28309, + "token_id": 28268, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244229,7 +243891,7 @@ }, { "str": "smallfry", - "token_id": 28310, + "token_id": 28269, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244238,7 +243900,7 @@ }, { "str": "to", - "token_id": 28311, + "token_id": 28270, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244247,7 +243909,7 @@ }, { "str": "evolve", - "token_id": 28312, + "token_id": 28271, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244256,7 +243918,7 @@ }, { "str": ".", - "token_id": 28313, + "token_id": 28272, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244265,7 +243927,7 @@ }, { "str": "dj", - "token_id": 28314, + "token_id": 28273, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244274,7 +243936,7 @@ }, { "str": "octavio", - "token_id": 28315, + "token_id": 28274, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244283,7 +243945,7 @@ }, { "str": "appears", - "token_id": 28316, + "token_id": 28275, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244292,7 +243954,7 @@ }, { "str": "and", - "token_id": 28317, + "token_id": 28276, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244301,7 +243963,7 @@ }, { "str": "helps", - "token_id": 28318, + "token_id": 28277, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244310,7 +243972,7 @@ }, { "str": "agent", - "token_id": 28319, + "token_id": 28278, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244319,7 +243981,7 @@ }, { "str": "3", - "token_id": 28320, + "token_id": 28279, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244328,7 +243990,7 @@ }, { "str": "suck", - "token_id": 28321, + "token_id": 28280, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244337,7 +243999,7 @@ }, { "str": "up", - "token_id": 28322, + "token_id": 28281, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244346,7 +244008,7 @@ }, { "str": "all", - "token_id": 28323, + "token_id": 28282, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244355,7 +244017,7 @@ }, { "str": "of", - "token_id": 28324, + "token_id": 28283, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244364,7 +244026,7 @@ }, { "str": "'", - "token_id": 28325, + "token_id": 28284, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244373,7 +244035,7 @@ }, { "str": "s", - "token_id": 28326, + "token_id": 28285, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244382,7 +244044,7 @@ }, { "str": "fuzzballs", - "token_id": 28327, + "token_id": 28286, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244391,7 +244053,7 @@ }, { "str": "using", - "token_id": 28328, + "token_id": 28287, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244400,7 +244062,7 @@ }, { "str": "his", - "token_id": 28329, + "token_id": 28288, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244409,7 +244071,7 @@ }, { "str": "giant", - "token_id": 28330, + "token_id": 28289, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244418,7 +244080,7 @@ }, { "str": "turntable", - "token_id": 28331, + "token_id": 28290, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244427,7 +244089,7 @@ }, { "str": "death", - "token_id": 28332, + "token_id": 28291, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244436,7 +244098,7 @@ }, { "str": "machine", - "token_id": 28333, + "token_id": 28292, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244445,7 +244107,7 @@ }, { "str": ",", - "token_id": 28334, + "token_id": 28293, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244454,7 +244116,7 @@ }, { "str": "which", - "token_id": 28335, + "token_id": 28294, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244463,7 +244125,7 @@ }, { "str": "results", - "token_id": 28336, + "token_id": 28295, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244472,7 +244134,7 @@ }, { "str": "in", - "token_id": 28337, + "token_id": 28296, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244481,7 +244143,7 @@ }, { "str": "defeat", - "token_id": 28338, + "token_id": 28297, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244490,7 +244152,7 @@ }, { "str": "of", - "token_id": 28339, + "token_id": 28298, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244499,7 +244161,7 @@ }, { "str": "him", - "token_id": 28340, + "token_id": 28299, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244508,7 +244170,7 @@ }, { "str": ".", - "token_id": 28341, + "token_id": 28300, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244517,7 +244179,7 @@ }, { "str": "there", - "token_id": 28342, + "token_id": 28301, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244526,7 +244188,7 @@ }, { "str": "is", - "token_id": 28343, + "token_id": 28302, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244535,7 +244197,7 @@ }, { "str": "also", - "token_id": 28344, + "token_id": 28303, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244544,7 +244206,7 @@ }, { "str": "a", - "token_id": 28345, + "token_id": 28304, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244553,7 +244215,7 @@ }, { "str": "new", - "token_id": 28346, + "token_id": 28305, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244562,7 +244224,7 @@ }, { "str": "and", - "token_id": 28347, + "token_id": 28306, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244571,7 +244233,7 @@ }, { "str": "soon", - "token_id": 28348, + "token_id": 28307, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244580,7 +244242,7 @@ }, { "str": "to", - "token_id": 28349, + "token_id": 28308, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244589,7 +244251,7 @@ }, { "str": "be", - "token_id": 28350, + "token_id": 28309, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244598,7 +244260,7 @@ }, { "str": "coming", - "token_id": 28351, + "token_id": 28310, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244607,7 +244269,7 @@ }, { "str": "\"", - "token_id": 28352, + "token_id": 28311, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244616,7 +244278,7 @@ }, { "str": "side", - "token_id": 28353, + "token_id": 28312, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244625,7 +244287,7 @@ }, { "str": "order", - "token_id": 28354, + "token_id": 28313, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244634,7 +244296,7 @@ }, { "str": "\"", - "token_id": 28355, + "token_id": 28314, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244643,7 +244305,7 @@ }, { "str": ".", - "token_id": 28356, + "token_id": 28315, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244652,7 +244314,7 @@ }, { "str": "it", - "token_id": 28357, + "token_id": 28316, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244661,7 +244323,7 @@ }, { "str": "is", - "token_id": 28358, + "token_id": 28317, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244670,7 +244332,7 @@ }, { "str": "exepected", - "token_id": 28359, + "token_id": 28318, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244679,7 +244341,7 @@ }, { "str": "to", - "token_id": 28360, + "token_id": 28319, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244688,7 +244350,7 @@ }, { "str": "be", - "token_id": 28361, + "token_id": 28320, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244697,7 +244359,7 @@ }, { "str": "released", - "token_id": 28362, + "token_id": 28321, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244706,7 +244368,7 @@ }, { "str": "in", - "token_id": 28363, + "token_id": 28322, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244715,7 +244377,7 @@ }, { "str": "late", - "token_id": 28364, + "token_id": 28323, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244724,7 +244386,7 @@ }, { "str": "2025", - "token_id": 28365, + "token_id": 28324, "o_rev_id": 1154926047, "in": [], "out": [ @@ -244733,63 +244395,63 @@ }, { "str": "'", - "token_id": 28366, + "token_id": 28325, "o_rev_id": 1157821448, "in": [], "out": [] }, { "str": "'", - "token_id": 28367, + "token_id": 28326, "o_rev_id": 1157821448, "in": [], "out": [] }, { "str": "[[", - "token_id": 28368, + "token_id": 28327, "o_rev_id": 1157821448, "in": [], "out": [] }, { "str": "]]", - "token_id": 28369, + "token_id": 28328, "o_rev_id": 1157821448, "in": [], "out": [] }, { "str": "'", - "token_id": 28370, + "token_id": 28329, "o_rev_id": 1157821448, "in": [], "out": [] }, { "str": "'", - "token_id": 28371, + "token_id": 28330, "o_rev_id": 1157821448, "in": [], "out": [] }, { "str": ".", - "token_id": 28372, + "token_id": 28331, "o_rev_id": 1158765539, "in": [], "out": [] }, { "str": ",", - "token_id": 28373, + "token_id": 28332, "o_rev_id": 1158765539, "in": [], "out": [] }, { "str": "using", - "token_id": 28374, + "token_id": 28333, "o_rev_id": 1158765539, "in": [], "out": [ @@ -244798,7 +244460,7 @@ }, { "str": "their", - "token_id": 28375, + "token_id": 28334, "o_rev_id": 1158765539, "in": [], "out": [ @@ -244807,7 +244469,7 @@ }, { "str": "tamed", - "token_id": 28376, + "token_id": 28335, "o_rev_id": 1158765539, "in": [], "out": [ @@ -244816,7 +244478,7 @@ }, { "str": "eels", - "token_id": 28377, + "token_id": 28336, "o_rev_id": 1158765539, "in": [], "out": [ @@ -244825,7 +244487,7 @@ }, { "str": "and", - "token_id": 28378, + "token_id": 28337, "o_rev_id": 1158765539, "in": [], "out": [ @@ -244834,7 +244496,7 @@ }, { "str": "shark", - "token_id": 28379, + "token_id": 28338, "o_rev_id": 1158765539, "in": [], "out": [ @@ -244843,7 +244505,7 @@ }, { "str": "as", - "token_id": 28380, + "token_id": 28339, "o_rev_id": 1159557947, "in": [ 1178773007 @@ -244854,7 +244516,7 @@ }, { "str": "ammunition", - "token_id": 28381, + "token_id": 28340, "o_rev_id": 1159557947, "in": [ 1178773007 @@ -244865,7 +244527,7 @@ }, { "str": "theatrical", - "token_id": 28382, + "token_id": 28341, "o_rev_id": 1161644843, "in": [ 1190838000 @@ -244877,7 +244539,7 @@ }, { "str": "release", - "token_id": 28383, + "token_id": 28342, "o_rev_id": 1161644843, "in": [ 1190838000 @@ -244889,7 +244551,7 @@ }, { "str": "poster", - "token_id": 28384, + "token_id": 28343, "o_rev_id": 1161644843, "in": [ 1190838000 @@ -244901,7 +244563,7 @@ }, { "str": "lite", - "token_id": 28385, + "token_id": 28344, "o_rev_id": 1161644894, "in": [], "out": [ @@ -244910,7 +244572,7 @@ }, { "str": "lite", - "token_id": 28386, + "token_id": 28345, "o_rev_id": 1161644939, "in": [], "out": [ @@ -244919,91 +244581,91 @@ }, { "str": ",", - "token_id": 28387, + "token_id": 28346, "o_rev_id": 1164865603, "in": [], "out": [] }, { "str": "and", - "token_id": 28388, + "token_id": 28347, "o_rev_id": 1164865603, "in": [], "out": [] }, { "str": "gameplay", - "token_id": 28389, + "token_id": 28348, "o_rev_id": 1164865603, "in": [], "out": [] }, { "str": "mechanics", - "token_id": 28390, + "token_id": 28349, "o_rev_id": 1164865603, "in": [], "out": [] }, { "str": "[[", - "token_id": 28391, + "token_id": 28350, "o_rev_id": 1167118245, "in": [], "out": [] }, { "str": "with", - "token_id": 28392, + "token_id": 28351, "o_rev_id": 1167118245, "in": [], "out": [] }, { "str": "gender", - "token_id": 28393, + "token_id": 28352, "o_rev_id": 1167118245, "in": [], "out": [] }, { "str": "-", - "token_id": 28394, + "token_id": 28353, "o_rev_id": 1167118245, "in": [], "out": [] }, { "str": "selectable", - "token_id": 28395, + "token_id": 28354, "o_rev_id": 1167118245, "in": [], "out": [] }, { "str": "]]", - "token_id": 28396, + "token_id": 28355, "o_rev_id": 1167118245, "in": [], "out": [] }, { "str": "[[", - "token_id": 28397, + "token_id": 28356, "o_rev_id": 1167814047, "in": [], "out": [] }, { "str": "]]", - "token_id": 28398, + "token_id": 28357, "o_rev_id": 1167814047, "in": [], "out": [] }, { "str": "*", - "token_id": 28399, + "token_id": 28358, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245012,7 +244674,7 @@ }, { "str": "'", - "token_id": 28400, + "token_id": 28359, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245021,7 +244683,7 @@ }, { "str": "[[", - "token_id": 28401, + "token_id": 28360, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245030,7 +244692,7 @@ }, { "str": "rob", - "token_id": 28402, + "token_id": 28361, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245039,7 +244701,7 @@ }, { "str": "the", - "token_id": 28403, + "token_id": 28362, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245048,7 +244710,7 @@ }, { "str": "robot", - "token_id": 28404, + "token_id": 28363, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245057,7 +244719,7 @@ }, { "str": "]", - "token_id": 28405, + "token_id": 28364, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245066,7 +244728,7 @@ }, { "str": "'", - "token_id": 28406, + "token_id": 28365, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245075,7 +244737,7 @@ }, { "str": "*", - "token_id": 28407, + "token_id": 28366, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245084,7 +244746,7 @@ }, { "str": "[[", - "token_id": 28408, + "token_id": 28367, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245093,7 +244755,7 @@ }, { "str": "becca", - "token_id": 28409, + "token_id": 28368, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245102,7 +244764,7 @@ }, { "str": "'", - "token_id": 28410, + "token_id": 28369, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245111,7 +244773,7 @@ }, { "str": "s", - "token_id": 28411, + "token_id": 28370, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245120,7 +244782,7 @@ }, { "str": "bunch", - "token_id": 28412, + "token_id": 28371, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245129,7 +244791,7 @@ }, { "str": "]]", - "token_id": 28413, + "token_id": 28372, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245138,7 +244800,7 @@ }, { "str": "'", - "token_id": 28414, + "token_id": 28373, "o_rev_id": 1168063147, "in": [], "out": [ @@ -245147,7 +244809,7 @@ }, { "str": "august", - "token_id": 28415, + "token_id": 28374, "o_rev_id": 1168453704, "in": [ 1202097960 @@ -245159,14 +244821,25 @@ }, { "str": "october", - "token_id": 28416, + "token_id": 28375, "o_rev_id": 1168453704, "in": [], "out": [] }, + { + "str": "september", + "token_id": 28376, + "o_rev_id": 1168453704, + "in": [ + 1180622889 + ], + "out": [ + 1180622793 + ] + }, { "str": "january", - "token_id": 28417, + "token_id": 28377, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245175,7 +244848,7 @@ }, { "str": "september", - "token_id": 28418, + "token_id": 28378, "o_rev_id": 1168453704, "in": [ 1178773007 @@ -245186,7 +244859,7 @@ }, { "str": "september", - "token_id": 28419, + "token_id": 28379, "o_rev_id": 1168453704, "in": [ 1178773007 @@ -245197,7 +244870,7 @@ }, { "str": "may", - "token_id": 28420, + "token_id": 28380, "o_rev_id": 1168453704, "in": [ 1178773007 @@ -245206,22 +244879,9 @@ 1178772974 ] }, - { - "str": "-", - "token_id": 28421, - "o_rev_id": 1168453704, - "in": [ - 1178773007, - 1202097960 - ], - "out": [ - 1178772974, - 1202071552 - ] - }, { "str": "2", - "token_id": 28422, + "token_id": 28381, "o_rev_id": 1168453704, "in": [ 1178773007 @@ -245232,7 +244892,7 @@ }, { "str": "may", - "token_id": 28423, + "token_id": 28382, "o_rev_id": 1168453704, "in": [ 1178773007 @@ -245243,7 +244903,7 @@ }, { "str": "september", - "token_id": 28424, + "token_id": 28383, "o_rev_id": 1168453704, "in": [ 1202097960 @@ -245254,172 +244914,158 @@ }, { "str": "1", - "token_id": 28425, + "token_id": 28384, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28426, + "token_id": 28385, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28427, + "token_id": 28386, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "2", - "token_id": 28428, + "token_id": 28387, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28429, + "token_id": 28388, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "-", - "token_id": 28430, + "str": "october", + "token_id": 28389, "o_rev_id": 1168453704, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { "str": "october", - "token_id": 28431, + "token_id": 28390, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28432, + "token_id": 28391, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28433, + "token_id": 28392, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28434, + "token_id": 28393, "o_rev_id": 1168453704, "in": [], "out": [] }, - { - "str": "-", - "token_id": 28435, - "o_rev_id": 1168453704, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, { "str": "6", - "token_id": 28436, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "january", - "token_id": 28437, + "token_id": 28394, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28438, + "token_id": 28395, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "6", - "token_id": 28439, + "token_id": 28396, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "january", - "token_id": 28440, + "token_id": 28397, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "2023", - "token_id": 28441, + "str": "january", + "token_id": 28398, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28442, + "token_id": 28399, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28443, + "token_id": 28400, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28444, + "token_id": 28401, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28445, + "token_id": 28402, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28446, + "token_id": 28403, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28447, + "token_id": 28404, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28448, + "token_id": 28405, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245428,7 +245074,7 @@ }, { "str": "-", - "token_id": 28449, + "token_id": 28406, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245437,7 +245083,7 @@ }, { "str": "february", - "token_id": 28450, + "token_id": 28407, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245446,7 +245092,7 @@ }, { "str": "2023", - "token_id": 28451, + "token_id": 28408, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245455,7 +245101,7 @@ }, { "str": "-", - "token_id": 28452, + "token_id": 28409, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245464,7 +245110,7 @@ }, { "str": "9", - "token_id": 28453, + "token_id": 28410, "o_rev_id": 1168453704, "in": [ 1179974250 @@ -245475,7 +245121,7 @@ }, { "str": "february", - "token_id": 28454, + "token_id": 28411, "o_rev_id": 1168453704, "in": [ 1179974250 @@ -245486,7 +245132,7 @@ }, { "str": "october", - "token_id": 28455, + "token_id": 28412, "o_rev_id": 1168453704, "in": [ 1202097960 @@ -245497,246 +245143,217 @@ }, { "str": "september", - "token_id": 28456, + "token_id": 28413, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28457, + "token_id": 28414, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28458, + "token_id": 28415, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28459, + "token_id": 28416, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28460, + "token_id": 28417, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "2", - "token_id": 28461, + "token_id": 28418, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28462, + "token_id": 28419, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28463, + "token_id": 28420, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28464, + "token_id": 28421, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28465, + "token_id": 28422, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28466, + "token_id": 28423, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28467, + "token_id": 28424, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28468, + "token_id": 28425, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28469, + "token_id": 28426, "o_rev_id": 1168453704, "in": [], "out": [] }, - { - "str": "-", - "token_id": 28470, - "o_rev_id": 1168453704, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, { "str": "october", - "token_id": 28471, + "token_id": 28427, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28472, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28473, + "token_id": 28428, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "6", - "token_id": 28474, + "token_id": 28429, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "january", - "token_id": 28475, + "token_id": 28430, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28476, + "token_id": 28431, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28477, + "token_id": 28432, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28478, + "token_id": 28433, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28479, + "token_id": 28434, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28480, + "token_id": 28435, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28481, + "token_id": 28436, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28482, + "token_id": 28437, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "-", - "token_id": 28483, - "o_rev_id": 1168453704, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "-", - "token_id": 28484, + "token_id": 28438, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28485, + "token_id": 28439, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28486, + "token_id": 28440, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28487, + "token_id": 28441, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28488, + "token_id": 28442, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28489, + "token_id": 28443, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245745,7 +245362,7 @@ }, { "str": "september", - "token_id": 28490, + "token_id": 28444, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245754,175 +245371,133 @@ }, { "str": "september", - "token_id": 28491, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "october", - "token_id": 28492, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "october", - "token_id": 28493, + "token_id": 28445, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28494, + "token_id": 28446, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28495, + "token_id": 28447, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "-", - "token_id": 28496, + "str": "july", + "token_id": 28448, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "july", - "token_id": 28497, + "str": "october", + "token_id": 28449, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28498, + "token_id": 28450, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "8", - "token_id": 28499, + "token_id": 28451, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28500, + "token_id": 28452, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28501, + "token_id": 28453, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "7", - "token_id": 28502, + "str": "october", + "token_id": 28454, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "september", - "token_id": 28503, + "str": "7", + "token_id": 28455, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "-", - "token_id": 28504, + "str": "september", + "token_id": 28456, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28505, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28506, + "token_id": 28457, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28507, + "token_id": 28458, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28508, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28509, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28510, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28511, + "token_id": 28459, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28512, + "token_id": 28460, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "8", - "token_id": 28513, + "token_id": 28461, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28514, + "token_id": 28462, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28515, + "token_id": 28463, "o_rev_id": 1168453704, "in": [], "out": [ @@ -245931,39 +245506,28 @@ }, { "str": "february", - "token_id": 28516, + "token_id": 28464, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28517, + "token_id": 28465, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28518, + "token_id": 28466, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "-", - "token_id": 28519, - "o_rev_id": 1168453704, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, - { - "str": "-", - "token_id": 28520, + "token_id": 28467, "o_rev_id": 1168453704, "in": [ 1202097960 @@ -245974,177 +245538,169 @@ }, { "str": "february", - "token_id": 28521, + "token_id": 28468, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28522, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28523, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28524, + "token_id": 28469, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28525, + "token_id": 28470, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28526, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "9", - "token_id": 28527, + "token_id": 28471, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28528, + "token_id": 28472, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28529, + "token_id": 28473, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28530, + "token_id": 28474, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28531, + "token_id": 28475, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "august", - "token_id": 28532, + "str": "april", + "token_id": 28476, "o_rev_id": 1168453704, "in": [ 1202097960 ], "out": [ - 1202071552, - 1294910906 + 1202071552 ] }, { - "str": "april", - "token_id": 28533, + "str": "-", + "token_id": 28477, "o_rev_id": 1168453704, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] + "in": [], + "out": [] }, { "str": "october", - "token_id": 28534, + "token_id": 28478, + "o_rev_id": 1168453704, + "in": [], + "out": [] + }, + { + "str": "october", + "token_id": 28479, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "6", - "token_id": 28535, + "token_id": 28480, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "july", - "token_id": 28536, + "token_id": 28481, + "o_rev_id": 1168453704, + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] + }, + { + "str": "9", + "token_id": 28482, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28537, + "token_id": 28483, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "october", - "token_id": 28538, + "str": "august", + "token_id": 28484, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "august", - "token_id": 28539, + "str": "october", + "token_id": 28485, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28540, + "token_id": 28486, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28541, + "token_id": 28487, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28542, + "token_id": 28488, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "august", - "token_id": 28543, + "token_id": 28489, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28544, + "token_id": 28490, "o_rev_id": 1168453704, "in": [ 1202097960 @@ -246155,7 +245711,7 @@ }, { "str": "october", - "token_id": 28545, + "token_id": 28491, "o_rev_id": 1168453704, "in": [ 1202097960 @@ -246166,168 +245722,151 @@ }, { "str": "1", - "token_id": 28546, + "token_id": 28492, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28547, + "token_id": 28493, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28548, + "token_id": 28494, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "october", - "token_id": 28549, + "str": "september", + "token_id": 28495, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "september", - "token_id": 28550, + "str": "-", + "token_id": 28496, "o_rev_id": 1168453704, - "in": [], - "out": [] + "in": [ + 1202097960 + ], + "out": [ + 1202071552 + ] }, { - "str": "october", - "token_id": 28551, + "str": "-", + "token_id": 28497, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "-", - "token_id": 28552, + "str": "october", + "token_id": 28498, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "7", - "token_id": 28553, + "token_id": 28499, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28554, + "token_id": 28500, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28555, + "token_id": 28501, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28556, + "token_id": 28502, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "7", - "token_id": 28557, + "token_id": 28503, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "9", - "token_id": 28558, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "7", - "token_id": 28559, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "september", - "token_id": 28560, + "token_id": 28504, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "-", - "token_id": 28561, + "str": "october", + "token_id": 28505, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "-", - "token_id": 28562, + "str": "7", + "token_id": 28506, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28563, + "token_id": 28507, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28564, + "token_id": 28508, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28565, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28566, + "token_id": 28509, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28567, + "token_id": 28510, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28568, + "token_id": 28511, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28569, + "token_id": 28512, "o_rev_id": 1168453704, "in": [], "out": [ @@ -246336,7 +245875,7 @@ }, { "str": "october", - "token_id": 28570, + "token_id": 28513, "o_rev_id": 1168453704, "in": [], "out": [ @@ -246344,284 +245883,232 @@ ] }, { - "str": "-", - "token_id": 28571, - "o_rev_id": 1168453704, - "in": [], - "out": [ - 1334176815 - ] - }, - { - "str": "-", - "token_id": 28572, + "str": "september", + "token_id": 28514, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28573, + "token_id": 28515, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "november", - "token_id": 28574, + "token_id": 28516, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "february", - "token_id": 28575, + "token_id": 28517, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "-", - "token_id": 28576, + "token_id": 28518, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "november", - "token_id": 28577, + "token_id": 28519, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28578, + "token_id": 28520, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28579, + "token_id": 28521, "o_rev_id": 1168453704, "in": [], "out": [] }, - { - "str": "-", - "token_id": 28580, - "o_rev_id": 1168453704, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, { "str": "september", - "token_id": 28581, + "token_id": 28522, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28582, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28583, + "token_id": 28523, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28584, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28585, + "token_id": 28524, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28586, + "token_id": 28525, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28587, + "token_id": 28526, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28588, + "token_id": 28527, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28589, - "o_rev_id": 1168453704, - "in": [], - "out": [] - }, - { - "str": "-", - "token_id": 28590, + "token_id": 28528, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28591, + "token_id": 28529, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "september", - "token_id": 28592, + "token_id": 28530, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28593, + "token_id": 28531, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "5", - "token_id": 28594, + "str": "october", + "token_id": 28532, "o_rev_id": 1168453704, "in": [], "out": [] }, { - "str": "october", - "token_id": 28595, + "str": "5", + "token_id": 28533, "o_rev_id": 1168453704, "in": [], "out": [] }, - { - "str": "-", - "token_id": 28596, - "o_rev_id": 1168453704, - "in": [ - 1202097960 - ], - "out": [ - 1202071552 - ] - }, { "str": "october", - "token_id": 28597, + "token_id": 28534, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28598, + "token_id": 28535, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28599, + "token_id": 28536, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28600, + "token_id": 28537, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "october", - "token_id": 28601, + "token_id": 28538, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "november", - "token_id": 28602, + "token_id": 28539, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "april", - "token_id": 28603, + "token_id": 28540, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "march", - "token_id": 28604, + "token_id": 28541, "o_rev_id": 1168453704, "in": [], "out": [] }, { "str": "using", - "token_id": 28605, + "token_id": 28542, "o_rev_id": 1168460586, "in": [], "out": [] }, { "str": "a", - "token_id": 28606, + "token_id": 28543, "o_rev_id": 1168460586, "in": [], "out": [] }, { "str": "seasonal", - "token_id": 28607, + "token_id": 28544, "o_rev_id": 1168460586, "in": [], "out": [] }, { "str": "approach", - "token_id": 28608, + "token_id": 28545, "o_rev_id": 1168460586, "in": [], "out": [] }, { "str": "matchmaking", - "token_id": 28609, + "token_id": 28546, "o_rev_id": 1168462975, "in": [], "out": [ @@ -246630,7 +246117,7 @@ }, { "str": "and", - "token_id": 28610, + "token_id": 28547, "o_rev_id": 1168462975, "in": [], "out": [ @@ -246639,7 +246126,7 @@ }, { "str": "2022", - "token_id": 28611, + "token_id": 28548, "o_rev_id": 1169211972, "in": [ 1310084806, @@ -246652,35 +246139,35 @@ }, { "str": "{{", - "token_id": 28612, + "token_id": 28549, "o_rev_id": 1170327871, "in": [], "out": [] }, { "str": "commons", - "token_id": 28613, + "token_id": 28550, "o_rev_id": 1170327871, "in": [], "out": [] }, { "str": "category", - "token_id": 28614, + "token_id": 28551, "o_rev_id": 1170327871, "in": [], "out": [] }, { "str": "}}", - "token_id": 28615, + "token_id": 28552, "o_rev_id": 1170327871, "in": [], "out": [] }, { "str": "ha", - "token_id": 28616, + "token_id": 28553, "o_rev_id": 1173805464, "in": [], "out": [ @@ -246689,7 +246176,7 @@ }, { "str": "inkling", - "token_id": 28617, + "token_id": 28554, "o_rev_id": 1173805464, "in": [], "out": [ @@ -246698,7 +246185,7 @@ }, { "str": "dab", - "token_id": 28618, + "token_id": 28555, "o_rev_id": 1173805464, "in": [], "out": [ @@ -246707,35 +246194,35 @@ }, { "str": "mode", - "token_id": 28619, + "token_id": 28556, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "be", - "token_id": 28620, + "token_id": 28557, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "played", - "token_id": 28621, + "token_id": 28558, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "during", - "token_id": 28622, + "token_id": 28559, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "defends", - "token_id": 28623, + "token_id": 28560, "o_rev_id": 1175444090, "in": [ 1229566085 @@ -246746,7 +246233,7 @@ }, { "str": "an", - "token_id": 28624, + "token_id": 28561, "o_rev_id": 1175444090, "in": [ 1229566085 @@ -246757,49 +246244,49 @@ }, { "str": "two", - "token_id": 28625, + "token_id": 28562, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "a", - "token_id": 28626, + "token_id": 28563, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "depositing", - "token_id": 28627, + "token_id": 28564, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "into", - "token_id": 28628, + "token_id": 28565, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "the", - "token_id": 28629, + "token_id": 28566, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "egg", - "token_id": 28630, + "token_id": 28567, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "defeat", - "token_id": 28631, + "token_id": 28568, "o_rev_id": 1175444090, "in": [ 1179974250 @@ -246810,91 +246297,91 @@ }, { "str": "\"", - "token_id": 28632, + "token_id": 28569, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "\"", - "token_id": 28633, + "token_id": 28570, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": ",", - "token_id": 28634, + "token_id": 28571, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "predetermined", - "token_id": 28635, + "token_id": 28572, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "shift", - "token_id": 28636, + "token_id": 28573, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "consisting", - "token_id": 28637, + "token_id": 28574, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "<", - "token_id": 28638, + "token_id": 28575, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "ref", - "token_id": 28639, + "token_id": 28576, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": ">", - "token_id": 28640, + "token_id": 28577, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "{{", - "token_id": 28641, + "token_id": 28578, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "cite", - "token_id": 28642, + "token_id": 28579, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "web", - "token_id": 28643, + "token_id": 28580, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "|", - "token_id": 28644, + "token_id": 28581, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246903,7 +246390,7 @@ }, { "str": "last", - "token_id": 28645, + "token_id": 28582, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246912,7 +246399,7 @@ }, { "str": "=", - "token_id": 28646, + "token_id": 28583, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246921,7 +246408,7 @@ }, { "str": "lento", - "token_id": 28647, + "token_id": 28584, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246930,7 +246417,7 @@ }, { "str": "|", - "token_id": 28648, + "token_id": 28585, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246939,7 +246426,7 @@ }, { "str": "first", - "token_id": 28649, + "token_id": 28586, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246948,7 +246435,7 @@ }, { "str": "=", - "token_id": 28650, + "token_id": 28587, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246957,7 +246444,7 @@ }, { "str": "tiziano", - "token_id": 28651, + "token_id": 28588, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246966,7 +246453,7 @@ }, { "str": "|", - "token_id": 28652, + "token_id": 28589, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246975,7 +246462,7 @@ }, { "str": "last2", - "token_id": 28653, + "token_id": 28590, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246984,7 +246471,7 @@ }, { "str": "=", - "token_id": 28654, + "token_id": 28591, "o_rev_id": 1175444090, "in": [], "out": [ @@ -246993,7 +246480,7 @@ }, { "str": "graeber", - "token_id": 28655, + "token_id": 28592, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247002,7 +246489,7 @@ }, { "str": "|", - "token_id": 28656, + "token_id": 28593, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247011,7 +246498,7 @@ }, { "str": "first2", - "token_id": 28657, + "token_id": 28594, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247020,7 +246507,7 @@ }, { "str": "=", - "token_id": 28658, + "token_id": 28595, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247029,7 +246516,7 @@ }, { "str": "brendan", - "token_id": 28659, + "token_id": 28596, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247038,7 +246525,7 @@ }, { "str": "|", - "token_id": 28660, + "token_id": 28597, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247047,7 +246534,7 @@ }, { "str": "last3", - "token_id": 28661, + "token_id": 28598, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247056,7 +246543,7 @@ }, { "str": "=", - "token_id": 28662, + "token_id": 28599, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247065,7 +246552,7 @@ }, { "str": "cotten", - "token_id": 28663, + "token_id": 28600, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247074,7 +246561,7 @@ }, { "str": "|", - "token_id": 28664, + "token_id": 28601, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247083,7 +246570,7 @@ }, { "str": "first3", - "token_id": 28665, + "token_id": 28602, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247092,7 +246579,7 @@ }, { "str": "=", - "token_id": 28666, + "token_id": 28603, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247101,7 +246588,7 @@ }, { "str": "shailyn", - "token_id": 28667, + "token_id": 28604, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247110,7 +246597,7 @@ }, { "str": "|", - "token_id": 28668, + "token_id": 28605, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247119,7 +246606,7 @@ }, { "str": "last4", - "token_id": 28669, + "token_id": 28606, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247128,7 +246615,7 @@ }, { "str": "=", - "token_id": 28670, + "token_id": 28607, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247137,7 +246624,7 @@ }, { "str": "moreupdated", - "token_id": 28671, + "token_id": 28608, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247146,7 +246633,7 @@ }, { "str": "|", - "token_id": 28672, + "token_id": 28609, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247155,7 +246642,7 @@ }, { "str": "first4", - "token_id": 28673, + "token_id": 28610, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247164,7 +246651,7 @@ }, { "str": "=", - "token_id": 28674, + "token_id": 28611, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247173,7 +246660,7 @@ }, { "str": "+", - "token_id": 28675, + "token_id": 28612, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247182,7 +246669,7 @@ }, { "str": "7", - "token_id": 28676, + "token_id": 28613, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247191,42 +246678,42 @@ }, { "str": "|", - "token_id": 28677, + "token_id": 28614, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "title", - "token_id": 28678, + "token_id": 28615, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "=", - "token_id": 28679, + "token_id": 28616, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 28680, + "token_id": 28617, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "3", - "token_id": 28681, + "token_id": 28618, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "update", - "token_id": 28682, + "token_id": 28619, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247235,7 +246722,7 @@ }, { "str": "3", - "token_id": 28683, + "token_id": 28620, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247244,7 +246731,7 @@ }, { "str": ".", - "token_id": 28684, + "token_id": 28621, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247253,7 +246740,7 @@ }, { "str": "0", - "token_id": 28685, + "token_id": 28622, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247262,7 +246749,7 @@ }, { "str": ".", - "token_id": 28686, + "token_id": 28623, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247271,7 +246758,7 @@ }, { "str": "0", - "token_id": 28687, + "token_id": 28624, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247280,7 +246767,7 @@ }, { "str": "patch", - "token_id": 28688, + "token_id": 28625, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247289,7 +246776,7 @@ }, { "str": "notes", - "token_id": 28689, + "token_id": 28626, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247298,7 +246785,7 @@ }, { "str": "-", - "token_id": 28690, + "token_id": 28627, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247307,7 +246794,7 @@ }, { "str": "splatoon", - "token_id": 28691, + "token_id": 28628, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247316,7 +246803,7 @@ }, { "str": "3", - "token_id": 28692, + "token_id": 28629, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247325,7 +246812,7 @@ }, { "str": "guide", - "token_id": 28693, + "token_id": 28630, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247334,56 +246821,56 @@ }, { "str": "|", - "token_id": 28694, + "token_id": 28631, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "url", - "token_id": 28695, + "token_id": 28632, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "=", - "token_id": 28696, + "token_id": 28633, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "https", - "token_id": 28697, + "token_id": 28634, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": ":", - "token_id": 28698, + "token_id": 28635, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "/", - "token_id": 28699, + "token_id": 28636, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "/", - "token_id": 28700, + "token_id": 28637, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "www", - "token_id": 28701, + "token_id": 28638, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247392,7 +246879,7 @@ }, { "str": ".", - "token_id": 28702, + "token_id": 28639, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247401,7 +246888,7 @@ }, { "str": "ign", - "token_id": 28703, + "token_id": 28640, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247410,21 +246897,21 @@ }, { "str": ".", - "token_id": 28704, + "token_id": 28641, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "com", - "token_id": 28705, + "token_id": 28642, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "/", - "token_id": 28706, + "token_id": 28643, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247433,7 +246920,7 @@ }, { "str": "wikis", - "token_id": 28707, + "token_id": 28644, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247442,42 +246929,42 @@ }, { "str": "/", - "token_id": 28708, + "token_id": 28645, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 28709, + "token_id": 28646, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "-", - "token_id": 28710, + "token_id": 28647, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "3", - "token_id": 28711, + "token_id": 28648, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "/", - "token_id": 28712, + "token_id": 28649, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 28713, + "token_id": 28650, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247486,7 +246973,7 @@ }, { "str": "_", - "token_id": 28714, + "token_id": 28651, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247495,7 +246982,7 @@ }, { "str": "3", - "token_id": 28715, + "token_id": 28652, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247504,7 +246991,7 @@ }, { "str": "_", - "token_id": 28716, + "token_id": 28653, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247513,7 +247000,7 @@ }, { "str": "update", - "token_id": 28717, + "token_id": 28654, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247522,7 +247009,7 @@ }, { "str": "_", - "token_id": 28718, + "token_id": 28655, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247531,7 +247018,7 @@ }, { "str": "3", - "token_id": 28719, + "token_id": 28656, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247540,7 +247027,7 @@ }, { "str": ".", - "token_id": 28720, + "token_id": 28657, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247549,7 +247036,7 @@ }, { "str": "0", - "token_id": 28721, + "token_id": 28658, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247558,7 +247045,7 @@ }, { "str": ".", - "token_id": 28722, + "token_id": 28659, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247567,7 +247054,7 @@ }, { "str": "0", - "token_id": 28723, + "token_id": 28660, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247576,7 +247063,7 @@ }, { "str": "_", - "token_id": 28724, + "token_id": 28661, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247585,7 +247072,7 @@ }, { "str": "patch", - "token_id": 28725, + "token_id": 28662, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247594,7 +247081,7 @@ }, { "str": "_", - "token_id": 28726, + "token_id": 28663, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247603,7 +247090,7 @@ }, { "str": "notes", - "token_id": 28727, + "token_id": 28664, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247612,7 +247099,7 @@ }, { "str": "|", - "token_id": 28728, + "token_id": 28665, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247621,7 +247108,7 @@ }, { "str": "access", - "token_id": 28729, + "token_id": 28666, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247630,14 +247117,14 @@ }, { "str": "-", - "token_id": 28730, + "token_id": 28667, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "date", - "token_id": 28731, + "token_id": 28668, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247646,7 +247133,7 @@ }, { "str": "=", - "token_id": 28732, + "token_id": 28669, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247655,7 +247142,7 @@ }, { "str": "2023", - "token_id": 28733, + "token_id": 28670, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247664,7 +247151,7 @@ }, { "str": "-", - "token_id": 28734, + "token_id": 28671, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247673,7 +247160,7 @@ }, { "str": "09", - "token_id": 28735, + "token_id": 28672, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247682,7 +247169,7 @@ }, { "str": "-", - "token_id": 28736, + "token_id": 28673, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247691,7 +247178,7 @@ }, { "str": "15", - "token_id": 28737, + "token_id": 28674, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247700,7 +247187,7 @@ }, { "str": "|", - "token_id": 28738, + "token_id": 28675, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247709,7 +247196,7 @@ }, { "str": "website", - "token_id": 28739, + "token_id": 28676, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247718,7 +247205,7 @@ }, { "str": "=", - "token_id": 28740, + "token_id": 28677, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247727,7 +247214,7 @@ }, { "str": "ign", - "token_id": 28741, + "token_id": 28678, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247736,7 +247223,7 @@ }, { "str": "|", - "token_id": 28742, + "token_id": 28679, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247745,7 +247232,7 @@ }, { "str": "language", - "token_id": 28743, + "token_id": 28680, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247754,7 +247241,7 @@ }, { "str": "=", - "token_id": 28744, + "token_id": 28681, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247763,7 +247250,7 @@ }, { "str": "en", - "token_id": 28745, + "token_id": 28682, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247772,7 +247259,7 @@ }, { "str": "}}", - "token_id": 28746, + "token_id": 28683, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247781,7 +247268,7 @@ }, { "str": "<", - "token_id": 28747, + "token_id": 28684, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247790,14 +247277,14 @@ }, { "str": "/", - "token_id": 28748, + "token_id": 28685, "o_rev_id": 1175444090, "in": [], "out": [] }, { "str": "ref", - "token_id": 28749, + "token_id": 28686, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247806,7 +247293,7 @@ }, { "str": ">", - "token_id": 28750, + "token_id": 28687, "o_rev_id": 1175444090, "in": [], "out": [ @@ -247815,7 +247302,7 @@ }, { "str": "gulpgulpgulp", - "token_id": 28751, + "token_id": 28688, "o_rev_id": 1175943831, "in": [], "out": [ @@ -247824,7 +247311,7 @@ }, { "str": "big", - "token_id": 28752, + "token_id": 28689, "o_rev_id": 1176103543, "in": [], "out": [ @@ -247833,7 +247320,7 @@ }, { "str": "booty", - "token_id": 28753, + "token_id": 28690, "o_rev_id": 1176103543, "in": [], "out": [ @@ -247842,7 +247329,7 @@ }, { "str": "during", - "token_id": 28754, + "token_id": 28691, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247851,7 +247338,7 @@ }, { "str": "the", - "token_id": 28755, + "token_id": 28692, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247860,7 +247347,7 @@ }, { "str": "second", - "token_id": 28756, + "token_id": 28693, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247869,7 +247356,7 @@ }, { "str": "phase", - "token_id": 28757, + "token_id": 28694, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247878,7 +247365,7 @@ }, { "str": "of", - "token_id": 28758, + "token_id": 28695, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247887,7 +247374,7 @@ }, { "str": "the", - "token_id": 28759, + "token_id": 28696, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247896,7 +247383,7 @@ }, { "str": "battle", - "token_id": 28760, + "token_id": 28697, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247905,7 +247392,7 @@ }, { "str": ",", - "token_id": 28761, + "token_id": 28698, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247914,7 +247401,7 @@ }, { "str": "deep", - "token_id": 28762, + "token_id": 28699, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247923,7 +247410,7 @@ }, { "str": "cut", - "token_id": 28763, + "token_id": 28700, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247932,7 +247419,7 @@ }, { "str": "and", - "token_id": 28764, + "token_id": 28701, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247941,7 +247428,7 @@ }, { "str": "the", - "token_id": 28765, + "token_id": 28702, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247950,7 +247437,7 @@ }, { "str": "squid", - "token_id": 28766, + "token_id": 28703, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247959,7 +247446,7 @@ }, { "str": "sisters", - "token_id": 28767, + "token_id": 28704, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247968,7 +247455,7 @@ }, { "str": "sing", - "token_id": 28768, + "token_id": 28705, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247977,7 +247464,7 @@ }, { "str": "calimari", - "token_id": 28769, + "token_id": 28706, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247986,7 +247473,7 @@ }, { "str": "inkantation", - "token_id": 28770, + "token_id": 28707, "o_rev_id": 1176237035, "in": [], "out": [ @@ -247995,7 +247482,7 @@ }, { "str": "3mix", - "token_id": 28771, + "token_id": 28708, "o_rev_id": 1176237035, "in": [], "out": [ @@ -248004,7 +247491,7 @@ }, { "str": ".", - "token_id": 28772, + "token_id": 28709, "o_rev_id": 1176237035, "in": [], "out": [ @@ -248013,7 +247500,7 @@ }, { "str": "god", - "token_id": 28773, + "token_id": 28710, "o_rev_id": 1176271787, "in": [], "out": [ @@ -248022,7 +247509,7 @@ }, { "str": "awful", - "token_id": 28774, + "token_id": 28711, "o_rev_id": 1176271787, "in": [], "out": [ @@ -248031,7 +247518,7 @@ }, { "str": "=", - "token_id": 28775, + "token_id": 28712, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248040,7 +247527,7 @@ }, { "str": "=", - "token_id": 28776, + "token_id": 28713, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248049,7 +247536,7 @@ }, { "str": "there", - "token_id": 28777, + "token_id": 28714, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248058,7 +247545,7 @@ }, { "str": "are", - "token_id": 28778, + "token_id": 28715, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248067,7 +247554,7 @@ }, { "str": "lots", - "token_id": 28779, + "token_id": 28716, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248076,7 +247563,7 @@ }, { "str": "of", - "token_id": 28780, + "token_id": 28717, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248085,7 +247572,7 @@ }, { "str": "weapons", - "token_id": 28781, + "token_id": 28718, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248094,7 +247581,7 @@ }, { "str": "types", - "token_id": 28782, + "token_id": 28719, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248103,7 +247590,7 @@ }, { "str": "=", - "token_id": 28783, + "token_id": 28720, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248112,7 +247599,7 @@ }, { "str": "=", - "token_id": 28784, + "token_id": 28721, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248121,7 +247608,7 @@ }, { "str": "like", - "token_id": 28785, + "token_id": 28722, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248130,7 +247617,7 @@ }, { "str": "the", - "token_id": 28786, + "token_id": 28723, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248139,7 +247626,7 @@ }, { "str": "roller", - "token_id": 28787, + "token_id": 28724, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248148,7 +247635,7 @@ }, { "str": ",", - "token_id": 28788, + "token_id": 28725, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248157,7 +247644,7 @@ }, { "str": "shooters", - "token_id": 28789, + "token_id": 28726, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248166,7 +247653,7 @@ }, { "str": ",", - "token_id": 28790, + "token_id": 28727, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248175,7 +247662,7 @@ }, { "str": "charges", - "token_id": 28791, + "token_id": 28728, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248184,7 +247671,7 @@ }, { "str": "and", - "token_id": 28792, + "token_id": 28729, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248193,7 +247680,7 @@ }, { "str": "blasters", - "token_id": 28793, + "token_id": 28730, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248202,7 +247689,7 @@ }, { "str": "which", - "token_id": 28794, + "token_id": 28731, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248211,7 +247698,7 @@ }, { "str": "are", - "token_id": 28795, + "token_id": 28732, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248220,7 +247707,7 @@ }, { "str": "all", - "token_id": 28796, + "token_id": 28733, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248229,7 +247716,7 @@ }, { "str": "very", - "token_id": 28797, + "token_id": 28734, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248238,7 +247725,7 @@ }, { "str": "good", - "token_id": 28798, + "token_id": 28735, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248247,7 +247734,7 @@ }, { "str": "=", - "token_id": 28799, + "token_id": 28736, "o_rev_id": 1176750806, "in": [], "out": [ @@ -248256,616 +247743,616 @@ }, { "str": "\"", - "token_id": 28800, + "token_id": 28737, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "3", - "token_id": 28801, + "token_id": 28738, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "\"", - "token_id": 28802, + "token_id": 28739, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "]]", - "token_id": 28803, + "token_id": 28740, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28804, + "token_id": 28741, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28805, + "token_id": 28742, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28806, + "token_id": 28743, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "[[", - "token_id": 28807, + "token_id": 28744, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "japan", - "token_id": 28808, + "token_id": 28745, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "game", - "token_id": 28809, + "token_id": 28746, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "awards", - "token_id": 28810, + "token_id": 28747, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "]]", - "token_id": 28811, + "token_id": 28748, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28812, + "token_id": 28749, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "award", - "token_id": 28813, + "token_id": 28750, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "for", - "token_id": 28814, + "token_id": 28751, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "excellence", - "token_id": 28815, + "token_id": 28752, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28816, + "token_id": 28753, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "{{", - "token_id": 28817, + "token_id": 28754, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "won", - "token_id": 28818, + "token_id": 28755, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "}}", - "token_id": 28819, + "token_id": 28756, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28820, + "token_id": 28757, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "style", - "token_id": 28821, + "token_id": 28758, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28822, + "token_id": 28759, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "\"", - "token_id": 28823, + "token_id": 28760, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "text", - "token_id": 28824, + "token_id": 28761, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28825, + "token_id": 28762, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "align", - "token_id": 28826, + "token_id": 28763, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ":", - "token_id": 28827, + "token_id": 28764, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "center", - "token_id": 28828, + "token_id": 28765, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ";", - "token_id": 28829, + "token_id": 28766, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "\"", - "token_id": 28830, + "token_id": 28767, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28831, + "token_id": 28768, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "<", - "token_id": 28832, + "token_id": 28769, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "ref", - "token_id": 28833, + "token_id": 28770, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ">", - "token_id": 28834, + "token_id": 28771, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "{{", - "token_id": 28835, + "token_id": 28772, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "cite", - "token_id": 28836, + "token_id": 28773, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "web", - "token_id": 28837, + "token_id": 28774, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28838, + "token_id": 28775, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "url", - "token_id": 28839, + "token_id": 28776, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28840, + "token_id": 28777, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "https", - "token_id": 28841, + "token_id": 28778, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ":", - "token_id": 28842, + "token_id": 28779, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28843, + "token_id": 28780, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28844, + "token_id": 28781, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "www", - "token_id": 28845, + "token_id": 28782, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ".", - "token_id": 28846, + "token_id": 28783, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "videogameschronicle", - "token_id": 28847, + "token_id": 28784, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ".", - "token_id": 28848, + "token_id": 28785, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "com", - "token_id": 28849, + "token_id": 28786, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28850, + "token_id": 28787, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "news", - "token_id": 28851, + "token_id": 28788, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28852, + "token_id": 28789, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "monster", - "token_id": 28853, + "token_id": 28790, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28854, + "token_id": 28791, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "hunter", - "token_id": 28855, + "token_id": 28792, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28856, + "token_id": 28793, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "rise", - "token_id": 28857, + "token_id": 28794, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28858, + "token_id": 28795, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "sunbreak", - "token_id": 28859, + "token_id": 28796, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28860, + "token_id": 28797, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "named", - "token_id": 28861, + "token_id": 28798, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28862, + "token_id": 28799, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "2023s", - "token_id": 28863, + "token_id": 28800, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28864, + "token_id": 28801, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "best", - "token_id": 28865, + "token_id": 28802, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28866, + "token_id": 28803, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "game", - "token_id": 28867, + "token_id": 28804, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28868, + "token_id": 28805, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "at", - "token_id": 28869, + "token_id": 28806, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28870, + "token_id": 28807, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "japan", - "token_id": 28871, + "token_id": 28808, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28872, + "token_id": 28809, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "game", - "token_id": 28873, + "token_id": 28810, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28874, + "token_id": 28811, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "awards", - "token_id": 28875, + "token_id": 28812, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28876, + "token_id": 28813, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28877, + "token_id": 28814, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "title", - "token_id": 28878, + "token_id": 28815, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28879, + "token_id": 28816, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "monster", - "token_id": 28880, + "token_id": 28817, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "hunter", - "token_id": 28881, + "token_id": 28818, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "rise", - "token_id": 28882, + "token_id": 28819, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ":", - "token_id": 28883, + "token_id": 28820, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "sunbreak", - "token_id": 28884, + "token_id": 28821, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "named", - "token_id": 28885, + "token_id": 28822, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "2023", - "token_id": 28886, + "token_id": 28823, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "’", - "token_id": 28887, + "token_id": 28824, "o_rev_id": 1176765661, "in": [], "out": [ @@ -248874,84 +248361,84 @@ }, { "str": "s", - "token_id": 28888, + "token_id": 28825, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "best", - "token_id": 28889, + "token_id": 28826, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "game", - "token_id": 28890, + "token_id": 28827, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "at", - "token_id": 28891, + "token_id": 28828, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "japan", - "token_id": 28892, + "token_id": 28829, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "game", - "token_id": 28893, + "token_id": 28830, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "awards", - "token_id": 28894, + "token_id": 28831, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28895, + "token_id": 28832, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "date", - "token_id": 28896, + "token_id": 28833, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28897, + "token_id": 28834, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "2023", - "token_id": 28898, + "token_id": 28835, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28899, + "token_id": 28836, "o_rev_id": 1176765661, "in": [], "out": [ @@ -248960,7 +248447,7 @@ }, { "str": "09", - "token_id": 28900, + "token_id": 28837, "o_rev_id": 1176765661, "in": [], "out": [ @@ -248969,7 +248456,7 @@ }, { "str": "-", - "token_id": 28901, + "token_id": 28838, "o_rev_id": 1176765661, "in": [], "out": [ @@ -248978,7 +248465,7 @@ }, { "str": "21", - "token_id": 28902, + "token_id": 28839, "o_rev_id": 1176765661, "in": [], "out": [ @@ -248987,49 +248474,49 @@ }, { "str": "|", - "token_id": 28903, + "token_id": 28840, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "access", - "token_id": 28904, + "token_id": 28841, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28905, + "token_id": 28842, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "date", - "token_id": 28906, + "token_id": 28843, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28907, + "token_id": 28844, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "2023", - "token_id": 28908, + "token_id": 28845, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28909, + "token_id": 28846, "o_rev_id": 1176765661, "in": [], "out": [ @@ -249038,7 +248525,7 @@ }, { "str": "09", - "token_id": 28910, + "token_id": 28847, "o_rev_id": 1176765661, "in": [], "out": [ @@ -249047,7 +248534,7 @@ }, { "str": "-", - "token_id": 28911, + "token_id": 28848, "o_rev_id": 1176765661, "in": [], "out": [ @@ -249056,7 +248543,7 @@ }, { "str": "23", - "token_id": 28912, + "token_id": 28849, "o_rev_id": 1176765661, "in": [], "out": [ @@ -249065,532 +248552,532 @@ }, { "str": "|", - "token_id": 28913, + "token_id": 28850, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "website", - "token_id": 28914, + "token_id": 28851, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28915, + "token_id": 28852, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "[[", - "token_id": 28916, + "token_id": 28853, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "video", - "token_id": 28917, + "token_id": 28854, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "chronicle", - "token_id": 28918, + "token_id": 28855, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "]]", - "token_id": 28919, + "token_id": 28856, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28920, + "token_id": 28857, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "last", - "token_id": 28921, + "token_id": 28858, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28922, + "token_id": 28859, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "robinson", - "token_id": 28923, + "token_id": 28860, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28924, + "token_id": 28861, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "first", - "token_id": 28925, + "token_id": 28862, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28926, + "token_id": 28863, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "andy", - "token_id": 28927, + "token_id": 28864, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28928, + "token_id": 28865, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "archive", - "token_id": 28929, + "token_id": 28866, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28930, + "token_id": 28867, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "url", - "token_id": 28931, + "token_id": 28868, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28932, + "token_id": 28869, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "https", - "token_id": 28933, + "token_id": 28870, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ":", - "token_id": 28934, + "token_id": 28871, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28935, + "token_id": 28872, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28936, + "token_id": 28873, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "web", - "token_id": 28937, + "token_id": 28874, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ".", - "token_id": 28938, + "token_id": 28875, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "archive", - "token_id": 28939, + "token_id": 28876, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ".", - "token_id": 28940, + "token_id": 28877, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "org", - "token_id": 28941, + "token_id": 28878, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28942, + "token_id": 28879, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "web", - "token_id": 28943, + "token_id": 28880, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28944, + "token_id": 28881, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "20230921203514", - "token_id": 28945, + "token_id": 28882, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28946, + "token_id": 28883, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "https", - "token_id": 28947, + "token_id": 28884, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ":", - "token_id": 28948, + "token_id": 28885, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28949, + "token_id": 28886, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28950, + "token_id": 28887, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "www", - "token_id": 28951, + "token_id": 28888, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ".", - "token_id": 28952, + "token_id": 28889, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "videogameschronicle", - "token_id": 28953, + "token_id": 28890, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ".", - "token_id": 28954, + "token_id": 28891, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "com", - "token_id": 28955, + "token_id": 28892, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28956, + "token_id": 28893, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "news", - "token_id": 28957, + "token_id": 28894, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28958, + "token_id": 28895, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "monster", - "token_id": 28959, + "token_id": 28896, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28960, + "token_id": 28897, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "hunter", - "token_id": 28961, + "token_id": 28898, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28962, + "token_id": 28899, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "rise", - "token_id": 28963, + "token_id": 28900, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28964, + "token_id": 28901, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "sunbreak", - "token_id": 28965, + "token_id": 28902, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28966, + "token_id": 28903, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "named", - "token_id": 28967, + "token_id": 28904, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28968, + "token_id": 28905, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "2023s", - "token_id": 28969, + "token_id": 28906, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28970, + "token_id": 28907, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "best", - "token_id": 28971, + "token_id": 28908, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28972, + "token_id": 28909, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "game", - "token_id": 28973, + "token_id": 28910, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28974, + "token_id": 28911, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "at", - "token_id": 28975, + "token_id": 28912, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28976, + "token_id": 28913, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "japan", - "token_id": 28977, + "token_id": 28914, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28978, + "token_id": 28915, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "game", - "token_id": 28979, + "token_id": 28916, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28980, + "token_id": 28917, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 28981, + "token_id": 28918, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "|", - "token_id": 28982, + "token_id": 28919, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "archive", - "token_id": 28983, + "token_id": 28920, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28984, + "token_id": 28921, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "date", - "token_id": 28985, + "token_id": 28922, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28986, + "token_id": 28923, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "2023", - "token_id": 28987, + "token_id": 28924, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28988, + "token_id": 28925, "o_rev_id": 1176765661, "in": [], "out": [ @@ -249599,7 +249086,7 @@ }, { "str": "09", - "token_id": 28989, + "token_id": 28926, "o_rev_id": 1176765661, "in": [], "out": [ @@ -249608,7 +249095,7 @@ }, { "str": "-", - "token_id": 28990, + "token_id": 28927, "o_rev_id": 1176765661, "in": [], "out": [ @@ -249617,7 +249104,7 @@ }, { "str": "21", - "token_id": 28991, + "token_id": 28928, "o_rev_id": 1176765661, "in": [], "out": [ @@ -249626,140 +249113,140 @@ }, { "str": "|", - "token_id": 28992, + "token_id": 28929, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "url", - "token_id": 28993, + "token_id": 28930, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "-", - "token_id": 28994, + "token_id": 28931, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "status", - "token_id": 28995, + "token_id": 28932, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "=", - "token_id": 28996, + "token_id": 28933, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "live", - "token_id": 28997, + "token_id": 28934, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "}}", - "token_id": 28998, + "token_id": 28935, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "<", - "token_id": 28999, + "token_id": 28936, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "/", - "token_id": 29000, + "token_id": 28937, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "ref", - "token_id": 29001, + "token_id": 28938, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ">", - "token_id": 29002, + "token_id": 28939, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "[[", - "token_id": 29003, + "token_id": 28940, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "category", - "token_id": 29004, + "token_id": 28941, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": ":", - "token_id": 29005, + "token_id": 28942, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "japan", - "token_id": 29006, + "token_id": 28943, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "game", - "token_id": 29007, + "token_id": 28944, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "award", - "token_id": 29008, + "token_id": 28945, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "winners", - "token_id": 29009, + "token_id": 28946, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "]]", - "token_id": 29010, + "token_id": 28947, "o_rev_id": 1176765661, "in": [], "out": [] }, { "str": "i", - "token_id": 29011, + "token_id": 28948, "o_rev_id": 1178772974, "in": [], "out": [ @@ -249768,7 +249255,7 @@ }, { "str": "love", - "token_id": 29012, + "token_id": 28949, "o_rev_id": 1178772974, "in": [], "out": [ @@ -249777,7 +249264,7 @@ }, { "str": "to", - "token_id": 29013, + "token_id": 28950, "o_rev_id": 1178772974, "in": [], "out": [ @@ -249786,7 +249273,7 @@ }, { "str": "play", - "token_id": 29014, + "token_id": 28951, "o_rev_id": 1178772974, "in": [], "out": [ @@ -249795,7 +249282,7 @@ }, { "str": "#", - "token_id": 29015, + "token_id": 28952, "o_rev_id": 1178772974, "in": [], "out": [ @@ -249804,7 +249291,7 @@ }, { "str": "on", - "token_id": 29016, + "token_id": 28953, "o_rev_id": 1178772974, "in": [], "out": [ @@ -249813,7 +249300,7 @@ }, { "str": "battles", - "token_id": 29017, + "token_id": 28954, "o_rev_id": 1179954203, "in": [], "out": [ @@ -249822,7 +249309,7 @@ }, { "str": "]]", - "token_id": 29018, + "token_id": 28955, "o_rev_id": 1179954307, "in": [], "out": [ @@ -249831,7 +249318,7 @@ }, { "str": "defext", - "token_id": 29019, + "token_id": 28956, "o_rev_id": 1179954307, "in": [], "out": [ @@ -249840,7 +249327,7 @@ }, { "str": "|", - "token_id": 29020, + "token_id": 28957, "o_rev_id": 1179954307, "in": [], "out": [ @@ -249849,7 +249336,7 @@ }, { "str": "=", - "token_id": 29021, + "token_id": 28958, "o_rev_id": 1179954307, "in": [], "out": [ @@ -249858,7 +249345,7 @@ }, { "str": ">", - "token_id": 29022, + "token_id": 28959, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249867,7 +249354,7 @@ }, { "str": "{{", - "token_id": 29023, + "token_id": 28960, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249876,7 +249363,7 @@ }, { "str": "cite", - "token_id": 29024, + "token_id": 28961, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249885,7 +249372,7 @@ }, { "str": "web", - "token_id": 29025, + "token_id": 28962, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249894,7 +249381,7 @@ }, { "str": "|", - "token_id": 29026, + "token_id": 28963, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249903,7 +249390,7 @@ }, { "str": "last", - "token_id": 29027, + "token_id": 28964, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249912,7 +249399,7 @@ }, { "str": "=", - "token_id": 29028, + "token_id": 28965, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249921,7 +249408,7 @@ }, { "str": "doolan", - "token_id": 29029, + "token_id": 28966, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249930,7 +249417,7 @@ }, { "str": "|", - "token_id": 29030, + "token_id": 28967, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249939,7 +249426,7 @@ }, { "str": "first", - "token_id": 29031, + "token_id": 28968, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249948,7 +249435,7 @@ }, { "str": "=", - "token_id": 29032, + "token_id": 28969, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249957,7 +249444,7 @@ }, { "str": "liam", - "token_id": 29033, + "token_id": 28970, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249966,7 +249453,7 @@ }, { "str": "|", - "token_id": 29034, + "token_id": 28971, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249975,7 +249462,7 @@ }, { "str": "date", - "token_id": 29035, + "token_id": 28972, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249984,7 +249471,7 @@ }, { "str": "=", - "token_id": 29036, + "token_id": 28973, "o_rev_id": 1179969817, "in": [], "out": [ @@ -249993,7 +249480,7 @@ }, { "str": "9", - "token_id": 29037, + "token_id": 28974, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250002,7 +249489,7 @@ }, { "str": "february", - "token_id": 29038, + "token_id": 28975, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250011,7 +249498,7 @@ }, { "str": "2022", - "token_id": 29039, + "token_id": 28976, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250020,7 +249507,7 @@ }, { "str": "|", - "token_id": 29040, + "token_id": 28977, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250029,7 +249516,7 @@ }, { "str": "title", - "token_id": 29041, + "token_id": 28978, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250038,7 +249525,7 @@ }, { "str": "=", - "token_id": 29042, + "token_id": 28979, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250047,7 +249534,7 @@ }, { "str": "nintendo", - "token_id": 29043, + "token_id": 28980, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250056,7 +249543,7 @@ }, { "str": "reveals", - "token_id": 29044, + "token_id": 28981, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250065,7 +249552,7 @@ }, { "str": "the", - "token_id": 29045, + "token_id": 28982, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250074,7 +249561,7 @@ }, { "str": "next", - "token_id": 29046, + "token_id": 28983, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250083,7 +249570,7 @@ }, { "str": "wave", - "token_id": 29047, + "token_id": 28984, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250092,7 +249579,7 @@ }, { "str": "of", - "token_id": 29048, + "token_id": 28985, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250101,7 +249588,7 @@ }, { "str": "salmon", - "token_id": 29049, + "token_id": 28986, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250110,7 +249597,7 @@ }, { "str": "run", - "token_id": 29050, + "token_id": 28987, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250119,7 +249606,7 @@ }, { "str": "for", - "token_id": 29051, + "token_id": 28988, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250128,7 +249615,7 @@ }, { "str": "splatoon", - "token_id": 29052, + "token_id": 28989, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250137,7 +249624,7 @@ }, { "str": "3", - "token_id": 29053, + "token_id": 28990, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250146,7 +249633,7 @@ }, { "str": "|", - "token_id": 29054, + "token_id": 28991, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250155,7 +249642,7 @@ }, { "str": "url", - "token_id": 29055, + "token_id": 28992, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250164,7 +249651,7 @@ }, { "str": "=", - "token_id": 29056, + "token_id": 28993, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250173,7 +249660,7 @@ }, { "str": "https", - "token_id": 29057, + "token_id": 28994, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250182,7 +249669,7 @@ }, { "str": ":", - "token_id": 29058, + "token_id": 28995, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250191,7 +249678,7 @@ }, { "str": "/", - "token_id": 29059, + "token_id": 28996, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250200,7 +249687,7 @@ }, { "str": "www", - "token_id": 29060, + "token_id": 28997, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250209,7 +249696,7 @@ }, { "str": ".", - "token_id": 29061, + "token_id": 28998, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250218,7 +249705,7 @@ }, { "str": "nintendolife", - "token_id": 29062, + "token_id": 28999, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250227,7 +249714,7 @@ }, { "str": ".", - "token_id": 29063, + "token_id": 29000, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250236,7 +249723,7 @@ }, { "str": "com", - "token_id": 29064, + "token_id": 29001, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250245,7 +249732,7 @@ }, { "str": "/", - "token_id": 29065, + "token_id": 29002, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250254,7 +249741,7 @@ }, { "str": "news", - "token_id": 29066, + "token_id": 29003, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250263,7 +249750,7 @@ }, { "str": "/", - "token_id": 29067, + "token_id": 29004, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250272,7 +249759,7 @@ }, { "str": "2022", - "token_id": 29068, + "token_id": 29005, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250281,7 +249768,7 @@ }, { "str": "/", - "token_id": 29069, + "token_id": 29006, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250290,7 +249777,7 @@ }, { "str": "02", - "token_id": 29070, + "token_id": 29007, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250299,7 +249786,7 @@ }, { "str": "/", - "token_id": 29071, + "token_id": 29008, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250308,7 +249795,7 @@ }, { "str": "nintendo", - "token_id": 29072, + "token_id": 29009, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250317,7 +249804,7 @@ }, { "str": "-", - "token_id": 29073, + "token_id": 29010, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250326,7 +249813,7 @@ }, { "str": "reveals", - "token_id": 29074, + "token_id": 29011, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250335,7 +249822,7 @@ }, { "str": "-", - "token_id": 29075, + "token_id": 29012, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250344,7 +249831,7 @@ }, { "str": "the", - "token_id": 29076, + "token_id": 29013, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250353,7 +249840,7 @@ }, { "str": "-", - "token_id": 29077, + "token_id": 29014, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250362,7 +249849,7 @@ }, { "str": "next", - "token_id": 29078, + "token_id": 29015, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250371,7 +249858,7 @@ }, { "str": "-", - "token_id": 29079, + "token_id": 29016, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250380,7 +249867,7 @@ }, { "str": "wave", - "token_id": 29080, + "token_id": 29017, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250389,7 +249876,7 @@ }, { "str": "-", - "token_id": 29081, + "token_id": 29018, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250398,7 +249885,7 @@ }, { "str": "of", - "token_id": 29082, + "token_id": 29019, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250407,7 +249894,7 @@ }, { "str": "-", - "token_id": 29083, + "token_id": 29020, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250416,7 +249903,7 @@ }, { "str": "salmon", - "token_id": 29084, + "token_id": 29021, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250425,7 +249912,7 @@ }, { "str": "-", - "token_id": 29085, + "token_id": 29022, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250434,7 +249921,7 @@ }, { "str": "run", - "token_id": 29086, + "token_id": 29023, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250443,7 +249930,7 @@ }, { "str": "-", - "token_id": 29087, + "token_id": 29024, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250452,7 +249939,7 @@ }, { "str": "for", - "token_id": 29088, + "token_id": 29025, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250461,7 +249948,7 @@ }, { "str": "-", - "token_id": 29089, + "token_id": 29026, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250470,7 +249957,7 @@ }, { "str": "splatoon", - "token_id": 29090, + "token_id": 29027, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250479,7 +249966,7 @@ }, { "str": "-", - "token_id": 29091, + "token_id": 29028, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250488,7 +249975,7 @@ }, { "str": "3", - "token_id": 29092, + "token_id": 29029, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250497,7 +249984,7 @@ }, { "str": "|", - "token_id": 29093, + "token_id": 29030, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250506,7 +249993,7 @@ }, { "str": "access", - "token_id": 29094, + "token_id": 29031, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250515,7 +250002,7 @@ }, { "str": "-", - "token_id": 29095, + "token_id": 29032, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250524,7 +250011,7 @@ }, { "str": "date", - "token_id": 29096, + "token_id": 29033, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250533,7 +250020,7 @@ }, { "str": "=", - "token_id": 29097, + "token_id": 29034, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250542,7 +250029,7 @@ }, { "str": "11", - "token_id": 29098, + "token_id": 29035, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250551,7 +250038,7 @@ }, { "str": "october", - "token_id": 29099, + "token_id": 29036, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250560,7 +250047,7 @@ }, { "str": "2022", - "token_id": 29100, + "token_id": 29037, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250569,7 +250056,7 @@ }, { "str": "|", - "token_id": 29101, + "token_id": 29038, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250578,7 +250065,7 @@ }, { "str": "website", - "token_id": 29102, + "token_id": 29039, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250587,7 +250074,7 @@ }, { "str": "=", - "token_id": 29103, + "token_id": 29040, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250596,7 +250083,7 @@ }, { "str": "nintendo", - "token_id": 29104, + "token_id": 29041, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250605,7 +250092,7 @@ }, { "str": "life", - "token_id": 29105, + "token_id": 29042, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250614,7 +250101,7 @@ }, { "str": "|", - "token_id": 29106, + "token_id": 29043, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250623,7 +250110,7 @@ }, { "str": "language", - "token_id": 29107, + "token_id": 29044, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250632,7 +250119,7 @@ }, { "str": "=", - "token_id": 29108, + "token_id": 29045, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250641,7 +250128,7 @@ }, { "str": "en", - "token_id": 29109, + "token_id": 29046, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250650,7 +250137,7 @@ }, { "str": "-", - "token_id": 29110, + "token_id": 29047, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250659,7 +250146,7 @@ }, { "str": "gb", - "token_id": 29111, + "token_id": 29048, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250668,7 +250155,7 @@ }, { "str": "|", - "token_id": 29112, + "token_id": 29049, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250677,7 +250164,7 @@ }, { "str": "archive", - "token_id": 29113, + "token_id": 29050, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250686,7 +250173,7 @@ }, { "str": "-", - "token_id": 29114, + "token_id": 29051, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250695,7 +250182,7 @@ }, { "str": "date", - "token_id": 29115, + "token_id": 29052, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250704,7 +250191,7 @@ }, { "str": "=", - "token_id": 29116, + "token_id": 29053, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250713,7 +250200,7 @@ }, { "str": "11", - "token_id": 29117, + "token_id": 29054, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250722,7 +250209,7 @@ }, { "str": "october", - "token_id": 29118, + "token_id": 29055, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250731,7 +250218,7 @@ }, { "str": "2022", - "token_id": 29119, + "token_id": 29056, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250740,7 +250227,7 @@ }, { "str": "|", - "token_id": 29120, + "token_id": 29057, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250749,7 +250236,7 @@ }, { "str": "archive", - "token_id": 29121, + "token_id": 29058, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250758,7 +250245,7 @@ }, { "str": "-", - "token_id": 29122, + "token_id": 29059, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250767,7 +250254,7 @@ }, { "str": "url", - "token_id": 29123, + "token_id": 29060, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250776,7 +250263,7 @@ }, { "str": "=", - "token_id": 29124, + "token_id": 29061, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250785,7 +250272,7 @@ }, { "str": "https", - "token_id": 29125, + "token_id": 29062, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250794,7 +250281,7 @@ }, { "str": ":", - "token_id": 29126, + "token_id": 29063, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250803,7 +250290,7 @@ }, { "str": "/", - "token_id": 29127, + "token_id": 29064, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250812,7 +250299,7 @@ }, { "str": "/", - "token_id": 29128, + "token_id": 29065, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250821,7 +250308,7 @@ }, { "str": "web", - "token_id": 29129, + "token_id": 29066, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250830,7 +250317,7 @@ }, { "str": ".", - "token_id": 29130, + "token_id": 29067, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250839,7 +250326,7 @@ }, { "str": "archive", - "token_id": 29131, + "token_id": 29068, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250848,7 +250335,7 @@ }, { "str": ".", - "token_id": 29132, + "token_id": 29069, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250857,7 +250344,7 @@ }, { "str": "org", - "token_id": 29133, + "token_id": 29070, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250866,7 +250353,7 @@ }, { "str": "/", - "token_id": 29134, + "token_id": 29071, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250875,7 +250362,7 @@ }, { "str": "web", - "token_id": 29135, + "token_id": 29072, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250884,7 +250371,7 @@ }, { "str": "/", - "token_id": 29136, + "token_id": 29073, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250893,7 +250380,7 @@ }, { "str": "20221011191559", - "token_id": 29137, + "token_id": 29074, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250902,7 +250389,7 @@ }, { "str": "/", - "token_id": 29138, + "token_id": 29075, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250911,7 +250398,7 @@ }, { "str": "https", - "token_id": 29139, + "token_id": 29076, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250920,7 +250407,7 @@ }, { "str": ":", - "token_id": 29140, + "token_id": 29077, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250929,7 +250416,7 @@ }, { "str": "/", - "token_id": 29141, + "token_id": 29078, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250938,7 +250425,7 @@ }, { "str": "/", - "token_id": 29142, + "token_id": 29079, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250947,7 +250434,7 @@ }, { "str": "www", - "token_id": 29143, + "token_id": 29080, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250956,7 +250443,7 @@ }, { "str": ".", - "token_id": 29144, + "token_id": 29081, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250965,7 +250452,7 @@ }, { "str": "nintendolife", - "token_id": 29145, + "token_id": 29082, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250974,7 +250461,7 @@ }, { "str": ".", - "token_id": 29146, + "token_id": 29083, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250983,7 +250470,7 @@ }, { "str": "com", - "token_id": 29147, + "token_id": 29084, "o_rev_id": 1179969817, "in": [], "out": [ @@ -250992,7 +250479,7 @@ }, { "str": "/", - "token_id": 29148, + "token_id": 29085, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251001,7 +250488,7 @@ }, { "str": "news", - "token_id": 29149, + "token_id": 29086, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251010,7 +250497,7 @@ }, { "str": "/", - "token_id": 29150, + "token_id": 29087, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251019,7 +250506,7 @@ }, { "str": "2022", - "token_id": 29151, + "token_id": 29088, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251028,7 +250515,7 @@ }, { "str": "/", - "token_id": 29152, + "token_id": 29089, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251037,7 +250524,7 @@ }, { "str": "02", - "token_id": 29153, + "token_id": 29090, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251046,7 +250533,7 @@ }, { "str": "/", - "token_id": 29154, + "token_id": 29091, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251055,7 +250542,7 @@ }, { "str": "nintendo", - "token_id": 29155, + "token_id": 29092, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251064,7 +250551,7 @@ }, { "str": "-", - "token_id": 29156, + "token_id": 29093, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251073,7 +250560,7 @@ }, { "str": "reveals", - "token_id": 29157, + "token_id": 29094, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251082,7 +250569,7 @@ }, { "str": "-", - "token_id": 29158, + "token_id": 29095, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251091,7 +250578,7 @@ }, { "str": "the", - "token_id": 29159, + "token_id": 29096, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251100,7 +250587,7 @@ }, { "str": "-", - "token_id": 29160, + "token_id": 29097, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251109,7 +250596,7 @@ }, { "str": "next", - "token_id": 29161, + "token_id": 29098, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251118,7 +250605,7 @@ }, { "str": "-", - "token_id": 29162, + "token_id": 29099, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251127,7 +250614,7 @@ }, { "str": "wave", - "token_id": 29163, + "token_id": 29100, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251136,7 +250623,7 @@ }, { "str": "-", - "token_id": 29164, + "token_id": 29101, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251145,7 +250632,7 @@ }, { "str": "of", - "token_id": 29165, + "token_id": 29102, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251154,7 +250641,7 @@ }, { "str": "-", - "token_id": 29166, + "token_id": 29103, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251163,7 +250650,7 @@ }, { "str": "salmon", - "token_id": 29167, + "token_id": 29104, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251172,7 +250659,7 @@ }, { "str": "-", - "token_id": 29168, + "token_id": 29105, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251181,7 +250668,7 @@ }, { "str": "run", - "token_id": 29169, + "token_id": 29106, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251190,7 +250677,7 @@ }, { "str": "-", - "token_id": 29170, + "token_id": 29107, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251199,7 +250686,7 @@ }, { "str": "for", - "token_id": 29171, + "token_id": 29108, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251208,7 +250695,7 @@ }, { "str": "-", - "token_id": 29172, + "token_id": 29109, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251217,7 +250704,7 @@ }, { "str": "splatoon", - "token_id": 29173, + "token_id": 29110, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251226,7 +250713,7 @@ }, { "str": "-", - "token_id": 29174, + "token_id": 29111, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251235,7 +250722,7 @@ }, { "str": "3", - "token_id": 29175, + "token_id": 29112, "o_rev_id": 1179969817, "in": [], "out": [ @@ -251244,7 +250731,7 @@ }, { "str": "quiru", - "token_id": 29176, + "token_id": 29113, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251253,7 +250740,7 @@ }, { "str": "s", - "token_id": 29177, + "token_id": 29114, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251262,7 +250749,7 @@ }, { "str": "url", - "token_id": 29178, + "token_id": 29115, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251271,7 +250758,7 @@ }, { "str": "-", - "token_id": 29179, + "token_id": 29116, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251280,7 +250767,7 @@ }, { "str": "status", - "token_id": 29180, + "token_id": 29117, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251289,7 +250776,7 @@ }, { "str": "=", - "token_id": 29181, + "token_id": 29118, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251298,7 +250785,7 @@ }, { "str": "live", - "token_id": 29182, + "token_id": 29119, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251307,7 +250794,7 @@ }, { "str": "}}", - "token_id": 29183, + "token_id": 29120, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251316,7 +250803,7 @@ }, { "str": "<", - "token_id": 29184, + "token_id": 29121, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251325,7 +250812,7 @@ }, { "str": "/", - "token_id": 29185, + "token_id": 29122, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251334,7 +250821,7 @@ }, { "str": "ref", - "token_id": 29186, + "token_id": 29123, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251343,7 +250830,7 @@ }, { "str": ">", - "token_id": 29187, + "token_id": 29124, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251352,7 +250839,7 @@ }, { "str": "|", - "token_id": 29188, + "token_id": 29125, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251361,7 +250848,7 @@ }, { "str": "nintenddead", - "token_id": 29189, + "token_id": 29126, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251370,7 +250857,7 @@ }, { "str": "lime", - "token_id": 29190, + "token_id": 29127, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251379,7 +250866,7 @@ }, { "str": "samack", - "token_id": 29191, + "token_id": 29128, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251388,7 +250875,7 @@ }, { "str": "urlgoggles", - "token_id": 29192, + "token_id": 29129, "o_rev_id": 1180622793, "in": [], "out": [ @@ -251397,84 +250884,84 @@ }, { "str": "/", - "token_id": 29193, + "token_id": 29130, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "critic", - "token_id": 29194, + "token_id": 29131, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "-", - "token_id": 29195, + "token_id": 29132, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "reviews", - "token_id": 29196, + "token_id": 29133, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "/", - "token_id": 29197, + "token_id": 29134, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "?", - "token_id": 29198, + "token_id": 29135, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "platform", - "token_id": 29199, + "token_id": 29136, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "=", - "token_id": 29200, + "token_id": 29137, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "switch", - "token_id": 29201, + "token_id": 29138, "o_rev_id": 1182887777, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 29202, + "token_id": 29139, "o_rev_id": 1182894997, "in": [], "out": [] }, { "str": "-", - "token_id": 29203, + "token_id": 29140, "o_rev_id": 1182894997, "in": [], "out": [] }, { "str": "it", - "token_id": 29204, + "token_id": 29141, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251483,7 +250970,7 @@ }, { "str": "shows", - "token_id": 29205, + "token_id": 29142, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251492,7 +250979,7 @@ }, { "str": "a", - "token_id": 29206, + "token_id": 29143, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251501,7 +250988,7 @@ }, { "str": "present", - "token_id": 29207, + "token_id": 29144, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251510,7 +250997,7 @@ }, { "str": "of", - "token_id": 29208, + "token_id": 29145, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251519,7 +251006,7 @@ }, { "str": "points", - "token_id": 29209, + "token_id": 29146, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251528,7 +251015,7 @@ }, { "str": "the", - "token_id": 29210, + "token_id": 29147, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251537,7 +251024,7 @@ }, { "str": "player", - "token_id": 29211, + "token_id": 29148, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251546,7 +251033,7 @@ }, { "str": "gets", - "token_id": 29212, + "token_id": 29149, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251555,7 +251042,7 @@ }, { "str": ".", - "token_id": 29213, + "token_id": 29150, "o_rev_id": 1184318208, "in": [], "out": [ @@ -251564,7 +251051,7 @@ }, { "str": "table", - "token_id": 29214, + "token_id": 29151, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251573,7 +251060,7 @@ }, { "str": "turf", - "token_id": 29215, + "token_id": 29152, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251582,7 +251069,7 @@ }, { "str": "battle", - "token_id": 29216, + "token_id": 29153, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251591,7 +251078,7 @@ }, { "str": "cards", - "token_id": 29217, + "token_id": 29154, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251600,7 +251087,7 @@ }, { "str": "can", - "token_id": 29218, + "token_id": 29155, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251609,7 +251096,7 @@ }, { "str": "be", - "token_id": 29219, + "token_id": 29156, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251618,7 +251105,7 @@ }, { "str": "found", - "token_id": 29220, + "token_id": 29157, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251627,7 +251114,7 @@ }, { "str": "on", - "token_id": 29221, + "token_id": 29158, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251636,7 +251123,7 @@ }, { "str": "selling", - "token_id": 29222, + "token_id": 29159, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251645,7 +251132,7 @@ }, { "str": "platforms", - "token_id": 29223, + "token_id": 29160, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251654,7 +251141,7 @@ }, { "str": "online", - "token_id": 29224, + "token_id": 29161, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251663,7 +251150,7 @@ }, { "str": ".", - "token_id": 29225, + "token_id": 29162, "o_rev_id": 1184318443, "in": [], "out": [ @@ -251672,7 +251159,7 @@ }, { "str": "many", - "token_id": 29226, + "token_id": 29163, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251681,7 +251168,7 @@ }, { "str": "years", - "token_id": 29227, + "token_id": 29164, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251690,7 +251177,7 @@ }, { "str": "after", - "token_id": 29228, + "token_id": 29165, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251699,7 +251186,7 @@ }, { "str": "[[", - "token_id": 29229, + "token_id": 29166, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251708,7 +251195,7 @@ }, { "str": "splatoon", - "token_id": 29230, + "token_id": 29167, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251717,7 +251204,7 @@ }, { "str": "2", - "token_id": 29231, + "token_id": 29168, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251726,7 +251213,7 @@ }, { "str": "|", - "token_id": 29232, + "token_id": 29169, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251735,7 +251222,7 @@ }, { "str": "splatoon", - "token_id": 29233, + "token_id": 29170, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251744,7 +251231,7 @@ }, { "str": "2", - "token_id": 29234, + "token_id": 29171, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251753,7 +251240,7 @@ }, { "str": ",", - "token_id": 29235, + "token_id": 29172, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251762,7 +251249,7 @@ }, { "str": "]]", - "token_id": 29236, + "token_id": 29173, "o_rev_id": 1186635723, "in": [], "out": [ @@ -251771,7 +251258,7 @@ }, { "str": "意", - "token_id": 29237, + "token_id": 29174, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251780,7 +251267,7 @@ }, { "str": "味", - "token_id": 29238, + "token_id": 29175, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251789,7 +251276,7 @@ }, { "str": "不", - "token_id": 29239, + "token_id": 29176, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251798,7 +251285,7 @@ }, { "str": "明", - "token_id": 29240, + "token_id": 29177, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251807,7 +251294,7 @@ }, { "str": "あ", - "token_id": 29241, + "token_id": 29178, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251816,7 +251303,7 @@ }, { "str": "あ", - "token_id": 29242, + "token_id": 29179, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251825,7 +251312,7 @@ }, { "str": "あ", - "token_id": 29243, + "token_id": 29180, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251834,7 +251321,7 @@ }, { "str": "あ", - "token_id": 29244, + "token_id": 29181, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251843,7 +251330,7 @@ }, { "str": "あ", - "token_id": 29245, + "token_id": 29182, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251852,7 +251339,7 @@ }, { "str": "あ", - "token_id": 29246, + "token_id": 29183, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251861,7 +251348,7 @@ }, { "str": "あ", - "token_id": 29247, + "token_id": 29184, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251870,7 +251357,7 @@ }, { "str": "あ", - "token_id": 29248, + "token_id": 29185, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251879,7 +251366,7 @@ }, { "str": "あ", - "token_id": 29249, + "token_id": 29186, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251888,7 +251375,7 @@ }, { "str": "あ", - "token_id": 29250, + "token_id": 29187, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251897,7 +251384,7 @@ }, { "str": "あ", - "token_id": 29251, + "token_id": 29188, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251906,7 +251393,7 @@ }, { "str": "あ", - "token_id": 29252, + "token_id": 29189, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251915,7 +251402,7 @@ }, { "str": "!", - "token_id": 29253, + "token_id": 29190, "o_rev_id": 1191367095, "in": [], "out": [ @@ -251924,7 +251411,7 @@ }, { "str": "{{", - "token_id": 29254, + "token_id": 29191, "o_rev_id": 1202071552, "in": [], "out": [ @@ -251933,7 +251420,7 @@ }, { "str": "mdy", - "token_id": 29255, + "token_id": 29192, "o_rev_id": 1202071552, "in": [], "out": [ @@ -251942,7 +251429,7 @@ }, { "str": "|", - "token_id": 29256, + "token_id": 29193, "o_rev_id": 1202071552, "in": [], "out": [ @@ -251951,7 +251438,7 @@ }, { "str": "=", - "token_id": 29257, + "token_id": 29194, "o_rev_id": 1202071552, "in": [], "out": [ @@ -251960,7 +251447,7 @@ }, { "str": "2024", - "token_id": 29258, + "token_id": 29195, "o_rev_id": 1202071552, "in": [], "out": [ @@ -251969,6 +251456,573 @@ }, { "str": "}}", + "token_id": 29196, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29197, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29198, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29199, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29200, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29201, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29202, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29203, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29204, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "2023", + "token_id": 29205, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29206, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29207, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ".", + "token_id": 29208, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29209, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "=", + "token_id": 29210, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29211, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29212, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29213, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29214, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29215, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29216, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29217, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29218, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29219, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29220, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29221, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29222, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29223, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29224, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29225, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "2022", + "token_id": 29226, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "url", + "token_id": 29227, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "=", + "token_id": 29228, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29229, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29230, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29231, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "2022", + "token_id": 29232, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "url", + "token_id": 29233, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29234, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29235, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29236, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "2022", + "token_id": 29237, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29238, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29239, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "url", + "token_id": 29240, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29241, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29242, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "splatoon", + "token_id": 29243, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "3", + "token_id": 29244, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "-", + "token_id": 29245, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29246, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "url", + "token_id": 29247, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29248, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29249, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29250, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29251, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "2022", + "token_id": 29252, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29253, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "url", + "token_id": 29254, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29255, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29256, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": "2022", + "token_id": 29257, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", + "token_id": 29258, + "o_rev_id": 1202071552, + "in": [], + "out": [ + 1202097960 + ] + }, + { + "str": ",", "token_id": 29259, "o_rev_id": 1202071552, "in": [], @@ -251986,7 +252040,7 @@ ] }, { - "str": ",", + "str": "url", "token_id": 29261, "o_rev_id": 1202071552, "in": [], @@ -252004,7 +252058,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29263, "o_rev_id": 1202071552, "in": [], @@ -252013,7 +252067,7 @@ ] }, { - "str": ",", + "str": "october", "token_id": 29264, "o_rev_id": 1202071552, "in": [], @@ -252022,7 +252076,7 @@ ] }, { - "str": ",", + "str": "11", "token_id": 29265, "o_rev_id": 1202071552, "in": [], @@ -252040,7 +252094,7 @@ ] }, { - "str": "-", + "str": "2022", "token_id": 29267, "o_rev_id": 1202071552, "in": [], @@ -252049,7 +252103,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29268, "o_rev_id": 1202071552, "in": [], @@ -252058,7 +252112,7 @@ ] }, { - "str": ",", + "str": "website", "token_id": 29269, "o_rev_id": 1202071552, "in": [], @@ -252067,7 +252121,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29270, "o_rev_id": 1202071552, "in": [], @@ -252076,7 +252130,7 @@ ] }, { - "str": ".", + "str": "nintendo", "token_id": 29271, "o_rev_id": 1202071552, "in": [], @@ -252085,7 +252139,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29272, "o_rev_id": 1202071552, "in": [], @@ -252094,7 +252148,7 @@ ] }, { - "str": "the", + "str": "language", "token_id": 29273, "o_rev_id": 1202071552, "in": [], @@ -252103,7 +252157,7 @@ ] }, { - "str": "of", + "str": "=", "token_id": 29274, "o_rev_id": 1202071552, "in": [], @@ -252112,7 +252166,7 @@ ] }, { - "str": "selling", + "str": "-", "token_id": 29275, "o_rev_id": 1202071552, "in": [], @@ -252121,7 +252175,7 @@ ] }, { - "str": "=", + "str": "date", "token_id": 29276, "o_rev_id": 1202071552, "in": [], @@ -252139,7 +252193,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29278, "o_rev_id": 1202071552, "in": [], @@ -252166,7 +252220,7 @@ ] }, { - "str": "-", + "str": "url", "token_id": 29281, "o_rev_id": 1202071552, "in": [], @@ -252175,7 +252229,7 @@ ] }, { - "str": "february", + "str": ",", "token_id": 29282, "o_rev_id": 1202071552, "in": [], @@ -252193,7 +252247,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29284, "o_rev_id": 1202071552, "in": [], @@ -252211,7 +252265,7 @@ ] }, { - "str": ",", + "str": "url", "token_id": 29286, "o_rev_id": 1202071552, "in": [], @@ -252238,7 +252292,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29289, "o_rev_id": 1202071552, "in": [], @@ -252247,7 +252301,7 @@ ] }, { - "str": ",", + "str": "nintendo", "token_id": 29290, "o_rev_id": 1202071552, "in": [], @@ -252283,7 +252337,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29294, "o_rev_id": 1202071552, "in": [], @@ -252292,7 +252346,7 @@ ] }, { - "str": ",", + "str": "url", "token_id": 29295, "o_rev_id": 1202071552, "in": [], @@ -252319,7 +252373,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29298, "o_rev_id": 1202071552, "in": [], @@ -252346,7 +252400,7 @@ ] }, { - "str": ",", + "str": "splatoon", "token_id": 29301, "o_rev_id": 1202071552, "in": [], @@ -252355,7 +252409,7 @@ ] }, { - "str": "|", + "str": "3", "token_id": 29302, "o_rev_id": 1202071552, "in": [], @@ -252364,7 +252418,7 @@ ] }, { - "str": "-", + "str": "nintendo", "token_id": 29303, "o_rev_id": 1202071552, "in": [], @@ -252373,7 +252427,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29304, "o_rev_id": 1202071552, "in": [], @@ -252382,7 +252436,7 @@ ] }, { - "str": ",", + "str": "february", "token_id": 29305, "o_rev_id": 1202071552, "in": [], @@ -252418,7 +252472,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29309, "o_rev_id": 1202071552, "in": [], @@ -252445,7 +252499,7 @@ ] }, { - "str": ",", + "str": "(", "token_id": 29312, "o_rev_id": 1202071552, "in": [], @@ -252454,7 +252508,7 @@ ] }, { - "str": "splatoon", + "str": ")", "token_id": 29313, "o_rev_id": 1202071552, "in": [], @@ -252463,7 +252517,7 @@ ] }, { - "str": "3", + "str": "language", "token_id": 29314, "o_rev_id": 1202071552, "in": [], @@ -252472,7 +252526,7 @@ ] }, { - "str": ",", + "str": "en", "token_id": 29315, "o_rev_id": 1202071552, "in": [], @@ -252481,7 +252535,7 @@ ] }, { - "str": ",", + "str": "us", "token_id": 29316, "o_rev_id": 1202071552, "in": [], @@ -252490,7 +252544,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29317, "o_rev_id": 1202071552, "in": [], @@ -252499,7 +252553,7 @@ ] }, { - "str": ",", + "str": "\"", "token_id": 29318, "o_rev_id": 1202071552, "in": [], @@ -252508,7 +252562,7 @@ ] }, { - "str": "|", + "str": "\"", "token_id": 29319, "o_rev_id": 1202071552, "in": [], @@ -252517,7 +252571,7 @@ ] }, { - "str": "=", + "str": "magazine", "token_id": 29320, "o_rev_id": 1202071552, "in": [], @@ -252526,7 +252580,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29321, "o_rev_id": 1202071552, "in": [], @@ -252535,7 +252589,7 @@ ] }, { - "str": ",", + "str": "date", "token_id": 29322, "o_rev_id": 1202071552, "in": [], @@ -252544,7 +252598,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29323, "o_rev_id": 1202071552, "in": [], @@ -252562,7 +252616,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29325, "o_rev_id": 1202071552, "in": [], @@ -252571,7 +252625,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29326, "o_rev_id": 1202071552, "in": [], @@ -252580,7 +252634,7 @@ ] }, { - "str": "=", + "str": "url", "token_id": 29327, "o_rev_id": 1202071552, "in": [], @@ -252625,7 +252679,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29332, "o_rev_id": 1202071552, "in": [], @@ -252634,7 +252688,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29333, "o_rev_id": 1202071552, "in": [], @@ -252643,7 +252697,7 @@ ] }, { - "str": "nintendo", + "str": "2021", "token_id": 29334, "o_rev_id": 1202071552, "in": [], @@ -252652,7 +252706,7 @@ ] }, { - "str": "|", + "str": "url", "token_id": 29335, "o_rev_id": 1202071552, "in": [], @@ -252661,7 +252715,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29336, "o_rev_id": 1202071552, "in": [], @@ -252670,7 +252724,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29337, "o_rev_id": 1202071552, "in": [], @@ -252679,7 +252733,7 @@ ] }, { - "str": "|", + "str": "-", "token_id": 29338, "o_rev_id": 1202071552, "in": [], @@ -252688,7 +252742,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29339, "o_rev_id": 1202071552, "in": [], @@ -252697,7 +252751,7 @@ ] }, { - "str": "=", + "str": "title", "token_id": 29340, "o_rev_id": 1202071552, "in": [], @@ -252706,7 +252760,7 @@ ] }, { - "str": ",", + "str": "splatoon", "token_id": 29341, "o_rev_id": 1202071552, "in": [], @@ -252715,7 +252769,7 @@ ] }, { - "str": ",", + "str": "3", "token_id": 29342, "o_rev_id": 1202071552, "in": [], @@ -252724,7 +252778,7 @@ ] }, { - "str": ",", + "str": "nintendo", "token_id": 29343, "o_rev_id": 1202071552, "in": [], @@ -252742,7 +252796,7 @@ ] }, { - "str": "splatoon", + "str": "2022", "token_id": 29345, "o_rev_id": 1202071552, "in": [], @@ -252751,7 +252805,7 @@ ] }, { - "str": "3", + "str": "'", "token_id": 29346, "o_rev_id": 1202071552, "in": [], @@ -252796,7 +252850,7 @@ ] }, { - "str": "nintendo", + "str": "2022", "token_id": 29351, "o_rev_id": 1202071552, "in": [], @@ -252814,7 +252868,7 @@ ] }, { - "str": "-", + "str": "url", "token_id": 29353, "o_rev_id": 1202071552, "in": [], @@ -252859,7 +252913,7 @@ ] }, { - "str": "salmon", + "str": "game", "token_id": 29358, "o_rev_id": 1202071552, "in": [], @@ -252868,7 +252922,7 @@ ] }, { - "str": "run", + "str": "-", "token_id": 29359, "o_rev_id": 1202071552, "in": [], @@ -252877,7 +252931,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 29360, "o_rev_id": 1202071552, "in": [], @@ -252886,7 +252940,7 @@ ] }, { - "str": ",", + "str": "date", "token_id": 29361, "o_rev_id": 1202071552, "in": [], @@ -252904,7 +252958,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29363, "o_rev_id": 1202071552, "in": [], @@ -252913,7 +252967,7 @@ ] }, { - "str": "splatoon", + "str": "url", "token_id": 29364, "o_rev_id": 1202071552, "in": [], @@ -252922,7 +252976,7 @@ ] }, { - "str": "3", + "str": "<", "token_id": 29365, "o_rev_id": 1202071552, "in": [], @@ -252931,7 +252985,7 @@ ] }, { - "str": "nintendo", + "str": "ref", "token_id": 29366, "o_rev_id": 1202071552, "in": [], @@ -252940,7 +252994,7 @@ ] }, { - "str": ",", + "str": "splatfest", "token_id": 29367, "o_rev_id": 1202071552, "in": [], @@ -252949,7 +253003,7 @@ ] }, { - "str": "-", + "str": ">", "token_id": 29368, "o_rev_id": 1202071552, "in": [], @@ -252958,7 +253012,7 @@ ] }, { - "str": "february", + "str": "{{", "token_id": 29369, "o_rev_id": 1202071552, "in": [], @@ -252967,7 +253021,7 @@ ] }, { - "str": ",", + "str": "cite", "token_id": 29370, "o_rev_id": 1202071552, "in": [], @@ -252976,7 +253030,7 @@ ] }, { - "str": ",", + "str": "web", "token_id": 29371, "o_rev_id": 1202071552, "in": [], @@ -252985,7 +253039,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29372, "o_rev_id": 1202071552, "in": [], @@ -252994,7 +253048,7 @@ ] }, { - "str": ",", + "str": "last", "token_id": 29373, "o_rev_id": 1202071552, "in": [], @@ -253003,7 +253057,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29374, "o_rev_id": 1202071552, "in": [], @@ -253012,7 +253066,7 @@ ] }, { - "str": "(", + "str": "|", "token_id": 29375, "o_rev_id": 1202071552, "in": [], @@ -253021,7 +253075,7 @@ ] }, { - "str": ")", + "str": "first", "token_id": 29376, "o_rev_id": 1202071552, "in": [], @@ -253030,7 +253084,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 29377, "o_rev_id": 1202071552, "in": [], @@ -253039,7 +253093,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29378, "o_rev_id": 1202071552, "in": [], @@ -253048,7 +253102,7 @@ ] }, { - "str": "\"", + "str": "=", "token_id": 29379, "o_rev_id": 1202071552, "in": [], @@ -253057,7 +253111,7 @@ ] }, { - "str": "\"", + "str": ",", "token_id": 29380, "o_rev_id": 1202071552, "in": [], @@ -253066,7 +253120,7 @@ ] }, { - "str": "|", + "str": "2022", "token_id": 29381, "o_rev_id": 1202071552, "in": [], @@ -253075,7 +253129,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29382, "o_rev_id": 1202071552, "in": [], @@ -253084,7 +253138,7 @@ ] }, { - "str": ",", + "str": "title", "token_id": 29383, "o_rev_id": 1202071552, "in": [], @@ -253093,7 +253147,7 @@ ] }, { - "str": "2022", + "str": "=", "token_id": 29384, "o_rev_id": 1202071552, "in": [], @@ -253102,7 +253156,7 @@ ] }, { - "str": "splatoon", + "str": ",", "token_id": 29385, "o_rev_id": 1202071552, "in": [], @@ -253111,7 +253165,7 @@ ] }, { - "str": "3", + "str": "2022", "token_id": 29386, "o_rev_id": 1202071552, "in": [], @@ -253120,7 +253174,7 @@ ] }, { - "str": ",", + "str": "nintendo", "token_id": 29387, "o_rev_id": 1202071552, "in": [], @@ -253129,7 +253183,7 @@ ] }, { - "str": "-", + "str": "october", "token_id": 29388, "o_rev_id": 1202071552, "in": [], @@ -253147,7 +253201,7 @@ ] }, { - "str": ",", + "str": "in", "token_id": 29390, "o_rev_id": 1202071552, "in": [], @@ -253156,7 +253210,7 @@ ] }, { - "str": "|", + "str": "a", "token_id": 29391, "o_rev_id": 1202071552, "in": [], @@ -253165,7 +253219,7 @@ ] }, { - "str": "=", + "str": "nintendo", "token_id": 29392, "o_rev_id": 1202071552, "in": [], @@ -253174,7 +253228,7 @@ ] }, { - "str": ",", + "str": "'", "token_id": 29393, "o_rev_id": 1202071552, "in": [], @@ -253183,7 +253237,7 @@ ] }, { - "str": ",", + "str": "'", "token_id": 29394, "o_rev_id": 1202071552, "in": [], @@ -253192,7 +253246,7 @@ ] }, { - "str": "|", + "str": "splatoon", "token_id": 29395, "o_rev_id": 1202071552, "in": [], @@ -253201,7 +253255,7 @@ ] }, { - "str": "=", + "str": "3", "token_id": 29396, "o_rev_id": 1202071552, "in": [], @@ -253210,7 +253264,7 @@ ] }, { - "str": ",", + "str": "direct", "token_id": 29397, "o_rev_id": 1202071552, "in": [], @@ -253246,7 +253300,7 @@ ] }, { - "str": "|", + "str": "2023", "token_id": 29401, "o_rev_id": 1202071552, "in": [], @@ -253255,7 +253309,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29402, "o_rev_id": 1202071552, "in": [], @@ -253264,7 +253318,7 @@ ] }, { - "str": ",", + "str": "language", "token_id": 29403, "o_rev_id": 1202071552, "in": [], @@ -253273,7 +253327,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29404, "o_rev_id": 1202071552, "in": [], @@ -253282,7 +253336,7 @@ ] }, { - "str": "-", + "str": "en", "token_id": 29405, "o_rev_id": 1202071552, "in": [], @@ -253291,7 +253345,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 29406, "o_rev_id": 1202071552, "in": [], @@ -253300,7 +253354,7 @@ ] }, { - "str": "-", + "str": "gb", "token_id": 29407, "o_rev_id": 1202071552, "in": [], @@ -253309,7 +253363,7 @@ ] }, { - "str": "splatoon", + "str": "date", "token_id": 29408, "o_rev_id": 1202071552, "in": [], @@ -253318,7 +253372,7 @@ ] }, { - "str": "3", + "str": ",", "token_id": 29409, "o_rev_id": 1202071552, "in": [], @@ -253327,7 +253381,7 @@ ] }, { - "str": "nintendo", + "str": "url", "token_id": 29410, "o_rev_id": 1202071552, "in": [], @@ -253336,7 +253390,7 @@ ] }, { - "str": ",", + "str": "<", "token_id": 29411, "o_rev_id": 1202071552, "in": [], @@ -253345,7 +253399,7 @@ ] }, { - "str": "'", + "str": "ref", "token_id": 29412, "o_rev_id": 1202071552, "in": [], @@ -253354,7 +253408,7 @@ ] }, { - "str": ",", + "str": ">", "token_id": 29413, "o_rev_id": 1202071552, "in": [], @@ -253363,7 +253417,7 @@ ] }, { - "str": ",", + "str": "cite", "token_id": 29414, "o_rev_id": 1202071552, "in": [], @@ -253390,7 +253444,7 @@ ] }, { - "str": "s", + "str": "2023", "token_id": 29417, "o_rev_id": 1202071552, "in": [], @@ -253399,7 +253453,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29418, "o_rev_id": 1202071552, "in": [], @@ -253408,7 +253462,7 @@ ] }, { - "str": ",", + "str": "website", "token_id": 29419, "o_rev_id": 1202071552, "in": [], @@ -253417,7 +253471,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29420, "o_rev_id": 1202071552, "in": [], @@ -253426,7 +253480,7 @@ ] }, { - "str": ",", + "str": "language", "token_id": 29421, "o_rev_id": 1202071552, "in": [], @@ -253435,7 +253489,7 @@ ] }, { - "str": ",", + "str": "en", "token_id": 29422, "o_rev_id": 1202071552, "in": [], @@ -253444,7 +253498,7 @@ ] }, { - "str": "game", + "str": ",", "token_id": 29423, "o_rev_id": 1202071552, "in": [], @@ -253453,7 +253507,7 @@ ] }, { - "str": "-", + "str": "url", "token_id": 29424, "o_rev_id": 1202071552, "in": [], @@ -253462,7 +253516,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29425, "o_rev_id": 1202071552, "in": [], @@ -253480,7 +253534,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29427, "o_rev_id": 1202071552, "in": [], @@ -253489,7 +253543,7 @@ ] }, { - "str": "<", + "str": "2023", "token_id": 29428, "o_rev_id": 1202071552, "in": [], @@ -253498,7 +253552,7 @@ ] }, { - "str": "splatfest", + "str": ",", "token_id": 29429, "o_rev_id": 1202071552, "in": [], @@ -253507,7 +253561,7 @@ ] }, { - "str": ">", + "str": ",", "token_id": 29430, "o_rev_id": 1202071552, "in": [], @@ -253516,7 +253570,7 @@ ] }, { - "str": "{{", + "str": ",", "token_id": 29431, "o_rev_id": 1202071552, "in": [], @@ -253525,7 +253579,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29432, "o_rev_id": 1202071552, "in": [], @@ -253534,7 +253588,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29433, "o_rev_id": 1202071552, "in": [], @@ -253543,7 +253597,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29434, "o_rev_id": 1202071552, "in": [], @@ -253552,7 +253606,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29435, "o_rev_id": 1202071552, "in": [], @@ -253561,7 +253615,7 @@ ] }, { - "str": "|", + "str": "language", "token_id": 29436, "o_rev_id": 1202071552, "in": [], @@ -253579,7 +253633,7 @@ ] }, { - "str": ",", + "str": "en", "token_id": 29438, "o_rev_id": 1202071552, "in": [], @@ -253588,7 +253642,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29439, "o_rev_id": 1202071552, "in": [], @@ -253597,7 +253651,7 @@ ] }, { - "str": "=", + "str": "title", "token_id": 29440, "o_rev_id": 1202071552, "in": [], @@ -253606,7 +253660,7 @@ ] }, { - "str": "|", + "str": "nintendo", "token_id": 29441, "o_rev_id": 1202071552, "in": [], @@ -253615,7 +253669,7 @@ ] }, { - "str": "=", + "str": "splatoon", "token_id": 29442, "o_rev_id": 1202071552, "in": [], @@ -253624,7 +253678,7 @@ ] }, { - "str": ",", + "str": "3", "token_id": 29443, "o_rev_id": 1202071552, "in": [], @@ -253633,7 +253687,7 @@ ] }, { - "str": "october", + "str": ",", "token_id": 29444, "o_rev_id": 1202071552, "in": [], @@ -253642,7 +253696,7 @@ ] }, { - "str": ",", + "str": "coming", "token_id": 29445, "o_rev_id": 1202071552, "in": [], @@ -253651,7 +253705,7 @@ ] }, { - "str": "|", + "str": "in", "token_id": 29446, "o_rev_id": 1202071552, "in": [], @@ -253660,7 +253714,7 @@ ] }, { - "str": "-", + "str": "work", "token_id": 29447, "o_rev_id": 1202071552, "in": [], @@ -253669,7 +253723,7 @@ ] }, { - "str": "=", + "str": "nintendo", "token_id": 29448, "o_rev_id": 1202071552, "in": [], @@ -253678,7 +253732,7 @@ ] }, { - "str": "a", + "str": "february", "token_id": 29449, "o_rev_id": 1202071552, "in": [], @@ -253687,7 +253741,7 @@ ] }, { - "str": "nintendo", + "str": ",", "token_id": 29450, "o_rev_id": 1202071552, "in": [], @@ -253696,7 +253750,7 @@ ] }, { - "str": "'", + "str": "-", "token_id": 29451, "o_rev_id": 1202071552, "in": [], @@ -253705,7 +253759,7 @@ ] }, { - "str": "'", + "str": ",", "token_id": 29452, "o_rev_id": 1202071552, "in": [], @@ -253714,7 +253768,7 @@ ] }, { - "str": "splatoon", + "str": "|", "token_id": 29453, "o_rev_id": 1202071552, "in": [], @@ -253723,7 +253777,7 @@ ] }, { - "str": "direct", + "str": "archive", "token_id": 29454, "o_rev_id": 1202071552, "in": [], @@ -253732,7 +253786,7 @@ ] }, { - "str": "dlc", + "str": "date", "token_id": 29455, "o_rev_id": 1202071552, "in": [], @@ -253750,7 +253804,7 @@ ] }, { - "str": "nintendo", + "str": "-", "token_id": 29457, "o_rev_id": 1202071552, "in": [], @@ -253759,7 +253813,7 @@ ] }, { - "str": "splatoon", + "str": "url", "token_id": 29458, "o_rev_id": 1202071552, "in": [], @@ -253768,7 +253822,7 @@ ] }, { - "str": "3", + "str": ",", "token_id": 29459, "o_rev_id": 1202071552, "in": [], @@ -253777,7 +253831,7 @@ ] }, { - "str": "new", + "str": "2021", "token_id": 29460, "o_rev_id": 1202071552, "in": [], @@ -253786,7 +253840,7 @@ ] }, { - "str": "weapons", + "str": "|", "token_id": 29461, "o_rev_id": 1202071552, "in": [], @@ -253795,7 +253849,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29462, "o_rev_id": 1202071552, "in": [], @@ -253804,7 +253858,7 @@ ] }, { - "str": "|", + "str": "the", "token_id": 29463, "o_rev_id": 1202071552, "in": [], @@ -253813,7 +253867,7 @@ ] }, { - "str": "=", + "str": "of", "token_id": 29464, "o_rev_id": 1202071552, "in": [], @@ -253822,7 +253876,7 @@ ] }, { - "str": "-", + "str": "in", "token_id": 29465, "o_rev_id": 1202071552, "in": [], @@ -253831,7 +253885,7 @@ ] }, { - "str": "-", + "str": "its", "token_id": 29466, "o_rev_id": 1202071552, "in": [], @@ -253840,7 +253894,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29467, "o_rev_id": 1202071552, "in": [], @@ -253849,7 +253903,7 @@ ] }, { - "str": "<", + "str": "=", "token_id": 29468, "o_rev_id": 1202071552, "in": [], @@ -253858,7 +253912,7 @@ ] }, { - "str": ">", + "str": "-", "token_id": 29469, "o_rev_id": 1202071552, "in": [], @@ -253867,7 +253921,7 @@ ] }, { - "str": ",", + "str": "date", "token_id": 29470, "o_rev_id": 1202071552, "in": [], @@ -253876,7 +253930,7 @@ ] }, { - "str": "first", + "str": ",", "token_id": 29471, "o_rev_id": 1202071552, "in": [], @@ -253885,7 +253939,7 @@ ] }, { - "str": "expansion", + "str": "|", "token_id": 29472, "o_rev_id": 1202071552, "in": [], @@ -253894,7 +253948,7 @@ ] }, { - "str": ",", + "str": "website", "token_id": 29473, "o_rev_id": 1202071552, "in": [], @@ -253903,7 +253957,7 @@ ] }, { - "str": "|", + "str": "=", "token_id": 29474, "o_rev_id": 1202071552, "in": [], @@ -253912,7 +253966,7 @@ ] }, { - "str": "=", + "str": "polygon", "token_id": 29475, "o_rev_id": 1202071552, "in": [], @@ -253921,7 +253975,7 @@ ] }, { - "str": "-", + "str": "us", "token_id": 29476, "o_rev_id": 1202071552, "in": [], @@ -253930,7 +253984,7 @@ ] }, { - "str": ",", + "str": "september", "token_id": 29477, "o_rev_id": 1202071552, "in": [], @@ -253939,7 +253993,7 @@ ] }, { - "str": "in", + "str": ",", "token_id": 29478, "o_rev_id": 1202071552, "in": [], @@ -253957,7 +254011,7 @@ ] }, { - "str": "campaign", + "str": ",", "token_id": 29480, "o_rev_id": 1202071552, "in": [], @@ -253966,7 +254020,7 @@ ] }, { - "str": ",", + "str": "february", "token_id": 29481, "o_rev_id": 1202071552, "in": [], @@ -253984,7 +254038,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29483, "o_rev_id": 1202071552, "in": [], @@ -254002,7 +254056,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29485, "o_rev_id": 1202071552, "in": [], @@ -254011,7 +254065,7 @@ ] }, { - "str": ",", + "str": "\"", "token_id": 29486, "o_rev_id": 1202071552, "in": [], @@ -254020,7 +254074,7 @@ ] }, { - "str": ",", + "str": "\"", "token_id": 29487, "o_rev_id": 1202071552, "in": [], @@ -254029,7 +254083,7 @@ ] }, { - "str": ",", + "str": "date", "token_id": 29488, "o_rev_id": 1202071552, "in": [], @@ -254038,7 +254092,7 @@ ] }, { - "str": "|", + "str": "february", "token_id": 29489, "o_rev_id": 1202071552, "in": [], @@ -254047,7 +254101,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29490, "o_rev_id": 1202071552, "in": [], @@ -254056,7 +254110,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29491, "o_rev_id": 1202071552, "in": [], @@ -254065,7 +254119,7 @@ ] }, { - "str": "|", + "str": "=", "token_id": 29492, "o_rev_id": 1202071552, "in": [], @@ -254074,7 +254128,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29493, "o_rev_id": 1202071552, "in": [], @@ -254083,7 +254137,7 @@ ] }, { - "str": "nintendo", + "str": ",", "token_id": 29494, "o_rev_id": 1202071552, "in": [], @@ -254092,7 +254146,7 @@ ] }, { - "str": "splatoon", + "str": "cite", "token_id": 29495, "o_rev_id": 1202071552, "in": [], @@ -254101,7 +254155,7 @@ ] }, { - "str": "3", + "str": "april", "token_id": 29496, "o_rev_id": 1202071552, "in": [], @@ -254119,7 +254173,7 @@ ] }, { - "str": "coming", + "str": "-", "token_id": 29498, "o_rev_id": 1202071552, "in": [], @@ -254128,7 +254182,7 @@ ] }, { - "str": "in", + "str": ",", "token_id": 29499, "o_rev_id": 1202071552, "in": [], @@ -254137,7 +254191,7 @@ ] }, { - "str": "nintendo", + "str": ",", "token_id": 29500, "o_rev_id": 1202071552, "in": [], @@ -254155,7 +254209,7 @@ ] }, { - "str": "-", + "str": ".", "token_id": 29502, "o_rev_id": 1202071552, "in": [], @@ -254173,7 +254227,7 @@ ] }, { - "str": "|", + "str": "july", "token_id": 29504, "o_rev_id": 1202071552, "in": [], @@ -254182,7 +254236,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29505, "o_rev_id": 1202071552, "in": [], @@ -254191,7 +254245,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29506, "o_rev_id": 1202071552, "in": [], @@ -254209,7 +254263,7 @@ ] }, { - "str": "|", + "str": "title", "token_id": 29508, "o_rev_id": 1202071552, "in": [], @@ -254218,7 +254272,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 29509, "o_rev_id": 1202071552, "in": [], @@ -254227,7 +254281,7 @@ ] }, { - "str": "=", + "str": "'", "token_id": 29510, "o_rev_id": 1202071552, "in": [], @@ -254236,7 +254290,7 @@ ] }, { - "str": ",", + "str": "s", "token_id": 29511, "o_rev_id": 1202071552, "in": [], @@ -254245,7 +254299,7 @@ ] }, { - "str": "|", + "str": "first", "token_id": 29512, "o_rev_id": 1202071552, "in": [], @@ -254254,7 +254308,7 @@ ] }, { - "str": "=", + "str": "splatfest", "token_id": 29513, "o_rev_id": 1202071552, "in": [], @@ -254263,7 +254317,7 @@ ] }, { - "str": "the", + "str": "demo", "token_id": 29514, "o_rev_id": 1202071552, "in": [], @@ -254272,7 +254326,7 @@ ] }, { - "str": "of", + "str": ",", "token_id": 29515, "o_rev_id": 1202071552, "in": [], @@ -254281,7 +254335,7 @@ ] }, { - "str": "in", + "str": ",", "token_id": 29516, "o_rev_id": 1202071552, "in": [], @@ -254290,7 +254344,7 @@ ] }, { - "str": "its", + "str": "2022", "token_id": 29517, "o_rev_id": 1202071552, "in": [], @@ -254299,7 +254353,7 @@ ] }, { - "str": "-", + "str": "nintendo", "token_id": 29518, "o_rev_id": 1202071552, "in": [], @@ -254308,7 +254362,7 @@ ] }, { - "str": "|", + "str": "-", "token_id": 29519, "o_rev_id": 1202071552, "in": [], @@ -254317,7 +254371,7 @@ ] }, { - "str": "=", + "str": "url", "token_id": 29520, "o_rev_id": 1202071552, "in": [], @@ -254326,7 +254380,7 @@ ] }, { - "str": "|", + "str": "-", "token_id": 29521, "o_rev_id": 1202071552, "in": [], @@ -254335,7 +254389,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29522, "o_rev_id": 1202071552, "in": [], @@ -254344,7 +254398,7 @@ ] }, { - "str": "date", + "str": "live", "token_id": 29523, "o_rev_id": 1202071552, "in": [], @@ -254353,7 +254407,7 @@ ] }, { - "str": "=", + "str": "nintendo", "token_id": 29524, "o_rev_id": 1202071552, "in": [], @@ -254380,7 +254434,7 @@ ] }, { - "str": "=", + "str": "date", "token_id": 29527, "o_rev_id": 1202071552, "in": [], @@ -254389,7 +254443,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29528, "o_rev_id": 1202071552, "in": [], @@ -254398,7 +254452,7 @@ ] }, { - "str": "-", + "str": "2022", "token_id": 29529, "o_rev_id": 1202071552, "in": [], @@ -254407,7 +254461,7 @@ ] }, { - "str": "september", + "str": "url", "token_id": 29530, "o_rev_id": 1202071552, "in": [], @@ -254416,7 +254470,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 29531, "o_rev_id": 1202071552, "in": [], @@ -254425,7 +254479,7 @@ ] }, { - "str": "a", + "str": ",", "token_id": 29532, "o_rev_id": 1202071552, "in": [], @@ -254434,7 +254488,7 @@ ] }, { - "str": "trailer", + "str": "2022", "token_id": 29533, "o_rev_id": 1202071552, "in": [], @@ -254443,7 +254497,7 @@ ] }, { - "str": "splatoon", + "str": "<", "token_id": 29534, "o_rev_id": 1202071552, "in": [], @@ -254452,7 +254506,7 @@ ] }, { - "str": "3", + "str": "ref", "token_id": 29535, "o_rev_id": 1202071552, "in": [], @@ -254461,7 +254515,7 @@ ] }, { - "str": "co", + "str": ">", "token_id": 29536, "o_rev_id": 1202071552, "in": [], @@ -254470,7 +254524,7 @@ ] }, { - "str": "salmon", + "str": ",", "token_id": 29537, "o_rev_id": 1202071552, "in": [], @@ -254479,7 +254533,7 @@ ] }, { - "str": "run", + "str": ",", "token_id": 29538, "o_rev_id": 1202071552, "in": [], @@ -254488,7 +254542,7 @@ ] }, { - "str": "on", + "str": "<", "token_id": 29539, "o_rev_id": 1202071552, "in": [], @@ -254497,7 +254551,7 @@ ] }, { - "str": ",", + "str": "ref", "token_id": 29540, "o_rev_id": 1202071552, "in": [], @@ -254506,7 +254560,7 @@ ] }, { - "str": ",", + "str": ">", "token_id": 29541, "o_rev_id": 1202071552, "in": [], @@ -254515,7 +254569,7 @@ ] }, { - "str": "february", + "str": "{{", "token_id": 29542, "o_rev_id": 1202071552, "in": [], @@ -254524,7 +254578,7 @@ ] }, { - "str": ",", + "str": "cite", "token_id": 29543, "o_rev_id": 1202071552, "in": [], @@ -254533,7 +254587,7 @@ ] }, { - "str": "game", + "str": "web", "token_id": 29544, "o_rev_id": 1202071552, "in": [], @@ -254542,7 +254596,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29545, "o_rev_id": 1202071552, "in": [], @@ -254551,7 +254605,7 @@ ] }, { - "str": "=", + "str": "last", "token_id": 29546, "o_rev_id": 1202071552, "in": [], @@ -254560,7 +254614,7 @@ ] }, { - "str": "\"", + "str": ",", "token_id": 29547, "o_rev_id": 1202071552, "in": [], @@ -254569,7 +254623,7 @@ ] }, { - "str": "\"", + "str": "-", "token_id": 29548, "o_rev_id": 1202071552, "in": [], @@ -254578,7 +254632,7 @@ ] }, { - "str": "date", + "str": ",", "token_id": 29549, "o_rev_id": 1202071552, "in": [], @@ -254587,7 +254641,7 @@ ] }, { - "str": "february", + "str": "-", "token_id": 29550, "o_rev_id": 1202071552, "in": [], @@ -254596,7 +254650,7 @@ ] }, { - "str": ",", + "str": "/", "token_id": 29551, "o_rev_id": 1202071552, "in": [], @@ -254605,7 +254659,7 @@ ] }, { - "str": "|", + "str": ">", "token_id": 29552, "o_rev_id": 1202071552, "in": [], @@ -254614,7 +254668,7 @@ ] }, { - "str": "=", + "str": "on", "token_id": 29553, "o_rev_id": 1202071552, "in": [], @@ -254641,7 +254695,7 @@ ] }, { - "str": "<", + "str": ",", "token_id": 29556, "o_rev_id": 1202071552, "in": [], @@ -254650,7 +254704,7 @@ ] }, { - "str": ">", + "str": ",", "token_id": 29557, "o_rev_id": 1202071552, "in": [], @@ -254659,7 +254713,7 @@ ] }, { - "str": "april", + "str": "and", "token_id": 29558, "o_rev_id": 1202071552, "in": [], @@ -254686,7 +254740,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29561, "o_rev_id": 1202071552, "in": [], @@ -254695,7 +254749,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29562, "o_rev_id": 1202071552, "in": [], @@ -254704,7 +254758,7 @@ ] }, { - "str": ".", + "str": "title", "token_id": 29563, "o_rev_id": 1202071552, "in": [], @@ -254713,7 +254767,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29564, "o_rev_id": 1202071552, "in": [], @@ -254722,7 +254776,7 @@ ] }, { - "str": ",", + "str": "splatoon", "token_id": 29565, "o_rev_id": 1202071552, "in": [], @@ -254731,7 +254785,7 @@ ] }, { - "str": "|", + "str": "3", "token_id": 29566, "o_rev_id": 1202071552, "in": [], @@ -254740,7 +254794,7 @@ ] }, { - "str": "=", + "str": "'", "token_id": 29567, "o_rev_id": 1202071552, "in": [], @@ -254749,7 +254803,7 @@ ] }, { - "str": ",", + "str": "splatfest", "token_id": 29568, "o_rev_id": 1202071552, "in": [], @@ -254758,7 +254812,7 @@ ] }, { - "str": ",", + "str": "in", "token_id": 29569, "o_rev_id": 1202071552, "in": [], @@ -254767,7 +254821,7 @@ ] }, { - "str": "nintendo", + "str": "|", "token_id": 29570, "o_rev_id": 1202071552, "in": [], @@ -254776,7 +254830,7 @@ ] }, { - "str": "a", + "str": "=", "token_id": 29571, "o_rev_id": 1202071552, "in": [], @@ -254785,7 +254839,7 @@ ] }, { - "str": "splatoon", + "str": ",", "token_id": 29572, "o_rev_id": 1202071552, "in": [], @@ -254794,7 +254848,7 @@ ] }, { - "str": "3", + "str": "2022", "token_id": 29573, "o_rev_id": 1202071552, "in": [], @@ -254803,7 +254857,7 @@ ] }, { - "str": "direct", + "str": ",", "token_id": 29574, "o_rev_id": 1202071552, "in": [], @@ -254812,7 +254866,7 @@ ] }, { - "str": "=", + "str": "url", "token_id": 29575, "o_rev_id": 1202071552, "in": [], @@ -254821,7 +254875,7 @@ ] }, { - "str": "'", + "str": "nintendo", "token_id": 29576, "o_rev_id": 1202071552, "in": [], @@ -254830,7 +254884,7 @@ ] }, { - "str": "s", + "str": ",", "token_id": 29577, "o_rev_id": 1202071552, "in": [], @@ -254839,7 +254893,7 @@ ] }, { - "str": "splatfest", + "str": "august", "token_id": 29578, "o_rev_id": 1202071552, "in": [], @@ -254848,7 +254902,7 @@ ] }, { - "str": "demo", + "str": ",", "token_id": 29579, "o_rev_id": 1202071552, "in": [], @@ -254857,7 +254911,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29580, "o_rev_id": 1202071552, "in": [], @@ -254866,7 +254920,7 @@ ] }, { - "str": ",", + "str": "august", "token_id": 29581, "o_rev_id": 1202071552, "in": [], @@ -254875,7 +254929,7 @@ ] }, { - "str": "nintendo", + "str": ",", "token_id": 29582, "o_rev_id": 1202071552, "in": [], @@ -254884,7 +254938,7 @@ ] }, { - "str": "-", + "str": "2022", "token_id": 29583, "o_rev_id": 1202071552, "in": [], @@ -254893,7 +254947,7 @@ ] }, { - "str": "-", + "str": "|", "token_id": 29584, "o_rev_id": 1202071552, "in": [], @@ -254902,7 +254956,7 @@ ] }, { - "str": ",", + "str": "website", "token_id": 29585, "o_rev_id": 1202071552, "in": [], @@ -254911,7 +254965,7 @@ ] }, { - "str": "|", + "str": "=", "token_id": 29586, "o_rev_id": 1202071552, "in": [], @@ -254920,7 +254974,7 @@ ] }, { - "str": "-", + "str": "|", "token_id": 29587, "o_rev_id": 1202071552, "in": [], @@ -254929,7 +254983,7 @@ ] }, { - "str": "=", + "str": "access", "token_id": 29588, "o_rev_id": 1202071552, "in": [], @@ -254938,7 +254992,7 @@ ] }, { - "str": "live", + "str": "-", "token_id": 29589, "o_rev_id": 1202071552, "in": [], @@ -254947,7 +255001,7 @@ ] }, { - "str": "nintendo", + "str": "date", "token_id": 29590, "o_rev_id": 1202071552, "in": [], @@ -254956,7 +255010,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29591, "o_rev_id": 1202071552, "in": [], @@ -254965,7 +255019,7 @@ ] }, { - "str": "|", + "str": "august", "token_id": 29592, "o_rev_id": 1202071552, "in": [], @@ -254974,7 +255028,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29593, "o_rev_id": 1202071552, "in": [], @@ -254983,7 +255037,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29594, "o_rev_id": 1202071552, "in": [], @@ -254992,7 +255046,7 @@ ] }, { - "str": "|", + "str": "it", "token_id": 29595, "o_rev_id": 1202071552, "in": [], @@ -255001,7 +255055,7 @@ ] }, { - "str": "=", + "str": "august", "token_id": 29596, "o_rev_id": 1202071552, "in": [], @@ -255010,7 +255064,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29597, "o_rev_id": 1202071552, "in": [], @@ -255028,7 +255082,7 @@ ] }, { - "str": ",", + "str": ".", "token_id": 29599, "o_rev_id": 1202071552, "in": [], @@ -255037,7 +255091,7 @@ ] }, { - "str": "|", + "str": "=", "token_id": 29600, "o_rev_id": 1202071552, "in": [], @@ -255046,7 +255100,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29601, "o_rev_id": 1202071552, "in": [], @@ -255064,7 +255118,7 @@ ] }, { - "str": "<", + "str": ".", "token_id": 29603, "o_rev_id": 1202071552, "in": [], @@ -255073,7 +255127,7 @@ ] }, { - "str": ">", + "str": ",", "token_id": 29604, "o_rev_id": 1202071552, "in": [], @@ -255082,7 +255136,7 @@ ] }, { - "str": "{{", + "str": ",", "token_id": 29605, "o_rev_id": 1202071552, "in": [], @@ -255091,7 +255145,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29606, "o_rev_id": 1202071552, "in": [], @@ -255100,7 +255154,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29607, "o_rev_id": 1202071552, "in": [], @@ -255109,7 +255163,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29608, "o_rev_id": 1202071552, "in": [], @@ -255118,7 +255172,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29609, "o_rev_id": 1202071552, "in": [], @@ -255127,7 +255181,7 @@ ] }, { - "str": ",", + "str": "access", "token_id": 29610, "o_rev_id": 1202071552, "in": [], @@ -255136,7 +255190,7 @@ ] }, { - "str": "2022", + "str": "-", "token_id": 29611, "o_rev_id": 1202071552, "in": [], @@ -255145,7 +255199,7 @@ ] }, { - "str": "launch", + "str": "date", "token_id": 29612, "o_rev_id": 1202071552, "in": [], @@ -255154,7 +255208,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29613, "o_rev_id": 1202071552, "in": [], @@ -255163,7 +255217,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29614, "o_rev_id": 1202071552, "in": [], @@ -255172,7 +255226,7 @@ ] }, { - "str": "/", + "str": "|", "token_id": 29615, "o_rev_id": 1202071552, "in": [], @@ -255181,7 +255235,7 @@ ] }, { - "str": ">", + "str": "website", "token_id": 29616, "o_rev_id": 1202071552, "in": [], @@ -255190,7 +255244,7 @@ ] }, { - "str": "on", + "str": "=", "token_id": 29617, "o_rev_id": 1202071552, "in": [], @@ -255199,7 +255253,7 @@ ] }, { - "str": ",", + "str": "nintendo", "token_id": 29618, "o_rev_id": 1202071552, "in": [], @@ -255208,7 +255262,7 @@ ] }, { - "str": ",", + "str": "life", "token_id": 29619, "o_rev_id": 1202071552, "in": [], @@ -255217,7 +255271,7 @@ ] }, { - "str": ",", + "str": "gb", "token_id": 29620, "o_rev_id": 1202071552, "in": [], @@ -255235,7 +255289,7 @@ ] }, { - "str": "the", + "str": "2022", "token_id": 29622, "o_rev_id": 1202071552, "in": [], @@ -255244,7 +255298,7 @@ ] }, { - "str": "and", + "str": "-", "token_id": 29623, "o_rev_id": 1202071552, "in": [], @@ -255271,7 +255325,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29626, "o_rev_id": 1202071552, "in": [], @@ -255280,7 +255334,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29627, "o_rev_id": 1202071552, "in": [], @@ -255289,7 +255343,7 @@ ] }, { - "str": "'", + "str": "website", "token_id": 29628, "o_rev_id": 1202071552, "in": [], @@ -255298,7 +255352,7 @@ ] }, { - "str": "splatfest", + "str": "=", "token_id": 29629, "o_rev_id": 1202071552, "in": [], @@ -255307,7 +255361,7 @@ ] }, { - "str": "in", + "str": "|", "token_id": 29630, "o_rev_id": 1202071552, "in": [], @@ -255316,7 +255370,7 @@ ] }, { - "str": "|", + "str": "=", "token_id": 29631, "o_rev_id": 1202071552, "in": [], @@ -255325,7 +255379,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29632, "o_rev_id": 1202071552, "in": [], @@ -255334,7 +255388,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29633, "o_rev_id": 1202071552, "in": [], @@ -255343,7 +255397,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29634, "o_rev_id": 1202071552, "in": [], @@ -255352,7 +255406,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29635, "o_rev_id": 1202071552, "in": [], @@ -255361,7 +255415,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 29636, "o_rev_id": 1202071552, "in": [], @@ -255370,7 +255424,7 @@ ] }, { - "str": "-", + "str": "date", "token_id": 29637, "o_rev_id": 1202071552, "in": [], @@ -255388,7 +255442,7 @@ ] }, { - "str": "|", + "str": "\"", "token_id": 29639, "o_rev_id": 1202071552, "in": [], @@ -255397,7 +255451,7 @@ ] }, { - "str": "-", + "str": "famitsu", "token_id": 29640, "o_rev_id": 1202071552, "in": [], @@ -255406,7 +255460,7 @@ ] }, { - "str": "=", + "str": "\"", "token_id": 29641, "o_rev_id": 1202071552, "in": [], @@ -255415,7 +255469,7 @@ ] }, { - "str": ",", + "str": "28", "token_id": 29642, "o_rev_id": 1202071552, "in": [], @@ -255424,7 +255478,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29643, "o_rev_id": 1202071552, "in": [], @@ -255433,7 +255487,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29644, "o_rev_id": 1202071552, "in": [], @@ -255442,7 +255496,7 @@ ] }, { - "str": "august", + "str": ",", "token_id": 29645, "o_rev_id": 1202071552, "in": [], @@ -255469,7 +255523,7 @@ ] }, { - "str": "august", + "str": "title", "token_id": 29648, "o_rev_id": 1202071552, "in": [], @@ -255478,7 +255532,7 @@ ] }, { - "str": ",", + "str": "review", "token_id": 29649, "o_rev_id": 1202071552, "in": [], @@ -255487,7 +255541,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29650, "o_rev_id": 1202071552, "in": [], @@ -255496,7 +255550,7 @@ ] }, { - "str": "-", + "str": "22", "token_id": 29651, "o_rev_id": 1202071552, "in": [], @@ -255505,7 +255559,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29652, "o_rev_id": 1202071552, "in": [], @@ -255514,7 +255568,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29653, "o_rev_id": 1202071552, "in": [], @@ -255523,7 +255577,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29654, "o_rev_id": 1202071552, "in": [], @@ -255532,7 +255586,7 @@ ] }, { - "str": "|", + "str": "url", "token_id": 29655, "o_rev_id": 1202071552, "in": [], @@ -255541,7 +255595,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 29656, "o_rev_id": 1202071552, "in": [], @@ -255550,7 +255604,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29657, "o_rev_id": 1202071552, "in": [], @@ -255559,7 +255613,7 @@ ] }, { - "str": "august", + "str": ",", "token_id": 29658, "o_rev_id": 1202071552, "in": [], @@ -255577,7 +255631,7 @@ ] }, { - "str": "2022", + "str": "=", "token_id": 29660, "o_rev_id": 1202071552, "in": [], @@ -255586,7 +255640,7 @@ ] }, { - "str": "it", + "str": ",", "token_id": 29661, "o_rev_id": 1202071552, "in": [], @@ -255595,7 +255649,7 @@ ] }, { - "str": "august", + "str": ",", "token_id": 29662, "o_rev_id": 1202071552, "in": [], @@ -255622,7 +255676,7 @@ ] }, { - "str": ".", + "str": "-", "token_id": 29665, "o_rev_id": 1202071552, "in": [], @@ -255631,7 +255685,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29666, "o_rev_id": 1202071552, "in": [], @@ -255640,7 +255694,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 29667, "o_rev_id": 1202071552, "in": [], @@ -255649,7 +255703,7 @@ ] }, { - "str": "splatoon", + "str": ",", "token_id": 29668, "o_rev_id": 1202071552, "in": [], @@ -255658,7 +255712,7 @@ ] }, { - "str": "3", + "str": "splatoon", "token_id": 29669, "o_rev_id": 1202071552, "in": [], @@ -255667,7 +255721,7 @@ ] }, { - "str": ",", + "str": "3", "token_id": 29670, "o_rev_id": 1202071552, "in": [], @@ -255676,7 +255730,7 @@ ] }, { - "str": ".", + "str": "|", "token_id": 29671, "o_rev_id": 1202071552, "in": [], @@ -255685,7 +255739,7 @@ ] }, { - "str": ",", + "str": "access", "token_id": 29672, "o_rev_id": 1202071552, "in": [], @@ -255694,7 +255748,7 @@ ] }, { - "str": ",", + "str": "date", "token_id": 29673, "o_rev_id": 1202071552, "in": [], @@ -255703,7 +255757,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29674, "o_rev_id": 1202071552, "in": [], @@ -255721,7 +255775,7 @@ ] }, { - "str": "a", + "str": ",", "token_id": 29676, "o_rev_id": 1202071552, "in": [], @@ -255739,7 +255793,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29678, "o_rev_id": 1202071552, "in": [], @@ -255748,7 +255802,7 @@ ] }, { - "str": "|", + "str": "title", "token_id": 29679, "o_rev_id": 1202071552, "in": [], @@ -255766,7 +255820,7 @@ ] }, { - "str": "nintendo", + "str": "splatoon", "token_id": 29681, "o_rev_id": 1202071552, "in": [], @@ -255775,7 +255829,7 @@ ] }, { - "str": "life", + "str": "3", "token_id": 29682, "o_rev_id": 1202071552, "in": [], @@ -255784,7 +255838,7 @@ ] }, { - "str": "gb", + "str": "review", "token_id": 29683, "o_rev_id": 1202071552, "in": [], @@ -255811,7 +255865,7 @@ ] }, { - "str": "-", + "str": "name", "token_id": 29686, "o_rev_id": 1202071552, "in": [], @@ -255820,7 +255874,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29687, "o_rev_id": 1202071552, "in": [], @@ -255829,7 +255883,7 @@ ] }, { - "str": ",", + "str": "\"", "token_id": 29688, "o_rev_id": 1202071552, "in": [], @@ -255838,7 +255892,7 @@ ] }, { - "str": "|", + "str": "\"", "token_id": 29689, "o_rev_id": 1202071552, "in": [], @@ -255847,7 +255901,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29690, "o_rev_id": 1202071552, "in": [], @@ -255856,7 +255910,7 @@ ] }, { - "str": "|", + "str": "last", "token_id": 29691, "o_rev_id": 1202071552, "in": [], @@ -255883,7 +255937,7 @@ ] }, { - "str": "=", + "str": "first", "token_id": 29694, "o_rev_id": 1202071552, "in": [], @@ -255892,7 +255946,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29695, "o_rev_id": 1202071552, "in": [], @@ -255901,7 +255955,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29696, "o_rev_id": 1202071552, "in": [], @@ -255910,7 +255964,7 @@ ] }, { - "str": ",", + "str": "date", "token_id": 29697, "o_rev_id": 1202071552, "in": [], @@ -255919,7 +255973,7 @@ ] }, { - "str": "splatoon", + "str": "=", "token_id": 29698, "o_rev_id": 1202071552, "in": [], @@ -255928,7 +255982,7 @@ ] }, { - "str": "3", + "str": ",", "token_id": 29699, "o_rev_id": 1202071552, "in": [], @@ -255937,7 +255991,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29700, "o_rev_id": 1202071552, "in": [], @@ -255946,7 +256000,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 29701, "o_rev_id": 1202071552, "in": [], @@ -255955,7 +256009,7 @@ ] }, { - "str": ",", + "str": "squid", "token_id": 29702, "o_rev_id": 1202071552, "in": [], @@ -255964,7 +256018,7 @@ ] }, { - "str": "\"", + "str": "game", "token_id": 29703, "o_rev_id": 1202071552, "in": [], @@ -255973,7 +256027,7 @@ ] }, { - "str": "\"", + "str": "7", "token_id": 29704, "o_rev_id": 1202071552, "in": [], @@ -255982,7 +256036,7 @@ ] }, { - "str": "28", + "str": ",", "token_id": 29705, "o_rev_id": 1202071552, "in": [], @@ -255991,7 +256045,7 @@ ] }, { - "str": ",", + "str": "9", "token_id": 29706, "o_rev_id": 1202071552, "in": [], @@ -256009,7 +256063,7 @@ ] }, { - "str": ",", + "str": "url", "token_id": 29708, "o_rev_id": 1202071552, "in": [], @@ -256018,7 +256072,7 @@ ] }, { - "str": "-", + "str": "name", "token_id": 29709, "o_rev_id": 1202071552, "in": [], @@ -256027,7 +256081,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29710, "o_rev_id": 1202071552, "in": [], @@ -256036,7 +256090,7 @@ ] }, { - "str": "review", + "str": "\"", "token_id": 29711, "o_rev_id": 1202071552, "in": [], @@ -256045,7 +256099,7 @@ ] }, { - "str": ",", + "str": "vg247", "token_id": 29712, "o_rev_id": 1202071552, "in": [], @@ -256054,7 +256108,7 @@ ] }, { - "str": "22", + "str": "\"", "token_id": 29713, "o_rev_id": 1202071552, "in": [], @@ -256063,7 +256117,7 @@ ] }, { - "str": ",", + "str": "7", "token_id": 29714, "o_rev_id": 1202071552, "in": [], @@ -256081,7 +256135,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29716, "o_rev_id": 1202071552, "in": [], @@ -256090,7 +256144,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29717, "o_rev_id": 1202071552, "in": [], @@ -256099,7 +256153,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29718, "o_rev_id": 1202071552, "in": [], @@ -256108,7 +256162,7 @@ ] }, { - "str": "=", + "str": "7", "token_id": 29719, "o_rev_id": 1202071552, "in": [], @@ -256135,7 +256189,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29722, "o_rev_id": 1202071552, "in": [], @@ -256144,7 +256198,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 29723, "o_rev_id": 1202071552, "in": [], @@ -256153,7 +256207,7 @@ ] }, { - "str": "-", + "str": "name", "token_id": 29724, "o_rev_id": 1202071552, "in": [], @@ -256162,7 +256216,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29725, "o_rev_id": 1202071552, "in": [], @@ -256171,7 +256225,7 @@ ] }, { - "str": "-", + "str": "\"", "token_id": 29726, "o_rev_id": 1202071552, "in": [], @@ -256180,7 +256234,7 @@ ] }, { - "str": ",", + "str": "\"", "token_id": 29727, "o_rev_id": 1202071552, "in": [], @@ -256189,7 +256243,7 @@ ] }, { - "str": "|", + "str": "first", "token_id": 29728, "o_rev_id": 1202071552, "in": [], @@ -256198,7 +256252,7 @@ ] }, { - "str": "=", + "str": "7", "token_id": 29729, "o_rev_id": 1202071552, "in": [], @@ -256216,7 +256270,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29731, "o_rev_id": 1202071552, "in": [], @@ -256225,7 +256279,7 @@ ] }, { - "str": ",", + "str": "title", "token_id": 29732, "o_rev_id": 1202071552, "in": [], @@ -256234,7 +256288,7 @@ ] }, { - "str": "|", + "str": "=", "token_id": 29733, "o_rev_id": 1202071552, "in": [], @@ -256243,7 +256297,7 @@ ] }, { - "str": "=", + "str": "review", "token_id": 29734, "o_rev_id": 1202071552, "in": [], @@ -256252,7 +256306,7 @@ ] }, { - "str": "|", + "str": "live", "token_id": 29735, "o_rev_id": 1202071552, "in": [], @@ -256261,7 +256315,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29736, "o_rev_id": 1202071552, "in": [], @@ -256270,7 +256324,7 @@ ] }, { - "str": ",", + "str": "video", "token_id": 29737, "o_rev_id": 1202071552, "in": [], @@ -256288,7 +256342,7 @@ ] }, { - "str": "|", + "str": "url", "token_id": 29739, "o_rev_id": 1202071552, "in": [], @@ -256297,7 +256351,7 @@ ] }, { - "str": "=", + "str": "-", "token_id": 29740, "o_rev_id": 1202071552, "in": [], @@ -256306,7 +256360,7 @@ ] }, { - "str": "name", + "str": "the", "token_id": 29741, "o_rev_id": 1202071552, "in": [], @@ -256315,7 +256369,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29742, "o_rev_id": 1202071552, "in": [], @@ -256324,7 +256378,7 @@ ] }, { - "str": "\"", + "str": "first", "token_id": 29743, "o_rev_id": 1202071552, "in": [], @@ -256333,7 +256387,7 @@ ] }, { - "str": "\"", + "str": ",", "token_id": 29744, "o_rev_id": 1202071552, "in": [], @@ -256342,7 +256396,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29745, "o_rev_id": 1202071552, "in": [], @@ -256351,7 +256405,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29746, "o_rev_id": 1202071552, "in": [], @@ -256360,7 +256414,7 @@ ] }, { - "str": "|", + "str": "2022", "token_id": 29747, "o_rev_id": 1202071552, "in": [], @@ -256369,7 +256423,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29748, "o_rev_id": 1202071552, "in": [], @@ -256378,7 +256432,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29749, "o_rev_id": 1202071552, "in": [], @@ -256387,7 +256441,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29750, "o_rev_id": 1202071552, "in": [], @@ -256405,7 +256459,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29752, "o_rev_id": 1202071552, "in": [], @@ -256414,7 +256468,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29753, "o_rev_id": 1202071552, "in": [], @@ -256423,7 +256477,7 @@ ] }, { - "str": "squid", + "str": "2022", "token_id": 29754, "o_rev_id": 1202071552, "in": [], @@ -256432,7 +256486,7 @@ ] }, { - "str": "game", + "str": ",", "token_id": 29755, "o_rev_id": 1202071552, "in": [], @@ -256441,7 +256495,7 @@ ] }, { - "str": "7", + "str": "in", "token_id": 29756, "o_rev_id": 1202071552, "in": [], @@ -256459,7 +256513,7 @@ ] }, { - "str": "9", + "str": ",", "token_id": 29758, "o_rev_id": 1202071552, "in": [], @@ -256477,7 +256531,7 @@ ] }, { - "str": "name", + "str": ",", "token_id": 29760, "o_rev_id": 1202071552, "in": [], @@ -256486,7 +256540,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29761, "o_rev_id": 1202071552, "in": [], @@ -256495,7 +256549,7 @@ ] }, { - "str": "\"", + "str": ",", "token_id": 29762, "o_rev_id": 1202071552, "in": [], @@ -256504,7 +256558,7 @@ ] }, { - "str": "\"", + "str": ",", "token_id": 29763, "o_rev_id": 1202071552, "in": [], @@ -256513,7 +256567,7 @@ ] }, { - "str": "7", + "str": ",", "token_id": 29764, "o_rev_id": 1202071552, "in": [], @@ -256522,7 +256576,7 @@ ] }, { - "str": ",", + "str": "shares", "token_id": 29765, "o_rev_id": 1202071552, "in": [], @@ -256531,7 +256585,7 @@ ] }, { - "str": "7", + "str": "jump", "token_id": 29766, "o_rev_id": 1202071552, "in": [], @@ -256540,7 +256594,7 @@ ] }, { - "str": ",", + "str": "%", "token_id": 29767, "o_rev_id": 1202071552, "in": [], @@ -256549,7 +256603,7 @@ ] }, { - "str": ",", + "str": "record", "token_id": 29768, "o_rev_id": 1202071552, "in": [], @@ -256558,7 +256612,7 @@ ] }, { - "str": "-", + "str": "'", "token_id": 29769, "o_rev_id": 1202071552, "in": [], @@ -256567,7 +256621,7 @@ ] }, { - "str": "name", + "str": "'", "token_id": 29770, "o_rev_id": 1202071552, "in": [], @@ -256576,7 +256630,7 @@ ] }, { - "str": "=", + "str": "launch", "token_id": 29771, "o_rev_id": 1202071552, "in": [], @@ -256585,7 +256639,7 @@ ] }, { - "str": "\"", + "str": "september", "token_id": 29772, "o_rev_id": 1202071552, "in": [], @@ -256594,7 +256648,7 @@ ] }, { - "str": "\"", + "str": ",", "token_id": 29773, "o_rev_id": 1202071552, "in": [], @@ -256603,7 +256657,7 @@ ] }, { - "str": "first", + "str": "september", "token_id": 29774, "o_rev_id": 1202071552, "in": [], @@ -256612,7 +256666,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29775, "o_rev_id": 1202071552, "in": [], @@ -256621,7 +256675,7 @@ ] }, { - "str": "=", + "str": "september", "token_id": 29776, "o_rev_id": 1202071552, "in": [], @@ -256630,7 +256684,7 @@ ] }, { - "str": "7", + "str": ",", "token_id": 29777, "o_rev_id": 1202071552, "in": [], @@ -256639,7 +256693,7 @@ ] }, { - "str": ",", + "str": "september", "token_id": 29778, "o_rev_id": 1202071552, "in": [], @@ -256648,7 +256702,7 @@ ] }, { - "str": "|", + "str": "15", "token_id": 29779, "o_rev_id": 1202071552, "in": [], @@ -256657,7 +256711,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29780, "o_rev_id": 1202071552, "in": [], @@ -256666,7 +256720,7 @@ ] }, { - "str": "review", + "str": "september", "token_id": 29781, "o_rev_id": 1202071552, "in": [], @@ -256675,7 +256729,7 @@ ] }, { - "str": "live", + "str": "15", "token_id": 29782, "o_rev_id": 1202071552, "in": [], @@ -256693,7 +256747,7 @@ ] }, { - "str": "video", + "str": "september", "token_id": 29784, "o_rev_id": 1202071552, "in": [], @@ -256702,7 +256756,7 @@ ] }, { - "str": ",", + "str": "12", "token_id": 29785, "o_rev_id": 1202071552, "in": [], @@ -256711,7 +256765,7 @@ ] }, { - "str": "review", + "str": ",", "token_id": 29786, "o_rev_id": 1202071552, "in": [], @@ -256720,7 +256774,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29787, "o_rev_id": 1202071552, "in": [], @@ -256729,7 +256783,7 @@ ] }, { - "str": "-", + "str": ",", "token_id": 29788, "o_rev_id": 1202071552, "in": [], @@ -256738,7 +256792,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29789, "o_rev_id": 1202071552, "in": [], @@ -256747,7 +256801,7 @@ ] }, { - "str": "|", + "str": "date", "token_id": 29790, "o_rev_id": 1202071552, "in": [], @@ -256765,7 +256819,7 @@ ] }, { - "str": "first", + "str": "september", "token_id": 29792, "o_rev_id": 1202071552, "in": [], @@ -256783,7 +256837,7 @@ ] }, { - "str": "3", + "str": "|", "token_id": 29794, "o_rev_id": 1202071552, "in": [], @@ -256792,7 +256846,7 @@ ] }, { - "str": ",", + "str": "title", "token_id": 29795, "o_rev_id": 1202071552, "in": [], @@ -256801,7 +256855,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 29796, "o_rev_id": 1202071552, "in": [], @@ -256828,7 +256882,7 @@ ] }, { - "str": "nintendo", + "str": "{{", "token_id": 29799, "o_rev_id": 1202071552, "in": [], @@ -256837,7 +256891,7 @@ ] }, { - "str": "splatoon", + "str": "cite", "token_id": 29800, "o_rev_id": 1202071552, "in": [], @@ -256846,7 +256900,7 @@ ] }, { - "str": "3", + "str": "web", "token_id": 29801, "o_rev_id": 1202071552, "in": [], @@ -256855,7 +256909,7 @@ ] }, { - "str": "the", + "str": "september", "token_id": 29802, "o_rev_id": 1202071552, "in": [], @@ -256864,7 +256918,7 @@ ] }, { - "str": "fastest", + "str": ",", "token_id": 29803, "o_rev_id": 1202071552, "in": [], @@ -256873,7 +256927,7 @@ ] }, { - "str": "selling", + "str": ",", "token_id": 29804, "o_rev_id": 1202071552, "in": [], @@ -256882,7 +256936,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29805, "o_rev_id": 1202071552, "in": [], @@ -256891,7 +256945,7 @@ ] }, { - "str": "|", + "str": "nintendo", "token_id": 29806, "o_rev_id": 1202071552, "in": [], @@ -256900,7 +256954,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29807, "o_rev_id": 1202071552, "in": [], @@ -256909,7 +256963,7 @@ ] }, { - "str": ",", + "str": "<", "token_id": 29808, "o_rev_id": 1202071552, "in": [], @@ -256918,7 +256972,7 @@ ] }, { - "str": ",", + "str": "ref", "token_id": 29809, "o_rev_id": 1202071552, "in": [], @@ -256927,7 +256981,7 @@ ] }, { - "str": "|", + "str": ">", "token_id": 29810, "o_rev_id": 1202071552, "in": [], @@ -256936,7 +256990,7 @@ ] }, { - "str": "-", + "str": "{{", "token_id": 29811, "o_rev_id": 1202071552, "in": [], @@ -256945,7 +256999,7 @@ ] }, { - "str": "=", + "str": "cite", "token_id": 29812, "o_rev_id": 1202071552, "in": [], @@ -256954,7 +257008,7 @@ ] }, { - "str": ",", + "str": "web", "token_id": 29813, "o_rev_id": 1202071552, "in": [], @@ -256963,7 +257017,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29814, "o_rev_id": 1202071552, "in": [], @@ -256972,7 +257026,7 @@ ] }, { - "str": ",", + "str": "last", "token_id": 29815, "o_rev_id": 1202071552, "in": [], @@ -256981,7 +257035,7 @@ ] }, { - "str": "at", + "str": "=", "token_id": 29816, "o_rev_id": 1202071552, "in": [], @@ -256990,7 +257044,7 @@ ] }, { - "str": "the", + "str": "|", "token_id": 29817, "o_rev_id": 1202071552, "in": [], @@ -256999,7 +257053,7 @@ ] }, { - "str": "time", + "str": "first", "token_id": 29818, "o_rev_id": 1202071552, "in": [], @@ -257008,7 +257062,7 @@ ] }, { - "str": "pokémon", + "str": "=", "token_id": 29819, "o_rev_id": 1202071552, "in": [], @@ -257017,7 +257071,7 @@ ] }, { - "str": "and", + "str": "|", "token_id": 29820, "o_rev_id": 1202071552, "in": [], @@ -257026,7 +257080,7 @@ ] }, { - "str": "in", + "str": "date", "token_id": 29821, "o_rev_id": 1202071552, "in": [], @@ -257035,7 +257089,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29822, "o_rev_id": 1202071552, "in": [], @@ -257053,7 +257107,7 @@ ] }, { - "str": "pokémon", + "str": ":", "token_id": 29824, "o_rev_id": 1202071552, "in": [], @@ -257062,7 +257116,7 @@ ] }, { - "str": "scarlet", + "str": ",", "token_id": 29825, "o_rev_id": 1202071552, "in": [], @@ -257071,7 +257125,7 @@ ] }, { - "str": "days", + "str": "|", "token_id": 29826, "o_rev_id": 1202071552, "in": [], @@ -257080,7 +257134,7 @@ ] }, { - "str": ",", + "str": "website", "token_id": 29827, "o_rev_id": 1202071552, "in": [], @@ -257089,7 +257143,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29828, "o_rev_id": 1202071552, "in": [], @@ -257098,7 +257152,7 @@ ] }, { - "str": ",", + "str": "nintendo", "token_id": 29829, "o_rev_id": 1202071552, "in": [], @@ -257107,7 +257161,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29830, "o_rev_id": 1202071552, "in": [], @@ -257116,7 +257170,7 @@ ] }, { - "str": ",", + "str": "language", "token_id": 29831, "o_rev_id": 1202071552, "in": [], @@ -257125,7 +257179,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29832, "o_rev_id": 1202071552, "in": [], @@ -257134,7 +257188,7 @@ ] }, { - "str": "%", + "str": "en", "token_id": 29833, "o_rev_id": 1202071552, "in": [], @@ -257143,7 +257197,7 @@ ] }, { - "str": "record", + "str": "october", "token_id": 29834, "o_rev_id": 1202071552, "in": [], @@ -257152,7 +257206,7 @@ ] }, { - "str": "'", + "str": "13", "token_id": 29835, "o_rev_id": 1202071552, "in": [], @@ -257161,7 +257215,7 @@ ] }, { - "str": "'", + "str": ",", "token_id": 29836, "o_rev_id": 1202071552, "in": [], @@ -257170,7 +257224,7 @@ ] }, { - "str": "launch", + "str": "as", "token_id": 29837, "o_rev_id": 1202071552, "in": [], @@ -257179,7 +257233,7 @@ ] }, { - "str": "september", + "str": "october", "token_id": 29838, "o_rev_id": 1202071552, "in": [], @@ -257197,7 +257251,7 @@ ] }, { - "str": "september", + "str": "2022", "token_id": 29840, "o_rev_id": 1202071552, "in": [], @@ -257215,7 +257269,7 @@ ] }, { - "str": "september", + "str": "'", "token_id": 29842, "o_rev_id": 1202071552, "in": [], @@ -257224,7 +257278,7 @@ ] }, { - "str": ",", + "str": "'", "token_id": 29843, "o_rev_id": 1202071552, "in": [], @@ -257233,7 +257287,7 @@ ] }, { - "str": "september", + "str": "splatoon", "token_id": 29844, "o_rev_id": 1202071552, "in": [], @@ -257242,7 +257296,7 @@ ] }, { - "str": "15", + "str": "3", "token_id": 29845, "o_rev_id": 1202071552, "in": [], @@ -257251,7 +257305,7 @@ ] }, { - "str": ",", + "str": "'", "token_id": 29846, "o_rev_id": 1202071552, "in": [], @@ -257260,7 +257314,7 @@ ] }, { - "str": "september", + "str": "'", "token_id": 29847, "o_rev_id": 1202071552, "in": [], @@ -257269,7 +257323,7 @@ ] }, { - "str": "15", + "str": "game", "token_id": 29848, "o_rev_id": 1202071552, "in": [], @@ -257278,7 +257332,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29849, "o_rev_id": 1202071552, "in": [], @@ -257287,7 +257341,7 @@ ] }, { - "str": "september", + "str": ",", "token_id": 29850, "o_rev_id": 1202071552, "in": [], @@ -257296,7 +257350,7 @@ ] }, { - "str": "12", + "str": "after", "token_id": 29851, "o_rev_id": 1202071552, "in": [], @@ -257305,7 +257359,7 @@ ] }, { - "str": ",", + "str": ".", "token_id": 29852, "o_rev_id": 1202071552, "in": [], @@ -257314,7 +257368,7 @@ ] }, { - "str": ",", + "str": "<", "token_id": 29853, "o_rev_id": 1202071552, "in": [], @@ -257323,7 +257377,7 @@ ] }, { - "str": ",", + "str": "ref", "token_id": 29854, "o_rev_id": 1202071552, "in": [], @@ -257332,7 +257386,7 @@ ] }, { - "str": "|", + "str": ">", "token_id": 29855, "o_rev_id": 1202071552, "in": [], @@ -257341,7 +257395,7 @@ ] }, { - "str": "=", + "str": "{{", "token_id": 29856, "o_rev_id": 1202071552, "in": [], @@ -257350,7 +257404,7 @@ ] }, { - "str": "<", + "str": "cite", "token_id": 29857, "o_rev_id": 1202071552, "in": [], @@ -257359,7 +257413,7 @@ ] }, { - "str": ">", + "str": "web", "token_id": 29858, "o_rev_id": 1202071552, "in": [], @@ -257368,7 +257422,7 @@ ] }, { - "str": "|", + "str": "first", "token_id": 29859, "o_rev_id": 1202071552, "in": [], @@ -257377,7 +257431,7 @@ ] }, { - "str": "=", + "str": "october", "token_id": 29860, "o_rev_id": 1202071552, "in": [], @@ -257386,7 +257440,7 @@ ] }, { - "str": "september", + "str": ",", "token_id": 29861, "o_rev_id": 1202071552, "in": [], @@ -257395,7 +257449,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29862, "o_rev_id": 1202071552, "in": [], @@ -257413,7 +257467,7 @@ ] }, { - "str": "=", + "str": "title", "token_id": 29864, "o_rev_id": 1202071552, "in": [], @@ -257422,7 +257476,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29865, "o_rev_id": 1202071552, "in": [], @@ -257431,7 +257485,7 @@ ] }, { - "str": "-", + "str": "splatoon", "token_id": 29866, "o_rev_id": 1202071552, "in": [], @@ -257440,7 +257494,7 @@ ] }, { - "str": ",", + "str": "3", "token_id": 29867, "o_rev_id": 1202071552, "in": [], @@ -257449,7 +257503,7 @@ ] }, { - "str": "{{", + "str": "is", "token_id": 29868, "o_rev_id": 1202071552, "in": [], @@ -257458,7 +257512,7 @@ ] }, { - "str": "cite", + "str": "game", "token_id": 29869, "o_rev_id": 1202071552, "in": [], @@ -257467,7 +257521,7 @@ ] }, { - "str": "web", + "str": "of", "token_id": 29870, "o_rev_id": 1202071552, "in": [], @@ -257476,7 +257530,7 @@ ] }, { - "str": "|", + "str": "2022", "token_id": 29871, "o_rev_id": 1202071552, "in": [], @@ -257485,7 +257539,7 @@ ] }, { - "str": "=", + "str": "in", "token_id": 29872, "o_rev_id": 1202071552, "in": [], @@ -257494,7 +257548,7 @@ ] }, { - "str": "|", + "str": "japan", "token_id": 29873, "o_rev_id": 1202071552, "in": [], @@ -257503,7 +257557,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29874, "o_rev_id": 1202071552, "in": [], @@ -257512,7 +257566,7 @@ ] }, { - "str": "|", + "str": "url", "token_id": 29875, "o_rev_id": 1202071552, "in": [], @@ -257530,7 +257584,7 @@ ] }, { - "str": "september", + "str": "october", "token_id": 29877, "o_rev_id": 1202071552, "in": [], @@ -257548,7 +257602,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29879, "o_rev_id": 1202071552, "in": [], @@ -257557,7 +257611,7 @@ ] }, { - "str": "2022", + "str": "|", "token_id": 29880, "o_rev_id": 1202071552, "in": [], @@ -257566,7 +257620,7 @@ ] }, { - "str": "nintendo", + "str": "website", "token_id": 29881, "o_rev_id": 1202071552, "in": [], @@ -257575,7 +257629,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 29882, "o_rev_id": 1202071552, "in": [], @@ -257584,7 +257638,7 @@ ] }, { - "str": ",", + "str": "nintendo", "token_id": 29883, "o_rev_id": 1202071552, "in": [], @@ -257593,7 +257647,7 @@ ] }, { - "str": "|", + "str": "life", "token_id": 29884, "o_rev_id": 1202071552, "in": [], @@ -257602,7 +257656,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29885, "o_rev_id": 1202071552, "in": [], @@ -257611,7 +257665,7 @@ ] }, { - "str": "<", + "str": "language", "token_id": 29886, "o_rev_id": 1202071552, "in": [], @@ -257620,7 +257674,7 @@ ] }, { - "str": "ref", + "str": "=", "token_id": 29887, "o_rev_id": 1202071552, "in": [], @@ -257629,7 +257683,7 @@ ] }, { - "str": ">", + "str": "en", "token_id": 29888, "o_rev_id": 1202071552, "in": [], @@ -257638,7 +257692,7 @@ ] }, { - "str": "{{", + "str": "-", "token_id": 29889, "o_rev_id": 1202071552, "in": [], @@ -257647,7 +257701,7 @@ ] }, { - "str": "cite", + "str": "october", "token_id": 29890, "o_rev_id": 1202071552, "in": [], @@ -257656,7 +257710,7 @@ ] }, { - "str": "web", + "str": ",", "token_id": 29891, "o_rev_id": 1202071552, "in": [], @@ -257665,7 +257719,7 @@ ] }, { - "str": "|", + "str": "2022", "token_id": 29892, "o_rev_id": 1202071552, "in": [], @@ -257674,7 +257728,7 @@ ] }, { - "str": "=", + "str": "-", "token_id": 29893, "o_rev_id": 1202071552, "in": [], @@ -257683,7 +257737,7 @@ ] }, { - "str": "|", + "str": "url", "token_id": 29894, "o_rev_id": 1202071552, "in": [], @@ -257692,7 +257746,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29895, "o_rev_id": 1202071552, "in": [], @@ -257701,7 +257755,7 @@ ] }, { - "str": "|", + "str": "2022", "token_id": 29896, "o_rev_id": 1202071552, "in": [], @@ -257710,7 +257764,7 @@ ] }, { - "str": "=", + "str": "-", "token_id": 29897, "o_rev_id": 1202071552, "in": [], @@ -257728,7 +257782,7 @@ ] }, { - "str": ":", + "str": "|", "token_id": 29899, "o_rev_id": 1202071552, "in": [], @@ -257737,7 +257791,7 @@ ] }, { - "str": "-", + "str": "website", "token_id": 29900, "o_rev_id": 1202071552, "in": [], @@ -257746,7 +257800,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29901, "o_rev_id": 1202071552, "in": [], @@ -257764,7 +257818,7 @@ ] }, { - "str": "website", + "str": "last", "token_id": 29903, "o_rev_id": 1202071552, "in": [], @@ -257782,7 +257836,7 @@ ] }, { - "str": "nintendo", + "str": "|", "token_id": 29905, "o_rev_id": 1202071552, "in": [], @@ -257791,7 +257845,7 @@ ] }, { - "str": "|", + "str": "first", "token_id": 29906, "o_rev_id": 1202071552, "in": [], @@ -257800,7 +257854,7 @@ ] }, { - "str": "language", + "str": "=", "token_id": 29907, "o_rev_id": 1202071552, "in": [], @@ -257809,7 +257863,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29908, "o_rev_id": 1202071552, "in": [], @@ -257818,7 +257872,7 @@ ] }, { - "str": "en", + "str": "archive", "token_id": 29909, "o_rev_id": 1202071552, "in": [], @@ -257827,7 +257881,7 @@ ] }, { - "str": "october", + "str": "-", "token_id": 29910, "o_rev_id": 1202071552, "in": [], @@ -257836,7 +257890,7 @@ ] }, { - "str": "13", + "str": "url", "token_id": 29911, "o_rev_id": 1202071552, "in": [], @@ -257845,7 +257899,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29912, "o_rev_id": 1202071552, "in": [], @@ -257854,7 +257908,7 @@ ] }, { - "str": "as", + "str": "|", "token_id": 29913, "o_rev_id": 1202071552, "in": [], @@ -257863,7 +257917,7 @@ ] }, { - "str": "october", + "str": "archive", "token_id": 29914, "o_rev_id": 1202071552, "in": [], @@ -257872,7 +257926,7 @@ ] }, { - "str": ",", + "str": "-", "token_id": 29915, "o_rev_id": 1202071552, "in": [], @@ -257881,7 +257935,7 @@ ] }, { - "str": "2022", + "str": "date", "token_id": 29916, "o_rev_id": 1202071552, "in": [], @@ -257890,7 +257944,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29917, "o_rev_id": 1202071552, "in": [], @@ -257899,7 +257953,7 @@ ] }, { - "str": "'", + "str": ",", "token_id": 29918, "o_rev_id": 1202071552, "in": [], @@ -257908,7 +257962,7 @@ ] }, { - "str": "'", + "str": "url", "token_id": 29919, "o_rev_id": 1202071552, "in": [], @@ -257917,7 +257971,7 @@ ] }, { - "str": "splatoon", + "str": "-", "token_id": 29920, "o_rev_id": 1202071552, "in": [], @@ -257926,7 +257980,7 @@ ] }, { - "str": "3", + "str": "<", "token_id": 29921, "o_rev_id": 1202071552, "in": [], @@ -257935,7 +257989,7 @@ ] }, { - "str": "'", + "str": "ref", "token_id": 29922, "o_rev_id": 1202071552, "in": [], @@ -257944,7 +257998,7 @@ ] }, { - "str": "'", + "str": ">", "token_id": 29923, "o_rev_id": 1202071552, "in": [], @@ -257953,7 +258007,7 @@ ] }, { - "str": "game", + "str": "|", "token_id": 29924, "o_rev_id": 1202071552, "in": [], @@ -257962,7 +258016,7 @@ ] }, { - "str": "2022", + "str": "last", "token_id": 29925, "o_rev_id": 1202071552, "in": [], @@ -257971,7 +258025,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29926, "o_rev_id": 1202071552, "in": [], @@ -257980,7 +258034,7 @@ ] }, { - "str": "after", + "str": "|", "token_id": 29927, "o_rev_id": 1202071552, "in": [], @@ -257989,7 +258043,7 @@ ] }, { - "str": ".", + "str": "first", "token_id": 29928, "o_rev_id": 1202071552, "in": [], @@ -257998,7 +258052,7 @@ ] }, { - "str": "<", + "str": "=", "token_id": 29929, "o_rev_id": 1202071552, "in": [], @@ -258007,7 +258061,7 @@ ] }, { - "str": "ref", + "str": "|", "token_id": 29930, "o_rev_id": 1202071552, "in": [], @@ -258016,7 +258070,7 @@ ] }, { - "str": ">", + "str": "work", "token_id": 29931, "o_rev_id": 1202071552, "in": [], @@ -258025,7 +258079,7 @@ ] }, { - "str": "{{", + "str": "=", "token_id": 29932, "o_rev_id": 1202071552, "in": [], @@ -258034,7 +258088,7 @@ ] }, { - "str": "cite", + "str": "[[", "token_id": 29933, "o_rev_id": 1202071552, "in": [], @@ -258043,7 +258097,7 @@ ] }, { - "str": "web", + "str": "ign", "token_id": 29934, "o_rev_id": 1202071552, "in": [], @@ -258052,7 +258106,7 @@ ] }, { - "str": "first", + "str": "]]", "token_id": 29935, "o_rev_id": 1202071552, "in": [], @@ -258061,7 +258115,7 @@ ] }, { - "str": "october", + "str": "|", "token_id": 29936, "o_rev_id": 1202071552, "in": [], @@ -258070,7 +258124,7 @@ ] }, { - "str": ",", + "str": "date", "token_id": 29937, "o_rev_id": 1202071552, "in": [], @@ -258079,7 +258133,7 @@ ] }, { - "str": "2022", + "str": "=", "token_id": 29938, "o_rev_id": 1202071552, "in": [], @@ -258088,7 +258142,7 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29939, "o_rev_id": 1202071552, "in": [], @@ -258097,7 +258151,7 @@ ] }, { - "str": "title", + "str": "2022", "token_id": 29940, "o_rev_id": 1202071552, "in": [], @@ -258106,7 +258160,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29941, "o_rev_id": 1202071552, "in": [], @@ -258115,7 +258169,7 @@ ] }, { - "str": "splatoon", + "str": "access", "token_id": 29942, "o_rev_id": 1202071552, "in": [], @@ -258124,7 +258178,7 @@ ] }, { - "str": "3", + "str": "-", "token_id": 29943, "o_rev_id": 1202071552, "in": [], @@ -258133,7 +258187,7 @@ ] }, { - "str": "is", + "str": "date", "token_id": 29944, "o_rev_id": 1202071552, "in": [], @@ -258142,7 +258196,7 @@ ] }, { - "str": "game", + "str": "=", "token_id": 29945, "o_rev_id": 1202071552, "in": [], @@ -258151,7 +258205,7 @@ ] }, { - "str": "of", + "str": ",", "token_id": 29946, "o_rev_id": 1202071552, "in": [], @@ -258169,7 +258223,7 @@ ] }, { - "str": "in", + "str": "|", "token_id": 29948, "o_rev_id": 1202071552, "in": [], @@ -258178,7 +258232,7 @@ ] }, { - "str": "japan", + "str": "archive", "token_id": 29949, "o_rev_id": 1202071552, "in": [], @@ -258187,7 +258241,7 @@ ] }, { - "str": "|", + "str": "-", "token_id": 29950, "o_rev_id": 1202071552, "in": [], @@ -258196,7 +258250,7 @@ ] }, { - "str": "url", + "str": "date", "token_id": 29951, "o_rev_id": 1202071552, "in": [], @@ -258214,7 +258268,7 @@ ] }, { - "str": "october", + "str": ",", "token_id": 29953, "o_rev_id": 1202071552, "in": [], @@ -258223,7 +258277,7 @@ ] }, { - "str": ",", + "str": "2022", "token_id": 29954, "o_rev_id": 1202071552, "in": [], @@ -258232,7 +258286,7 @@ ] }, { - "str": "2022", + "str": "|", "token_id": 29955, "o_rev_id": 1202071552, "in": [], @@ -258241,7 +258295,7 @@ ] }, { - "str": "|", + "str": "archive", "token_id": 29956, "o_rev_id": 1202071552, "in": [], @@ -258250,7 +258304,7 @@ ] }, { - "str": "website", + "str": "-", "token_id": 29957, "o_rev_id": 1202071552, "in": [], @@ -258259,7 +258313,7 @@ ] }, { - "str": "=", + "str": "url", "token_id": 29958, "o_rev_id": 1202071552, "in": [], @@ -258268,7 +258322,7 @@ ] }, { - "str": "nintendo", + "str": "=", "token_id": 29959, "o_rev_id": 1202071552, "in": [], @@ -258277,7 +258331,7 @@ ] }, { - "str": "life", + "str": ",", "token_id": 29960, "o_rev_id": 1202071552, "in": [], @@ -258295,7 +258349,7 @@ ] }, { - "str": "language", + "str": "access", "token_id": 29962, "o_rev_id": 1202071552, "in": [], @@ -258304,7 +258358,7 @@ ] }, { - "str": "=", + "str": "-", "token_id": 29963, "o_rev_id": 1202071552, "in": [], @@ -258313,7 +258367,7 @@ ] }, { - "str": "en", + "str": "date", "token_id": 29964, "o_rev_id": 1202071552, "in": [], @@ -258322,7 +258376,7 @@ ] }, { - "str": "-", + "str": "=", "token_id": 29965, "o_rev_id": 1202071552, "in": [], @@ -258331,7 +258385,7 @@ ] }, { - "str": "october", + "str": ",", "token_id": 29966, "o_rev_id": 1202071552, "in": [], @@ -258340,7 +258394,7 @@ ] }, { - "str": ",", + "str": "|", "token_id": 29967, "o_rev_id": 1202071552, "in": [], @@ -258349,7 +258403,7 @@ ] }, { - "str": "2022", + "str": "archive", "token_id": 29968, "o_rev_id": 1202071552, "in": [], @@ -258358,7 +258412,7 @@ ] }, { - "str": "url", + "str": "-", "token_id": 29969, "o_rev_id": 1202071552, "in": [], @@ -258367,7 +258421,7 @@ ] }, { - "str": "title", + "str": "date", "token_id": 29970, "o_rev_id": 1202071552, "in": [], @@ -258376,7 +258430,7 @@ ] }, { - "str": ",", + "str": "=", "token_id": 29971, "o_rev_id": 1202071552, "in": [], @@ -258385,7 +258439,7 @@ ] }, { - "str": "2022", + "str": ",", "token_id": 29972, "o_rev_id": 1202071552, "in": [], @@ -258394,7 +258448,7 @@ ] }, { - "str": "-", + "str": "|", "token_id": 29973, "o_rev_id": 1202071552, "in": [], @@ -258403,7 +258457,7 @@ ] }, { - "str": ",", + "str": "archive", "token_id": 29974, "o_rev_id": 1202071552, "in": [], @@ -258412,7 +258466,7 @@ ] }, { - "str": "|", + "str": "-", "token_id": 29975, "o_rev_id": 1202071552, "in": [], @@ -258421,7 +258475,7 @@ ] }, { - "str": "website", + "str": "url", "token_id": 29976, "o_rev_id": 1202071552, "in": [], @@ -258439,7 +258493,7 @@ ] }, { - "str": "|", + "str": "the", "token_id": 29978, "o_rev_id": 1202071552, "in": [], @@ -258448,7 +258502,7 @@ ] }, { - "str": "last", + "str": "|", "token_id": 29979, "o_rev_id": 1202071552, "in": [], @@ -258457,7 +258511,7 @@ ] }, { - "str": "=", + "str": "date", "token_id": 29980, "o_rev_id": 1202071552, "in": [], @@ -258466,7 +258520,7 @@ ] }, { - "str": "|", + "str": "=", "token_id": 29981, "o_rev_id": 1202071552, "in": [], @@ -258475,7 +258529,7 @@ ] }, { - "str": "first", + "str": ",", "token_id": 29982, "o_rev_id": 1202071552, "in": [], @@ -258484,7 +258538,7 @@ ] }, { - "str": "=", + "str": "|", "token_id": 29983, "o_rev_id": 1202071552, "in": [], @@ -258493,7 +258547,7 @@ ] }, { - "str": "|", + "str": "access", "token_id": 29984, "o_rev_id": 1202071552, "in": [], @@ -258502,7 +258556,7 @@ ] }, { - "str": "archive", + "str": "-", "token_id": 29985, "o_rev_id": 1202071552, "in": [], @@ -258511,7 +258565,7 @@ ] }, { - "str": "-", + "str": "date", "token_id": 29986, "o_rev_id": 1202071552, "in": [], @@ -258520,7 +258574,7 @@ ] }, { - "str": "url", + "str": "=", "token_id": 29987, "o_rev_id": 1202071552, "in": [], @@ -258529,7 +258583,7 @@ ] }, { - "str": "=", + "str": ",", "token_id": 29988, "o_rev_id": 1202071552, "in": [], @@ -258538,1233 +258592,675 @@ ] }, { - "str": "|", + "str": ",", "token_id": 29989, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": "archive", + "str": "also", "token_id": 29990, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": "-", + "str": "referred", "token_id": 29991, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": "date", + "str": "to", "token_id": 29992, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": "=", + "str": "the", "token_id": 29993, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": ",", + "str": "player", "token_id": 29994, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": "url", + "str": "character", "token_id": 29995, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": "ref", + "str": "'", "token_id": 29996, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": "last", + "str": "s", "token_id": 29997, - "o_rev_id": 1202071552, + "o_rev_id": 1202072482, "in": [], "out": [ 1202097960 ] }, { - "str": "first", + "str": "smallfry", "token_id": 29998, - "o_rev_id": 1202071552, - "in": [], + "o_rev_id": 1202072482, + "in": [ + 1203947758 + ], "out": [ 1202097960 ] }, { - "str": "date", + "str": "smallfry", "token_id": 29999, - "o_rev_id": 1202071552, - "in": [], + "o_rev_id": 1202072482, + "in": [ + 1203947758 + ], "out": [ 1202097960 ] }, { - "str": ",", + "str": "february", "token_id": 30000, - "o_rev_id": 1202071552, + "o_rev_id": 1202120168, "in": [], "out": [ - 1202097960 + 1294910906 ] }, { - "str": "2022", + "str": "2024", "token_id": 30001, - "o_rev_id": 1202071552, + "o_rev_id": 1202120168, "in": [], "out": [ - 1202097960 + 1294910906 ] }, { - "str": "|", + "str": "15", "token_id": 30002, - "o_rev_id": 1202071552, + "o_rev_id": 1202168560, "in": [], "out": [ - 1202097960 + 1334188654 ] }, { - "str": "access", + "str": "september", "token_id": 30003, - "o_rev_id": 1202071552, + "o_rev_id": 1202168560, "in": [], "out": [ - 1202097960 + 1334188654 ] }, { - "str": "-", + "str": "21", "token_id": 30004, - "o_rev_id": 1202071552, + "o_rev_id": 1202168560, "in": [], - "out": [ - 1202097960 - ] + "out": [] }, { - "str": "date", + "str": "september", "token_id": 30005, - "o_rev_id": 1202071552, + "o_rev_id": 1202168560, "in": [], - "out": [ - 1202097960 - ] + "out": [] }, { - "str": "=", + "str": "23", "token_id": 30006, - "o_rev_id": 1202071552, + "o_rev_id": 1202168560, "in": [], - "out": [ - 1202097960 - ] + "out": [] }, { - "str": ",", + "str": "september", "token_id": 30007, - "o_rev_id": 1202071552, + "o_rev_id": 1202168560, "in": [], - "out": [ - 1202097960 - ] + "out": [] }, { - "str": "2022", + "str": "21", "token_id": 30008, - "o_rev_id": 1202071552, + "o_rev_id": 1202168560, "in": [], - "out": [ - 1202097960 - ] + "out": [] }, { - "str": "|", + "str": "september", "token_id": 30009, - "o_rev_id": 1202071552, + "o_rev_id": 1202168560, "in": [], - "out": [ - 1202097960 - ] + "out": [] }, { - "str": "archive", + "str": "|", "token_id": 30010, - "o_rev_id": 1202071552, + "o_rev_id": 1202583057, "in": [], "out": [ - 1202097960 + 1334188654 ] }, { - "str": "-", + "str": "last1", "token_id": 30011, - "o_rev_id": 1202071552, + "o_rev_id": 1202583057, "in": [], "out": [ - 1202097960 + 1334188654 ] }, { - "str": "date", + "str": "=", "token_id": 30012, - "o_rev_id": 1202071552, + "o_rev_id": 1202583057, "in": [], "out": [ - 1202097960 + 1334188654 ] }, { - "str": "=", + "str": "|", "token_id": 30013, - "o_rev_id": 1202071552, + "o_rev_id": 1202583057, "in": [], "out": [ - 1202097960 + 1334188654 ] }, { - "str": ",", + "str": "first1", "token_id": 30014, - "o_rev_id": 1202071552, + "o_rev_id": 1202583057, "in": [], "out": [ - 1202097960 + 1334188654 ] }, { - "str": "2022", + "str": "=", "token_id": 30015, - "o_rev_id": 1202071552, + "o_rev_id": 1202583057, "in": [], "out": [ - 1202097960 + 1334188654 ] }, { - "str": "archive", + "str": "'", "token_id": 30016, - "o_rev_id": 1202071552, + "o_rev_id": 1202583057, "in": [], - "out": [ - 1202097960 - ] + "out": [] }, { - "str": "url", + "str": "it", "token_id": 30017, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "last", + "str": "sold", "token_id": 30018, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "first", + "str": "11", "token_id": 30019, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "date", + "str": ".", "token_id": 30020, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": ",", + "str": "71", "token_id": 30021, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "|", + "str": "million", "token_id": 30022, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "access", + "str": "units", "token_id": 30023, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "-", + "str": "as", "token_id": 30024, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "date", + "str": "of", "token_id": 30025, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "=", + "str": "december", "token_id": 30026, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": ",", + "str": "31", "token_id": 30027, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "|", + "str": ",", "token_id": 30028, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "archive", + "str": "2023", "token_id": 30029, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "-", + "str": ".", "token_id": 30030, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "date", + "str": "https", "token_id": 30031, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "=", + "str": ":", "token_id": 30032, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": ",", + "str": "/", "token_id": 30033, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "|", + "str": "/", "token_id": 30034, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "archive", + "str": "www", "token_id": 30035, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "-", + "str": ".", "token_id": 30036, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "url", + "str": "nintendo", "token_id": 30037, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "=", + "str": ".", "token_id": 30038, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "the", + "str": "co", "token_id": 30039, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "|", + "str": ".", "token_id": 30040, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "date", + "str": "jp", "token_id": 30041, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "=", + "str": "/", "token_id": 30042, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": ",", + "str": "ir", "token_id": 30043, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "|", + "str": "/", "token_id": 30044, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "access", + "str": "pdf", "token_id": 30045, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "-", + "str": "/", "token_id": 30046, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "date", + "str": "2024", "token_id": 30047, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "=", + "str": "/", "token_id": 30048, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": ",", + "str": "240206", "token_id": 30049, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "}}", + "str": "_", "token_id": 30050, - "o_rev_id": 1202071552, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": ",", + "str": "3e", "token_id": 30051, - "o_rev_id": 1202072482, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "also", + "str": ".", "token_id": 30052, - "o_rev_id": 1202072482, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "referred", + "str": "pdf", "token_id": 30053, - "o_rev_id": 1202072482, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "to", + "str": "<", "token_id": 30054, - "o_rev_id": 1202072482, + "o_rev_id": 1204442227, "in": [], "out": [ - 1202097960 + 1204811732 ] }, { - "str": "the", + "str": "/", "token_id": 30055, - "o_rev_id": 1202072482, - "in": [], + "o_rev_id": 1204442227, + "in": [ + 1225856118, + 1335508441 + ], "out": [ - 1202097960 + 1204811732, + 1225856520 ] }, { - "str": "player", + "str": "ref", "token_id": 30056, - "o_rev_id": 1202072482, - "in": [], + "o_rev_id": 1204442227, + "in": [ + 1225856118, + 1335508441 + ], "out": [ - 1202097960 + 1204811732, + 1225856520 ] }, { - "str": "character", + "str": ">", "token_id": 30057, - "o_rev_id": 1202072482, - "in": [], + "o_rev_id": 1204442227, + "in": [ + 1225856118, + 1335508441 + ], "out": [ - 1202097960 + 1204811732, + 1225856520 ] }, { - "str": "'", + "str": "december", "token_id": 30058, - "o_rev_id": 1202072482, + "o_rev_id": 1204813986, "in": [], "out": [ - 1202097960 + 1222725383 ] }, { - "str": "s", + "str": "11", "token_id": 30059, - "o_rev_id": 1202072482, + "o_rev_id": 1204813986, "in": [], - "out": [ - 1202097960 - ] + "out": [] }, { - "str": "smallfry", + "str": "71", "token_id": 30060, - "o_rev_id": 1202072482, + "o_rev_id": 1204813986, "in": [ - 1203947758 + 1222174041 ], "out": [ - 1202097960 + 1215268981, + 1222725383 ] }, { - "str": "smallfry", + "str": "december", "token_id": 30061, - "o_rev_id": 1202072482, - "in": [ - 1203947758 - ], + "o_rev_id": 1204813986, + "in": [], "out": [ - 1202097960 + 1222725383 ] }, { - "str": "february", + "str": "2024", "token_id": 30062, - "o_rev_id": 1202120168, + "o_rev_id": 1204813986, "in": [], - "out": [ - 1294910906 - ] + "out": [] }, { - "str": "2024", + "str": "240206", "token_id": 30063, - "o_rev_id": 1202120168, - "in": [], - "out": [ - 1294910906 - ] - }, - { - "str": "15", - "token_id": 30064, - "o_rev_id": 1202168560, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "september", - "token_id": 30065, - "o_rev_id": 1202168560, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "21", - "token_id": 30066, - "o_rev_id": 1202168560, - "in": [], - "out": [] - }, - { - "str": "september", - "token_id": 30067, - "o_rev_id": 1202168560, - "in": [], - "out": [] - }, - { - "str": "23", - "token_id": 30068, - "o_rev_id": 1202168560, - "in": [], - "out": [] - }, - { - "str": "september", - "token_id": 30069, - "o_rev_id": 1202168560, - "in": [], - "out": [] - }, - { - "str": "21", - "token_id": 30070, - "o_rev_id": 1202168560, - "in": [], - "out": [] - }, - { - "str": "september", - "token_id": 30071, - "o_rev_id": 1202168560, - "in": [], - "out": [] - }, - { - "str": "|", - "token_id": 30072, - "o_rev_id": 1202583057, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "last1", - "token_id": 30073, - "o_rev_id": 1202583057, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "=", - "token_id": 30074, - "o_rev_id": 1202583057, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "|", - "token_id": 30075, - "o_rev_id": 1202583057, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "first1", - "token_id": 30076, - "o_rev_id": 1202583057, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "=", - "token_id": 30077, - "o_rev_id": 1202583057, - "in": [], - "out": [ - 1334188654 - ] - }, - { - "str": "'", - "token_id": 30078, - "o_rev_id": 1202583057, - "in": [], - "out": [] - }, - { - "str": "it", - "token_id": 30079, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "sold", - "token_id": 30080, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "11", - "token_id": 30081, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": ".", - "token_id": 30082, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "71", - "token_id": 30083, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "million", - "token_id": 30084, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "units", - "token_id": 30085, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "as", - "token_id": 30086, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "of", - "token_id": 30087, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "december", - "token_id": 30088, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "31", - "token_id": 30089, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": ",", - "token_id": 30090, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "2023", - "token_id": 30091, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": ".", - "token_id": 30092, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "https", - "token_id": 30093, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": ":", - "token_id": 30094, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "/", - "token_id": 30095, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "/", - "token_id": 30096, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "www", - "token_id": 30097, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": ".", - "token_id": 30098, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "nintendo", - "token_id": 30099, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": ".", - "token_id": 30100, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "co", - "token_id": 30101, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": ".", - "token_id": 30102, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "jp", - "token_id": 30103, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "/", - "token_id": 30104, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "ir", - "token_id": 30105, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "/", - "token_id": 30106, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "pdf", - "token_id": 30107, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "/", - "token_id": 30108, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "2024", - "token_id": 30109, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "/", - "token_id": 30110, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "240206", - "token_id": 30111, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "_", - "token_id": 30112, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "3e", - "token_id": 30113, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": ".", - "token_id": 30114, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "pdf", - "token_id": 30115, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "<", - "token_id": 30116, - "o_rev_id": 1204442227, - "in": [], - "out": [ - 1204811732 - ] - }, - { - "str": "/", - "token_id": 30117, - "o_rev_id": 1204442227, - "in": [ - 1225856118, - 1335508441 - ], - "out": [ - 1204811732, - 1225856520 - ] - }, - { - "str": "ref", - "token_id": 30118, - "o_rev_id": 1204442227, - "in": [ - 1225856118, - 1335508441 - ], - "out": [ - 1204811732, - 1225856520 - ] - }, - { - "str": ">", - "token_id": 30119, - "o_rev_id": 1204442227, - "in": [ - 1225856118, - 1335508441 - ], - "out": [ - 1204811732, - 1225856520 - ] - }, - { - "str": "december", - "token_id": 30120, - "o_rev_id": 1204813986, - "in": [], - "out": [ - 1222725383 - ] - }, - { - "str": "11", - "token_id": 30121, - "o_rev_id": 1204813986, - "in": [], - "out": [] - }, - { - "str": "71", - "token_id": 30122, - "o_rev_id": 1204813986, - "in": [ - 1222174041 - ], - "out": [ - 1215268981, - 1222725383 - ] - }, - { - "str": "december", - "token_id": 30123, - "o_rev_id": 1204813986, - "in": [], - "out": [ - 1222725383 - ] - }, - { - "str": "2024", - "token_id": 30124, - "o_rev_id": 1204813986, - "in": [], - "out": [] - }, - { - "str": "240206", - "token_id": 30125, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259773,7 +259269,7 @@ }, { "str": "=", - "token_id": 30126, + "token_id": 30064, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259782,7 +259278,7 @@ }, { "str": "17", - "token_id": 30127, + "token_id": 30065, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259791,14 +259287,14 @@ }, { "str": "7", - "token_id": 30128, + "token_id": 30066, "o_rev_id": 1204813986, "in": [], "out": [] }, { "str": "february", - "token_id": 30129, + "token_id": 30067, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259807,14 +259303,14 @@ }, { "str": "7", - "token_id": 30130, + "token_id": 30068, "o_rev_id": 1204813986, "in": [], "out": [] }, { "str": "february", - "token_id": 30131, + "token_id": 30069, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259823,14 +259319,14 @@ }, { "str": "2024", - "token_id": 30132, + "token_id": 30070, "o_rev_id": 1204813986, "in": [], "out": [] }, { "str": "20240207022002", - "token_id": 30133, + "token_id": 30071, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259839,14 +259335,14 @@ }, { "str": "2024", - "token_id": 30134, + "token_id": 30072, "o_rev_id": 1204813986, "in": [], "out": [] }, { "str": "240206", - "token_id": 30135, + "token_id": 30073, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259855,7 +259351,7 @@ }, { "str": "=", - "token_id": 30136, + "token_id": 30074, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259864,7 +259360,7 @@ }, { "str": "17", - "token_id": 30137, + "token_id": 30075, "o_rev_id": 1204813986, "in": [], "out": [ @@ -259873,7 +259369,7 @@ }, { "str": "=", - "token_id": 30138, + "token_id": 30076, "o_rev_id": 1209478258, "in": [ 1209791143 @@ -259885,7 +259381,7 @@ }, { "str": "=", - "token_id": 30139, + "token_id": 30077, "o_rev_id": 1209478258, "in": [ 1209791143 @@ -259897,7 +259393,7 @@ }, { "str": "=", - "token_id": 30140, + "token_id": 30078, "o_rev_id": 1209478258, "in": [ 1209791143 @@ -259909,7 +259405,7 @@ }, { "str": "side", - "token_id": 30141, + "token_id": 30079, "o_rev_id": 1209478258, "in": [ 1209791143 @@ -259921,7 +259417,7 @@ }, { "str": "order", - "token_id": 30142, + "token_id": 30080, "o_rev_id": 1209478258, "in": [ 1209791143 @@ -259933,7 +259429,7 @@ }, { "str": "=", - "token_id": 30143, + "token_id": 30081, "o_rev_id": 1209478258, "in": [ 1209791143 @@ -259945,7 +259441,7 @@ }, { "str": "=", - "token_id": 30144, + "token_id": 30082, "o_rev_id": 1209478258, "in": [ 1209791143 @@ -259957,7 +259453,7 @@ }, { "str": "=", - "token_id": 30145, + "token_id": 30083, "o_rev_id": 1209478258, "in": [ 1209791143 @@ -259969,7 +259465,7 @@ }, { "str": "{{", - "token_id": 30146, + "token_id": 30084, "o_rev_id": 1209478258, "in": [], "out": [ @@ -259978,7 +259474,7 @@ }, { "str": "under", - "token_id": 30147, + "token_id": 30085, "o_rev_id": 1209478258, "in": [], "out": [ @@ -259987,7 +259483,7 @@ }, { "str": "construction", - "token_id": 30148, + "token_id": 30086, "o_rev_id": 1209478258, "in": [], "out": [ @@ -259996,7 +259492,7 @@ }, { "str": "}}", - "token_id": 30149, + "token_id": 30087, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260005,7 +259501,7 @@ }, { "str": "in", - "token_id": 30150, + "token_id": 30088, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260014,7 +259510,7 @@ }, { "str": "22", - "token_id": 30151, + "token_id": 30089, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260023,7 +259519,7 @@ }, { "str": "february", - "token_id": 30152, + "token_id": 30090, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260032,7 +259528,7 @@ }, { "str": "2024", - "token_id": 30153, + "token_id": 30091, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260041,7 +259537,7 @@ }, { "str": ",", - "token_id": 30154, + "token_id": 30092, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260050,7 +259546,7 @@ }, { "str": "a", - "token_id": 30155, + "token_id": 30093, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260059,7 +259555,7 @@ }, { "str": "new", - "token_id": 30156, + "token_id": 30094, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260068,7 +259564,7 @@ }, { "str": "single", - "token_id": 30157, + "token_id": 30095, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260077,7 +259573,7 @@ }, { "str": "-", - "token_id": 30158, + "token_id": 30096, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260086,7 +259582,7 @@ }, { "str": "player", - "token_id": 30159, + "token_id": 30097, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260095,7 +259591,7 @@ }, { "str": "game", - "token_id": 30160, + "token_id": 30098, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260104,7 +259600,7 @@ }, { "str": "mode", - "token_id": 30161, + "token_id": 30099, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260113,7 +259609,7 @@ }, { "str": ",", - "token_id": 30162, + "token_id": 30100, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260122,7 +259618,7 @@ }, { "str": "named", - "token_id": 30163, + "token_id": 30101, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260131,7 +259627,7 @@ }, { "str": "\"", - "token_id": 30164, + "token_id": 30102, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260140,7 +259636,7 @@ }, { "str": "side", - "token_id": 30165, + "token_id": 30103, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260149,7 +259645,7 @@ }, { "str": "order", - "token_id": 30166, + "token_id": 30104, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260158,7 +259654,7 @@ }, { "str": "\"", - "token_id": 30167, + "token_id": 30105, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260167,7 +259663,7 @@ }, { "str": "(", - "token_id": 30168, + "token_id": 30106, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260176,7 +259672,7 @@ }, { "str": "サ", - "token_id": 30169, + "token_id": 30107, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260185,7 +259681,7 @@ }, { "str": "イ", - "token_id": 30170, + "token_id": 30108, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260194,7 +259690,7 @@ }, { "str": "ド", - "token_id": 30171, + "token_id": 30109, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260203,7 +259699,7 @@ }, { "str": "オ", - "token_id": 30172, + "token_id": 30110, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260212,7 +259708,7 @@ }, { "str": "ー", - "token_id": 30173, + "token_id": 30111, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260221,7 +259717,7 @@ }, { "str": "ダ", - "token_id": 30174, + "token_id": 30112, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260230,7 +259726,7 @@ }, { "str": "ー", - "token_id": 30175, + "token_id": 30113, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260239,7 +259735,7 @@ }, { "str": ")", - "token_id": 30176, + "token_id": 30114, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260248,7 +259744,7 @@ }, { "str": ",", - "token_id": 30177, + "token_id": 30115, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260257,7 +259753,7 @@ }, { "str": "unlocked", - "token_id": 30178, + "token_id": 30116, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260266,7 +259762,7 @@ }, { "str": "by", - "token_id": 30179, + "token_id": 30117, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260275,7 +259771,7 @@ }, { "str": "buying", - "token_id": 30180, + "token_id": 30118, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260284,7 +259780,7 @@ }, { "str": "an", - "token_id": 30181, + "token_id": 30119, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260293,7 +259789,7 @@ }, { "str": "expansion", - "token_id": 30182, + "token_id": 30120, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260302,7 +259798,7 @@ }, { "str": "pass", - "token_id": 30183, + "token_id": 30121, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260311,7 +259807,7 @@ }, { "str": "was", - "token_id": 30184, + "token_id": 30122, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260320,7 +259816,7 @@ }, { "str": "released", - "token_id": 30185, + "token_id": 30123, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260329,7 +259825,7 @@ }, { "str": ".", - "token_id": 30186, + "token_id": 30124, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260338,7 +259834,7 @@ }, { "str": "<", - "token_id": 30187, + "token_id": 30125, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260347,7 +259843,7 @@ }, { "str": "ref", - "token_id": 30188, + "token_id": 30126, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260356,7 +259852,7 @@ }, { "str": "name", - "token_id": 30189, + "token_id": 30127, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260365,7 +259861,7 @@ }, { "str": "=", - "token_id": 30190, + "token_id": 30128, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260374,7 +259870,7 @@ }, { "str": "\"", - "token_id": 30191, + "token_id": 30129, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260383,7 +259879,7 @@ }, { "str": ":", - "token_id": 30192, + "token_id": 30130, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260392,7 +259888,7 @@ }, { "str": "0", - "token_id": 30193, + "token_id": 30131, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260401,7 +259897,7 @@ }, { "str": "\"", - "token_id": 30194, + "token_id": 30132, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260410,7 +259906,7 @@ }, { "str": ">", - "token_id": 30195, + "token_id": 30133, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260419,7 +259915,7 @@ }, { "str": "{{", - "token_id": 30196, + "token_id": 30134, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260428,7 +259924,7 @@ }, { "str": "cite", - "token_id": 30197, + "token_id": 30135, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260437,7 +259933,7 @@ }, { "str": "web", - "token_id": 30198, + "token_id": 30136, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260446,7 +259942,7 @@ }, { "str": "|", - "token_id": 30199, + "token_id": 30137, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260455,7 +259951,7 @@ }, { "str": "date", - "token_id": 30200, + "token_id": 30138, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260464,7 +259960,7 @@ }, { "str": "=", - "token_id": 30201, + "token_id": 30139, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260473,7 +259969,7 @@ }, { "str": "2024", - "token_id": 30202, + "token_id": 30140, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260482,7 +259978,7 @@ }, { "str": "-", - "token_id": 30203, + "token_id": 30141, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260491,7 +259987,7 @@ }, { "str": "02", - "token_id": 30204, + "token_id": 30142, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260500,7 +259996,7 @@ }, { "str": "-", - "token_id": 30205, + "token_id": 30143, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260509,7 +260005,7 @@ }, { "str": "22", - "token_id": 30206, + "token_id": 30144, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260518,7 +260014,7 @@ }, { "str": "|", - "token_id": 30207, + "token_id": 30145, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260527,7 +260023,7 @@ }, { "str": "title", - "token_id": 30208, + "token_id": 30146, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260536,7 +260032,7 @@ }, { "str": "=", - "token_id": 30209, + "token_id": 30147, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260545,7 +260041,7 @@ }, { "str": "side", - "token_id": 30210, + "token_id": 30148, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260554,7 +260050,7 @@ }, { "str": "order", - "token_id": 30211, + "token_id": 30149, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260563,7 +260059,7 @@ }, { "str": "|", - "token_id": 30212, + "token_id": 30150, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260572,7 +260068,7 @@ }, { "str": "url", - "token_id": 30213, + "token_id": 30151, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260581,7 +260077,7 @@ }, { "str": "=", - "token_id": 30214, + "token_id": 30152, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260590,7 +260086,7 @@ }, { "str": "http", - "token_id": 30215, + "token_id": 30153, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260599,7 +260095,7 @@ }, { "str": ":", - "token_id": 30216, + "token_id": 30154, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260608,7 +260104,7 @@ }, { "str": "/", - "token_id": 30217, + "token_id": 30155, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260617,7 +260113,7 @@ }, { "str": "/", - "token_id": 30218, + "token_id": 30156, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260626,7 +260122,7 @@ }, { "str": "splatoonwiki", - "token_id": 30219, + "token_id": 30157, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260635,7 +260131,7 @@ }, { "str": ".", - "token_id": 30220, + "token_id": 30158, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260644,7 +260140,7 @@ }, { "str": "org", - "token_id": 30221, + "token_id": 30159, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260653,7 +260149,7 @@ }, { "str": "/", - "token_id": 30222, + "token_id": 30160, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260662,7 +260158,7 @@ }, { "str": "wiki", - "token_id": 30223, + "token_id": 30161, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260671,7 +260167,7 @@ }, { "str": "/", - "token_id": 30224, + "token_id": 30162, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260680,7 +260176,7 @@ }, { "str": "side", - "token_id": 30225, + "token_id": 30163, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260689,7 +260185,7 @@ }, { "str": "_", - "token_id": 30226, + "token_id": 30164, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260698,7 +260194,7 @@ }, { "str": "order", - "token_id": 30227, + "token_id": 30165, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260707,7 +260203,7 @@ }, { "str": "|", - "token_id": 30228, + "token_id": 30166, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260716,7 +260212,7 @@ }, { "str": "access", - "token_id": 30229, + "token_id": 30167, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260725,7 +260221,7 @@ }, { "str": "-", - "token_id": 30230, + "token_id": 30168, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260734,7 +260230,7 @@ }, { "str": "date", - "token_id": 30231, + "token_id": 30169, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260743,7 +260239,7 @@ }, { "str": "=", - "token_id": 30232, + "token_id": 30170, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260752,7 +260248,7 @@ }, { "str": "2024", - "token_id": 30233, + "token_id": 30171, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260761,7 +260257,7 @@ }, { "str": "-", - "token_id": 30234, + "token_id": 30172, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260770,7 +260266,7 @@ }, { "str": "02", - "token_id": 30235, + "token_id": 30173, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260779,7 +260275,7 @@ }, { "str": "-", - "token_id": 30236, + "token_id": 30174, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260788,7 +260284,7 @@ }, { "str": "22", - "token_id": 30237, + "token_id": 30175, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260797,7 +260293,7 @@ }, { "str": "|", - "token_id": 30238, + "token_id": 30176, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260806,7 +260302,7 @@ }, { "str": "website", - "token_id": 30239, + "token_id": 30177, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260815,7 +260311,7 @@ }, { "str": "=", - "token_id": 30240, + "token_id": 30178, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260824,7 +260320,7 @@ }, { "str": "inkipedia", - "token_id": 30241, + "token_id": 30179, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260833,7 +260329,7 @@ }, { "str": "|", - "token_id": 30242, + "token_id": 30180, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260842,7 +260338,7 @@ }, { "str": "language", - "token_id": 30243, + "token_id": 30181, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260851,7 +260347,7 @@ }, { "str": "=", - "token_id": 30244, + "token_id": 30182, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260860,7 +260356,7 @@ }, { "str": "en", - "token_id": 30245, + "token_id": 30183, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260869,7 +260365,7 @@ }, { "str": "}}", - "token_id": 30246, + "token_id": 30184, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260878,7 +260374,7 @@ }, { "str": "<", - "token_id": 30247, + "token_id": 30185, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260887,7 +260383,7 @@ }, { "str": "/", - "token_id": 30248, + "token_id": 30186, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260896,7 +260392,7 @@ }, { "str": "ref", - "token_id": 30249, + "token_id": 30187, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260905,7 +260401,7 @@ }, { "str": ">", - "token_id": 30250, + "token_id": 30188, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260914,7 +260410,7 @@ }, { "str": "it", - "token_id": 30251, + "token_id": 30189, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260923,7 +260419,7 @@ }, { "str": "takes", - "token_id": 30252, + "token_id": 30190, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260932,7 +260428,7 @@ }, { "str": "place", - "token_id": 30253, + "token_id": 30191, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260941,7 +260437,7 @@ }, { "str": "in", - "token_id": 30254, + "token_id": 30192, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260950,7 +260446,7 @@ }, { "str": "a", - "token_id": 30255, + "token_id": 30193, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260959,7 +260455,7 @@ }, { "str": "washed", - "token_id": 30256, + "token_id": 30194, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260968,7 +260464,7 @@ }, { "str": "-", - "token_id": 30257, + "token_id": 30195, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260977,7 +260473,7 @@ }, { "str": "out", - "token_id": 30258, + "token_id": 30196, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260986,7 +260482,7 @@ }, { "str": "version", - "token_id": 30259, + "token_id": 30197, "o_rev_id": 1209478258, "in": [], "out": [ @@ -260995,7 +260491,7 @@ }, { "str": "of", - "token_id": 30260, + "token_id": 30198, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261004,7 +260500,7 @@ }, { "str": "inkopolis", - "token_id": 30261, + "token_id": 30199, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261013,7 +260509,7 @@ }, { "str": "square", - "token_id": 30262, + "token_id": 30200, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261022,7 +260518,7 @@ }, { "str": ",", - "token_id": 30263, + "token_id": 30201, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261031,7 +260527,7 @@ }, { "str": "one", - "token_id": 30264, + "token_id": 30202, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261040,7 +260536,7 @@ }, { "str": "of", - "token_id": 30265, + "token_id": 30203, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261049,7 +260545,7 @@ }, { "str": "the", - "token_id": 30266, + "token_id": 30204, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261058,7 +260554,7 @@ }, { "str": "areas", - "token_id": 30267, + "token_id": 30205, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261067,7 +260563,7 @@ }, { "str": "for", - "token_id": 30268, + "token_id": 30206, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261076,7 +260572,7 @@ }, { "str": "the", - "token_id": 30269, + "token_id": 30207, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261085,7 +260581,7 @@ }, { "str": "prequel", - "token_id": 30270, + "token_id": 30208, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261094,7 +260590,7 @@ }, { "str": "of", - "token_id": 30271, + "token_id": 30209, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261103,7 +260599,7 @@ }, { "str": "the", - "token_id": 30272, + "token_id": 30210, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261112,7 +260608,7 @@ }, { "str": "game", - "token_id": 30273, + "token_id": 30211, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261121,7 +260617,7 @@ }, { "str": ",", - "token_id": 30274, + "token_id": 30212, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261130,7 +260626,7 @@ }, { "str": "splatoon", - "token_id": 30275, + "token_id": 30213, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261139,7 +260635,7 @@ }, { "str": "2", - "token_id": 30276, + "token_id": 30214, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261148,7 +260644,7 @@ }, { "str": ".", - "token_id": 30277, + "token_id": 30215, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261157,7 +260653,7 @@ }, { "str": "the", - "token_id": 30278, + "token_id": 30216, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261166,7 +260662,7 @@ }, { "str": "mode", - "token_id": 30279, + "token_id": 30217, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261175,7 +260671,7 @@ }, { "str": "takes", - "token_id": 30280, + "token_id": 30218, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261184,7 +260680,7 @@ }, { "str": "place", - "token_id": 30281, + "token_id": 30219, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261193,7 +260689,7 @@ }, { "str": "in", - "token_id": 30282, + "token_id": 30220, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261202,7 +260698,7 @@ }, { "str": "a", - "token_id": 30283, + "token_id": 30221, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261211,7 +260707,7 @@ }, { "str": "what", - "token_id": 30284, + "token_id": 30222, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261220,7 +260716,7 @@ }, { "str": "if", - "token_id": 30285, + "token_id": 30223, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261229,7 +260725,7 @@ }, { "str": "timeline", - "token_id": 30286, + "token_id": 30224, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261238,7 +260734,7 @@ }, { "str": "of", - "token_id": 30287, + "token_id": 30225, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261247,7 +260743,7 @@ }, { "str": "team", - "token_id": 30288, + "token_id": 30226, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261256,7 +260752,7 @@ }, { "str": "order", - "token_id": 30289, + "token_id": 30227, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261265,7 +260761,7 @@ }, { "str": "beating", - "token_id": 30290, + "token_id": 30228, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261274,7 +260770,7 @@ }, { "str": "team", - "token_id": 30291, + "token_id": 30229, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261283,7 +260779,7 @@ }, { "str": "chaos", - "token_id": 30292, + "token_id": 30230, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261292,7 +260788,7 @@ }, { "str": "in", - "token_id": 30293, + "token_id": 30231, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261301,7 +260797,7 @@ }, { "str": "the", - "token_id": 30294, + "token_id": 30232, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261310,7 +260806,7 @@ }, { "str": "final", - "token_id": 30295, + "token_id": 30233, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261319,7 +260815,7 @@ }, { "str": "festival", - "token_id": 30296, + "token_id": 30234, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261328,7 +260824,7 @@ }, { "str": "of", - "token_id": 30297, + "token_id": 30235, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261337,7 +260833,7 @@ }, { "str": "splatoon", - "token_id": 30298, + "token_id": 30236, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261346,7 +260842,7 @@ }, { "str": "2", - "token_id": 30299, + "token_id": 30237, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261355,7 +260851,7 @@ }, { "str": ".", - "token_id": 30300, + "token_id": 30238, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261364,7 +260860,7 @@ }, { "str": "<", - "token_id": 30301, + "token_id": 30239, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261373,7 +260869,7 @@ }, { "str": "ref", - "token_id": 30302, + "token_id": 30240, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261382,7 +260878,7 @@ }, { "str": "name", - "token_id": 30303, + "token_id": 30241, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261391,7 +260887,7 @@ }, { "str": "=", - "token_id": 30304, + "token_id": 30242, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261400,7 +260896,7 @@ }, { "str": "\"", - "token_id": 30305, + "token_id": 30243, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261409,7 +260905,7 @@ }, { "str": ":", - "token_id": 30306, + "token_id": 30244, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261418,7 +260914,7 @@ }, { "str": "0", - "token_id": 30307, + "token_id": 30245, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261427,7 +260923,7 @@ }, { "str": "\"", - "token_id": 30308, + "token_id": 30246, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261436,7 +260932,7 @@ }, { "str": "/", - "token_id": 30309, + "token_id": 30247, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261445,7 +260941,7 @@ }, { "str": ">", - "token_id": 30310, + "token_id": 30248, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261454,7 +260950,7 @@ }, { "str": "<", - "token_id": 30311, + "token_id": 30249, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261463,7 +260959,7 @@ }, { "str": "ref", - "token_id": 30312, + "token_id": 30250, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261472,7 +260968,7 @@ }, { "str": ">", - "token_id": 30313, + "token_id": 30251, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261481,7 +260977,7 @@ }, { "str": "{{", - "token_id": 30314, + "token_id": 30252, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261490,7 +260986,7 @@ }, { "str": "cite", - "token_id": 30315, + "token_id": 30253, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261499,7 +260995,7 @@ }, { "str": "web", - "token_id": 30316, + "token_id": 30254, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261508,7 +261004,7 @@ }, { "str": "|", - "token_id": 30317, + "token_id": 30255, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261517,7 +261013,7 @@ }, { "str": "title", - "token_id": 30318, + "token_id": 30256, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261526,7 +261022,7 @@ }, { "str": "=", - "token_id": 30319, + "token_id": 30257, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261535,7 +261031,7 @@ }, { "str": "ス", - "token_id": 30320, + "token_id": 30258, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261544,7 +261040,7 @@ }, { "str": "プ", - "token_id": 30321, + "token_id": 30259, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261553,7 +261049,7 @@ }, { "str": "ラ", - "token_id": 30322, + "token_id": 30260, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261562,7 +261058,7 @@ }, { "str": "ト", - "token_id": 30323, + "token_id": 30261, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261571,7 +261067,7 @@ }, { "str": "ゥ", - "token_id": 30324, + "token_id": 30262, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261580,7 +261076,7 @@ }, { "str": "ー", - "token_id": 30325, + "token_id": 30263, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261589,7 +261085,7 @@ }, { "str": "ン", - "token_id": 30326, + "token_id": 30264, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261598,7 +261094,7 @@ }, { "str": "3", - "token_id": 30327, + "token_id": 30265, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261607,7 +261103,7 @@ }, { "str": "エ", - "token_id": 30328, + "token_id": 30266, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261616,7 +261112,7 @@ }, { "str": "キ", - "token_id": 30329, + "token_id": 30267, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261625,7 +261121,7 @@ }, { "str": "ス", - "token_id": 30330, + "token_id": 30268, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261634,7 +261130,7 @@ }, { "str": "パ", - "token_id": 30331, + "token_id": 30269, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261643,7 +261139,7 @@ }, { "str": "ン", - "token_id": 30332, + "token_id": 30270, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261652,7 +261148,7 @@ }, { "str": "シ", - "token_id": 30333, + "token_id": 30271, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261661,7 +261157,7 @@ }, { "str": "ョ", - "token_id": 30334, + "token_id": 30272, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261670,7 +261166,7 @@ }, { "str": "ン", - "token_id": 30335, + "token_id": 30273, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261679,7 +261175,7 @@ }, { "str": "・", - "token_id": 30336, + "token_id": 30274, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261688,7 +261184,7 @@ }, { "str": "パ", - "token_id": 30337, + "token_id": 30275, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261697,7 +261193,7 @@ }, { "str": "ス", - "token_id": 30338, + "token_id": 30276, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261706,7 +261202,7 @@ }, { "str": "サ", - "token_id": 30339, + "token_id": 30277, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261715,7 +261211,7 @@ }, { "str": "イ", - "token_id": 30340, + "token_id": 30278, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261724,7 +261220,7 @@ }, { "str": "ド", - "token_id": 30341, + "token_id": 30279, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261733,7 +261229,7 @@ }, { "str": "・", - "token_id": 30342, + "token_id": 30280, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261742,7 +261238,7 @@ }, { "str": "オ", - "token_id": 30343, + "token_id": 30281, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261751,7 +261247,7 @@ }, { "str": "ー", - "token_id": 30344, + "token_id": 30282, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261760,7 +261256,7 @@ }, { "str": "ダ", - "token_id": 30345, + "token_id": 30283, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261769,7 +261265,7 @@ }, { "str": "ー", - "token_id": 30346, + "token_id": 30284, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261778,7 +261274,7 @@ }, { "str": "{{", - "token_id": 30347, + "token_id": 30285, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261787,7 +261283,7 @@ }, { "str": "!", - "token_id": 30348, + "token_id": 30286, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261796,7 +261292,7 @@ }, { "str": "}}", - "token_id": 30349, + "token_id": 30287, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261805,7 +261301,7 @@ }, { "str": "nintendo", - "token_id": 30350, + "token_id": 30288, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261814,7 +261310,7 @@ }, { "str": "switch", - "token_id": 30351, + "token_id": 30289, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261823,7 +261319,7 @@ }, { "str": "{{", - "token_id": 30352, + "token_id": 30290, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261832,7 +261328,7 @@ }, { "str": "!", - "token_id": 30353, + "token_id": 30291, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261841,7 +261337,7 @@ }, { "str": "}}", - "token_id": 30354, + "token_id": 30292, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261850,7 +261346,7 @@ }, { "str": "任", - "token_id": 30355, + "token_id": 30293, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261859,7 +261355,7 @@ }, { "str": "天", - "token_id": 30356, + "token_id": 30294, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261868,7 +261364,7 @@ }, { "str": "堂", - "token_id": 30357, + "token_id": 30295, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261877,7 +261373,7 @@ }, { "str": "|", - "token_id": 30358, + "token_id": 30296, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261886,7 +261382,7 @@ }, { "str": "url", - "token_id": 30359, + "token_id": 30297, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261895,7 +261391,7 @@ }, { "str": "=", - "token_id": 30360, + "token_id": 30298, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261904,7 +261400,7 @@ }, { "str": "https", - "token_id": 30361, + "token_id": 30299, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261913,7 +261409,7 @@ }, { "str": ":", - "token_id": 30362, + "token_id": 30300, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261922,7 +261418,7 @@ }, { "str": "/", - "token_id": 30363, + "token_id": 30301, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261931,7 +261427,7 @@ }, { "str": "/", - "token_id": 30364, + "token_id": 30302, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261940,7 +261436,7 @@ }, { "str": "www", - "token_id": 30365, + "token_id": 30303, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261949,7 +261445,7 @@ }, { "str": ".", - "token_id": 30366, + "token_id": 30304, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261958,7 +261454,7 @@ }, { "str": "nintendo", - "token_id": 30367, + "token_id": 30305, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261967,7 +261463,7 @@ }, { "str": ".", - "token_id": 30368, + "token_id": 30306, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261976,7 +261472,7 @@ }, { "str": "co", - "token_id": 30369, + "token_id": 30307, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261985,7 +261481,7 @@ }, { "str": ".", - "token_id": 30370, + "token_id": 30308, "o_rev_id": 1209478258, "in": [], "out": [ @@ -261994,7 +261490,7 @@ }, { "str": "jp", - "token_id": 30371, + "token_id": 30309, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262003,7 +261499,7 @@ }, { "str": "/", - "token_id": 30372, + "token_id": 30310, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262012,7 +261508,7 @@ }, { "str": "switch", - "token_id": 30373, + "token_id": 30311, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262021,7 +261517,7 @@ }, { "str": "/", - "token_id": 30374, + "token_id": 30312, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262030,7 +261526,7 @@ }, { "str": "av5ja", - "token_id": 30375, + "token_id": 30313, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262039,7 +261535,7 @@ }, { "str": "/", - "token_id": 30376, + "token_id": 30314, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262048,7 +261544,7 @@ }, { "str": "sideorder", - "token_id": 30377, + "token_id": 30315, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262057,7 +261553,7 @@ }, { "str": "/", - "token_id": 30378, + "token_id": 30316, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262066,7 +261562,7 @@ }, { "str": "index", - "token_id": 30379, + "token_id": 30317, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262075,7 +261571,7 @@ }, { "str": ".", - "token_id": 30380, + "token_id": 30318, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262084,7 +261580,7 @@ }, { "str": "html", - "token_id": 30381, + "token_id": 30319, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262093,7 +261589,7 @@ }, { "str": "|", - "token_id": 30382, + "token_id": 30320, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262102,7 +261598,7 @@ }, { "str": "access", - "token_id": 30383, + "token_id": 30321, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262111,7 +261607,7 @@ }, { "str": "-", - "token_id": 30384, + "token_id": 30322, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262120,7 +261616,7 @@ }, { "str": "date", - "token_id": 30385, + "token_id": 30323, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262129,7 +261625,7 @@ }, { "str": "=", - "token_id": 30386, + "token_id": 30324, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262138,7 +261634,7 @@ }, { "str": "2024", - "token_id": 30387, + "token_id": 30325, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262147,7 +261643,7 @@ }, { "str": "-", - "token_id": 30388, + "token_id": 30326, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262156,7 +261652,7 @@ }, { "str": "02", - "token_id": 30389, + "token_id": 30327, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262165,7 +261661,7 @@ }, { "str": "-", - "token_id": 30390, + "token_id": 30328, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262174,7 +261670,7 @@ }, { "str": "22", - "token_id": 30391, + "token_id": 30329, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262183,7 +261679,7 @@ }, { "str": "|", - "token_id": 30392, + "token_id": 30330, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262192,7 +261688,7 @@ }, { "str": "website", - "token_id": 30393, + "token_id": 30331, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262201,7 +261697,7 @@ }, { "str": "=", - "token_id": 30394, + "token_id": 30332, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262210,7 +261706,7 @@ }, { "str": "任", - "token_id": 30395, + "token_id": 30333, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262219,7 +261715,7 @@ }, { "str": "天", - "token_id": 30396, + "token_id": 30334, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262228,7 +261724,7 @@ }, { "str": "堂", - "token_id": 30397, + "token_id": 30335, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262237,7 +261733,7 @@ }, { "str": "ホ", - "token_id": 30398, + "token_id": 30336, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262246,7 +261742,7 @@ }, { "str": "ー", - "token_id": 30399, + "token_id": 30337, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262255,7 +261751,7 @@ }, { "str": "ム", - "token_id": 30400, + "token_id": 30338, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262264,7 +261760,7 @@ }, { "str": "ペ", - "token_id": 30401, + "token_id": 30339, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262273,7 +261769,7 @@ }, { "str": "ー", - "token_id": 30402, + "token_id": 30340, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262282,7 +261778,7 @@ }, { "str": "ジ", - "token_id": 30403, + "token_id": 30341, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262291,7 +261787,7 @@ }, { "str": "|", - "token_id": 30404, + "token_id": 30342, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262300,7 +261796,7 @@ }, { "str": "language", - "token_id": 30405, + "token_id": 30343, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262309,7 +261805,7 @@ }, { "str": "=", - "token_id": 30406, + "token_id": 30344, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262318,7 +261814,7 @@ }, { "str": "ja", - "token_id": 30407, + "token_id": 30345, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262327,7 +261823,7 @@ }, { "str": "}}", - "token_id": 30408, + "token_id": 30346, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262336,7 +261832,7 @@ }, { "str": "<", - "token_id": 30409, + "token_id": 30347, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262345,7 +261841,7 @@ }, { "str": "/", - "token_id": 30410, + "token_id": 30348, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262354,7 +261850,7 @@ }, { "str": "ref", - "token_id": 30411, + "token_id": 30349, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262363,7 +261859,7 @@ }, { "str": ">", - "token_id": 30412, + "token_id": 30350, "o_rev_id": 1209478258, "in": [], "out": [ @@ -262372,7 +261868,7 @@ }, { "str": "previous", - "token_id": 30413, + "token_id": 30351, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262381,7 +261877,7 @@ }, { "str": "dlc", - "token_id": 30414, + "token_id": 30352, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262390,7 +261886,7 @@ }, { "str": "virtual", - "token_id": 30415, + "token_id": 30353, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262399,7 +261895,7 @@ }, { "str": "reality", - "token_id": 30416, + "token_id": 30354, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262408,7 +261904,7 @@ }, { "str": "created", - "token_id": 30417, + "token_id": 30355, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262417,7 +261913,7 @@ }, { "str": "by", - "token_id": 30418, + "token_id": 30356, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262426,7 +261922,7 @@ }, { "str": "one", - "token_id": 30419, + "token_id": 30357, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262435,7 +261931,7 @@ }, { "str": "characters", - "token_id": 30420, + "token_id": 30358, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262444,7 +261940,7 @@ }, { "str": ",", - "token_id": 30421, + "token_id": 30359, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262453,7 +261949,7 @@ }, { "str": "marina", - "token_id": 30422, + "token_id": 30360, "o_rev_id": 1209577951, "in": [], "out": [ @@ -262462,7 +261958,7 @@ }, { "str": "members", - "token_id": 30423, + "token_id": 30361, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262471,7 +261967,7 @@ }, { "str": "of", - "token_id": 30424, + "token_id": 30362, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262480,7 +261976,7 @@ }, { "str": "[[", - "token_id": 30425, + "token_id": 30363, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262489,7 +261985,7 @@ }, { "str": "#", - "token_id": 30426, + "token_id": 30364, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262498,7 +261994,7 @@ }, { "str": "pearl", - "token_id": 30427, + "token_id": 30365, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262507,7 +262003,7 @@ }, { "str": "and", - "token_id": 30428, + "token_id": 30366, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262516,7 +262012,7 @@ }, { "str": "marina", - "token_id": 30429, + "token_id": 30367, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262525,7 +262021,7 @@ }, { "str": "|", - "token_id": 30430, + "token_id": 30368, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262534,7 +262030,7 @@ }, { "str": "off", - "token_id": 30431, + "token_id": 30369, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262543,7 +262039,7 @@ }, { "str": "the", - "token_id": 30432, + "token_id": 30370, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262552,7 +262048,7 @@ }, { "str": "hook", - "token_id": 30433, + "token_id": 30371, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262561,7 +262057,7 @@ }, { "str": "]]", - "token_id": 30434, + "token_id": 30372, "o_rev_id": 1209578428, "in": [], "out": [ @@ -262570,7 +262066,7 @@ }, { "str": "[[", - "token_id": 30435, + "token_id": 30373, "o_rev_id": 1209578525, "in": [], "out": [ @@ -262579,7 +262075,7 @@ }, { "str": "|", - "token_id": 30436, + "token_id": 30374, "o_rev_id": 1209578525, "in": [], "out": [ @@ -262588,7 +262084,7 @@ }, { "str": "]]", - "token_id": 30437, + "token_id": 30375, "o_rev_id": 1209578525, "in": [], "out": [ @@ -262597,7 +262093,7 @@ }, { "str": "{{", - "token_id": 30438, + "token_id": 30376, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262606,7 +262102,7 @@ }, { "str": "unreliable", - "token_id": 30439, + "token_id": 30377, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262615,7 +262111,7 @@ }, { "str": "source", - "token_id": 30440, + "token_id": 30378, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262624,7 +262120,7 @@ }, { "str": "|", - "token_id": 30441, + "token_id": 30379, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262633,7 +262129,7 @@ }, { "str": "sure", - "token_id": 30442, + "token_id": 30380, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262642,7 +262138,7 @@ }, { "str": "=", - "token_id": 30443, + "token_id": 30381, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262651,7 +262147,7 @@ }, { "str": "y", - "token_id": 30444, + "token_id": 30382, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262660,7 +262156,7 @@ }, { "str": "|", - "token_id": 30445, + "token_id": 30383, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262669,7 +262165,7 @@ }, { "str": "reason", - "token_id": 30446, + "token_id": 30384, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262678,7 +262174,7 @@ }, { "str": "=", - "token_id": 30447, + "token_id": 30385, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262687,7 +262183,7 @@ }, { "str": "the", - "token_id": 30448, + "token_id": 30386, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262696,7 +262192,7 @@ }, { "str": "splatoon", - "token_id": 30449, + "token_id": 30387, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262705,7 +262201,7 @@ }, { "str": "wiki", - "token_id": 30450, + "token_id": 30388, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262714,7 +262210,7 @@ }, { "str": "is", - "token_id": 30451, + "token_id": 30389, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262723,7 +262219,7 @@ }, { "str": "[[", - "token_id": 30452, + "token_id": 30390, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262732,7 +262228,7 @@ }, { "str": "wp", - "token_id": 30453, + "token_id": 30391, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262741,7 +262237,7 @@ }, { "str": ":", - "token_id": 30454, + "token_id": 30392, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262750,7 +262246,7 @@ }, { "str": "ugc", - "token_id": 30455, + "token_id": 30393, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262759,7 +262255,7 @@ }, { "str": "|", - "token_id": 30456, + "token_id": 30394, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262768,7 +262264,7 @@ }, { "str": "user", - "token_id": 30457, + "token_id": 30395, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262777,7 +262273,7 @@ }, { "str": "-", - "token_id": 30458, + "token_id": 30396, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262786,7 +262282,7 @@ }, { "str": "generated", - "token_id": 30459, + "token_id": 30397, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262795,7 +262291,7 @@ }, { "str": "content", - "token_id": 30460, + "token_id": 30398, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262804,7 +262300,7 @@ }, { "str": "]]", - "token_id": 30461, + "token_id": 30399, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262813,7 +262309,7 @@ }, { "str": "}}", - "token_id": 30462, + "token_id": 30400, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262822,7 +262318,7 @@ }, { "str": "[[", - "token_id": 30463, + "token_id": 30401, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262831,7 +262327,7 @@ }, { "str": "coral", - "token_id": 30464, + "token_id": 30402, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262840,7 +262336,7 @@ }, { "str": "bleaching", - "token_id": 30465, + "token_id": 30403, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262849,7 +262345,7 @@ }, { "str": "|", - "token_id": 30466, + "token_id": 30404, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262858,7 +262354,7 @@ }, { "str": "bleached", - "token_id": 30467, + "token_id": 30405, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262867,7 +262363,7 @@ }, { "str": "]]", - "token_id": 30468, + "token_id": 30406, "o_rev_id": 1209620073, "in": [], "out": [ @@ -262876,7 +262372,7 @@ }, { "str": "|", - "token_id": 30469, + "token_id": 30407, "o_rev_id": 1209620211, "in": [], "out": [ @@ -262885,7 +262381,7 @@ }, { "str": "]]", - "token_id": 30470, + "token_id": 30408, "o_rev_id": 1209620211, "in": [], "out": [ @@ -262894,7 +262390,7 @@ }, { "str": "|", - "token_id": 30471, + "token_id": 30409, "o_rev_id": 1209623391, "in": [], "out": [ @@ -262903,7 +262399,7 @@ }, { "str": "date", - "token_id": 30472, + "token_id": 30410, "o_rev_id": 1209623391, "in": [], "out": [ @@ -262912,7 +262408,7 @@ }, { "str": "=", - "token_id": 30473, + "token_id": 30411, "o_rev_id": 1209623391, "in": [], "out": [ @@ -262921,7 +262417,7 @@ }, { "str": "february", - "token_id": 30474, + "token_id": 30412, "o_rev_id": 1209623391, "in": [], "out": [ @@ -262930,7 +262426,7 @@ }, { "str": "2024", - "token_id": 30475, + "token_id": 30413, "o_rev_id": 1209623391, "in": [], "out": [ @@ -262939,7 +262435,7 @@ }, { "str": "you", - "token_id": 30476, + "token_id": 30414, "o_rev_id": 1209781181, "in": [], "out": [ @@ -262948,7 +262444,7 @@ }, { "str": "are", - "token_id": 30477, + "token_id": 30415, "o_rev_id": 1209781181, "in": [], "out": [ @@ -262957,7 +262453,7 @@ }, { "str": "a", - "token_id": 30478, + "token_id": 30416, "o_rev_id": 1209781181, "in": [], "out": [ @@ -262966,7 +262462,7 @@ }, { "str": "squid", - "token_id": 30479, + "token_id": 30417, "o_rev_id": 1209781181, "in": [], "out": [ @@ -262975,7 +262471,7 @@ }, { "str": "now", - "token_id": 30480, + "token_id": 30418, "o_rev_id": 1209781181, "in": [], "out": [ @@ -262984,7 +262480,7 @@ }, { "str": ",", - "token_id": 30481, + "token_id": 30419, "o_rev_id": 1209781181, "in": [], "out": [ @@ -262993,7 +262489,7 @@ }, { "str": "you", - "token_id": 30482, + "token_id": 30420, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263002,7 +262498,7 @@ }, { "str": "are", - "token_id": 30483, + "token_id": 30421, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263011,7 +262507,7 @@ }, { "str": "a", - "token_id": 30484, + "token_id": 30422, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263020,7 +262516,7 @@ }, { "str": "kid", - "token_id": 30485, + "token_id": 30423, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263029,7 +262525,7 @@ }, { "str": "now", - "token_id": 30486, + "token_id": 30424, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263038,7 +262534,7 @@ }, { "str": ",", - "token_id": 30487, + "token_id": 30425, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263047,7 +262543,7 @@ }, { "str": "you", - "token_id": 30488, + "token_id": 30426, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263056,7 +262552,7 @@ }, { "str": "are", - "token_id": 30489, + "token_id": 30427, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263065,7 +262561,7 @@ }, { "str": "a", - "token_id": 30490, + "token_id": 30428, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263074,7 +262570,7 @@ }, { "str": "squid", - "token_id": 30491, + "token_id": 30429, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263083,7 +262579,7 @@ }, { "str": "youre", - "token_id": 30492, + "token_id": 30430, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263092,7 +262588,7 @@ }, { "str": "a", - "token_id": 30493, + "token_id": 30431, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263101,7 +262597,7 @@ }, { "str": "kid", - "token_id": 30494, + "token_id": 30432, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263110,7 +262606,7 @@ }, { "str": "your", - "token_id": 30495, + "token_id": 30433, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263119,7 +262615,7 @@ }, { "str": "'", - "token_id": 30496, + "token_id": 30434, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263128,7 +262624,7 @@ }, { "str": "e", - "token_id": 30497, + "token_id": 30435, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263137,7 +262633,7 @@ }, { "str": "a", - "token_id": 30498, + "token_id": 30436, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263146,7 +262642,7 @@ }, { "str": "squid", - "token_id": 30499, + "token_id": 30437, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263155,7 +262651,7 @@ }, { "str": "now", - "token_id": 30500, + "token_id": 30438, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263164,7 +262660,7 @@ }, { "str": "!", - "token_id": 30501, + "token_id": 30439, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263173,7 +262669,7 @@ }, { "str": "now", - "token_id": 30502, + "token_id": 30440, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263182,7 +262678,7 @@ }, { "str": "you", - "token_id": 30503, + "token_id": 30441, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263191,7 +262687,7 @@ }, { "str": "shall", - "token_id": 30504, + "token_id": 30442, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263200,7 +262696,7 @@ }, { "str": "kill", - "token_id": 30505, + "token_id": 30443, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263209,7 +262705,7 @@ }, { "str": "other", - "token_id": 30506, + "token_id": 30444, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263218,7 +262714,7 @@ }, { "str": "squid", - "token_id": 30507, + "token_id": 30445, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263227,7 +262723,7 @@ }, { "str": "kids", - "token_id": 30508, + "token_id": 30446, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263236,7 +262732,7 @@ }, { "str": "!", - "token_id": 30509, + "token_id": 30447, "o_rev_id": 1209781181, "in": [], "out": [ @@ -263245,7 +262741,7 @@ }, { "str": "{{", - "token_id": 30510, + "token_id": 30448, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263254,7 +262750,7 @@ }, { "str": "no", - "token_id": 30511, + "token_id": 30449, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263263,7 +262759,7 @@ }, { "str": "plot", - "token_id": 30512, + "token_id": 30450, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263272,7 +262768,7 @@ }, { "str": "|", - "token_id": 30513, + "token_id": 30451, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263281,7 +262777,7 @@ }, { "str": "date", - "token_id": 30514, + "token_id": 30452, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263290,7 +262786,7 @@ }, { "str": "=", - "token_id": 30515, + "token_id": 30453, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263299,7 +262795,7 @@ }, { "str": "february", - "token_id": 30516, + "token_id": 30454, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263308,7 +262804,7 @@ }, { "str": "2024", - "token_id": 30517, + "token_id": 30455, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263317,7 +262813,7 @@ }, { "str": "}}", - "token_id": 30518, + "token_id": 30456, "o_rev_id": 1209791143, "in": [], "out": [ @@ -263326,7 +262822,7 @@ }, { "str": "side", - "token_id": 30519, + "token_id": 30457, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263335,7 +262831,7 @@ }, { "str": "order", - "token_id": 30520, + "token_id": 30458, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263344,7 +262840,7 @@ }, { "str": "is", - "token_id": 30521, + "token_id": 30459, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263353,7 +262849,7 @@ }, { "str": "a", - "token_id": 30522, + "token_id": 30460, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263362,7 +262858,7 @@ }, { "str": "single", - "token_id": 30523, + "token_id": 30461, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263371,7 +262867,7 @@ }, { "str": "player", - "token_id": 30524, + "token_id": 30462, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263380,7 +262876,7 @@ }, { "str": "dlc", - "token_id": 30525, + "token_id": 30463, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263389,7 +262885,7 @@ }, { "str": "with", - "token_id": 30526, + "token_id": 30464, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263398,7 +262894,7 @@ }, { "str": "the", - "token_id": 30527, + "token_id": 30465, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263407,7 +262903,7 @@ }, { "str": "main", - "token_id": 30528, + "token_id": 30466, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263416,7 +262912,7 @@ }, { "str": "character", - "token_id": 30529, + "token_id": 30467, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263425,7 +262921,7 @@ }, { "str": "agent", - "token_id": 30530, + "token_id": 30468, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263434,7 +262930,7 @@ }, { "str": "8", - "token_id": 30531, + "token_id": 30469, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263443,7 +262939,7 @@ }, { "str": ".", - "token_id": 30532, + "token_id": 30470, "o_rev_id": 1209797851, "in": [], "out": [ @@ -263452,14 +262948,14 @@ }, { "str": ",", - "token_id": 30533, + "token_id": 30471, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "confronts", - "token_id": 30534, + "token_id": 30472, "o_rev_id": 1209963177, "in": [], "out": [ @@ -263468,7 +262964,7 @@ }, { "str": "the", - "token_id": 30535, + "token_id": 30473, "o_rev_id": 1209963177, "in": [], "out": [ @@ -263477,7 +262973,7 @@ }, { "str": "splatoon", - "token_id": 30536, + "token_id": 30474, "o_rev_id": 1209963177, "in": [ 1216768014 @@ -263489,7 +262985,7 @@ }, { "str": "again", - "token_id": 30537, + "token_id": 30475, "o_rev_id": 1209963177, "in": [], "out": [ @@ -263498,7 +262994,7 @@ }, { "str": "and", - "token_id": 30538, + "token_id": 30476, "o_rev_id": 1209963177, "in": [], "out": [ @@ -263507,7 +263003,7 @@ }, { "str": "eventually", - "token_id": 30539, + "token_id": 30477, "o_rev_id": 1209963177, "in": [], "out": [ @@ -263516,7 +263012,7 @@ }, { "str": ",", - "token_id": 30540, + "token_id": 30478, "o_rev_id": 1209963177, "in": [], "out": [ @@ -263525,91 +263021,91 @@ }, { "str": "they", - "token_id": 30541, + "token_id": 30479, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "reach", - "token_id": 30542, + "token_id": 30480, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "the", - "token_id": 30543, + "token_id": 30481, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "top", - "token_id": 30544, + "token_id": 30482, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "of", - "token_id": 30545, + "token_id": 30483, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "the", - "token_id": 30546, + "token_id": 30484, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "rocket", - "token_id": 30547, + "token_id": 30485, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "and", - "token_id": 30548, + "token_id": 30486, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "having", - "token_id": 30549, + "token_id": 30487, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "the", - "token_id": 30550, + "token_id": 30488, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "former", - "token_id": 30551, + "token_id": 30489, "o_rev_id": 1209963177, "in": [], "out": [] }, { "str": "called", - "token_id": 30552, + "token_id": 30490, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": "[[", - "token_id": 30553, + "token_id": 30491, "o_rev_id": 1210832608, "in": [], "out": [ @@ -263618,42 +263114,42 @@ }, { "str": "splatoon", - "token_id": 30554, + "token_id": 30492, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": "3", - "token_id": 30555, + "token_id": 30493, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": ":", - "token_id": 30556, + "token_id": 30494, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": "side", - "token_id": 30557, + "token_id": 30495, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": "order", - "token_id": 30558, + "token_id": 30496, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": "|", - "token_id": 30559, + "token_id": 30497, "o_rev_id": 1210832608, "in": [], "out": [ @@ -263662,28 +263158,28 @@ }, { "str": "side", - "token_id": 30560, + "token_id": 30498, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": "order", - "token_id": 30561, + "token_id": 30499, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": "]]", - "token_id": 30562, + "token_id": 30500, "o_rev_id": 1210832608, "in": [], "out": [] }, { "str": "the", - "token_id": 30563, + "token_id": 30501, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263695,7 +263191,7 @@ }, { "str": "'", - "token_id": 30564, + "token_id": 30502, "o_rev_id": 1210837922, "in": [ 1210840951, @@ -263709,7 +263205,7 @@ }, { "str": "'", - "token_id": 30565, + "token_id": 30503, "o_rev_id": 1210837922, "in": [ 1210840951, @@ -263723,7 +263219,7 @@ }, { "str": "side", - "token_id": 30566, + "token_id": 30504, "o_rev_id": 1210837922, "in": [ 1210840951, @@ -263737,7 +263233,7 @@ }, { "str": "order", - "token_id": 30567, + "token_id": 30505, "o_rev_id": 1210837922, "in": [ 1210840951, @@ -263751,7 +263247,7 @@ }, { "str": "'", - "token_id": 30568, + "token_id": 30506, "o_rev_id": 1210837922, "in": [ 1210840951, @@ -263765,7 +263261,7 @@ }, { "str": "'", - "token_id": 30569, + "token_id": 30507, "o_rev_id": 1210837922, "in": [ 1210840951, @@ -263779,7 +263275,7 @@ }, { "str": "dlc", - "token_id": 30570, + "token_id": 30508, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263791,7 +263287,7 @@ }, { "str": "story", - "token_id": 30571, + "token_id": 30509, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263803,7 +263299,7 @@ }, { "str": "is", - "token_id": 30572, + "token_id": 30510, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263815,7 +263311,7 @@ }, { "str": "set", - "token_id": 30573, + "token_id": 30511, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263827,7 +263323,7 @@ }, { "str": "in", - "token_id": 30574, + "token_id": 30512, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263839,7 +263335,7 @@ }, { "str": "the", - "token_id": 30575, + "token_id": 30513, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263851,7 +263347,7 @@ }, { "str": "inkopolis", - "token_id": 30576, + "token_id": 30514, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263863,7 +263359,7 @@ }, { "str": "square", - "token_id": 30577, + "token_id": 30515, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263875,7 +263371,7 @@ }, { "str": "area", - "token_id": 30578, + "token_id": 30516, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263887,7 +263383,7 @@ }, { "str": "from", - "token_id": 30579, + "token_id": 30517, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263899,7 +263395,7 @@ }, { "str": "splatoon", - "token_id": 30580, + "token_id": 30518, "o_rev_id": 1210837922, "in": [ 1210840951, @@ -263913,7 +263409,7 @@ }, { "str": "2", - "token_id": 30581, + "token_id": 30519, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263925,7 +263421,7 @@ }, { "str": ",", - "token_id": 30582, + "token_id": 30520, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263937,7 +263433,7 @@ }, { "str": "which", - "token_id": 30583, + "token_id": 30521, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263949,7 +263445,7 @@ }, { "str": "has", - "token_id": 30584, + "token_id": 30522, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263961,7 +263457,7 @@ }, { "str": "been", - "token_id": 30585, + "token_id": 30523, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263973,7 +263469,7 @@ }, { "str": "drained", - "token_id": 30586, + "token_id": 30524, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263985,7 +263481,7 @@ }, { "str": "of", - "token_id": 30587, + "token_id": 30525, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -263997,7 +263493,7 @@ }, { "str": "color", - "token_id": 30588, + "token_id": 30526, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -264009,7 +263505,7 @@ }, { "str": ".", - "token_id": 30589, + "token_id": 30527, "o_rev_id": 1210837922, "in": [ 1210840951 @@ -264021,70 +263517,70 @@ }, { "str": "<", - "token_id": 30590, + "token_id": 30528, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "ref", - "token_id": 30591, + "token_id": 30529, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": ">", - "token_id": 30592, + "token_id": 30530, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "{{", - "token_id": 30593, + "token_id": 30531, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "cite", - "token_id": 30594, + "token_id": 30532, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "web", - "token_id": 30595, + "token_id": 30533, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "|", - "token_id": 30596, + "token_id": 30534, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "date", - "token_id": 30597, + "token_id": 30535, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "=", - "token_id": 30598, + "token_id": 30536, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "2024", - "token_id": 30599, + "token_id": 30537, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264093,7 +263589,7 @@ }, { "str": "-", - "token_id": 30600, + "token_id": 30538, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264102,7 +263598,7 @@ }, { "str": "02", - "token_id": 30601, + "token_id": 30539, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264111,7 +263607,7 @@ }, { "str": "-", - "token_id": 30602, + "token_id": 30540, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264120,7 +263616,7 @@ }, { "str": "27", - "token_id": 30603, + "token_id": 30541, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264129,49 +263625,49 @@ }, { "str": "|", - "token_id": 30604, + "token_id": 30542, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "title", - "token_id": 30605, + "token_id": 30543, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "=", - "token_id": 30606, + "token_id": 30544, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 30607, + "token_id": 30545, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "3", - "token_id": 30608, + "token_id": 30546, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": ":", - "token_id": 30609, + "token_id": 30547, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "side", - "token_id": 30610, + "token_id": 30548, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264180,7 +263676,7 @@ }, { "str": "order", - "token_id": 30611, + "token_id": 30549, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264189,7 +263685,7 @@ }, { "str": "shows", - "token_id": 30612, + "token_id": 30550, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264198,7 +263694,7 @@ }, { "str": "that", - "token_id": 30613, + "token_id": 30551, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264207,7 +263703,7 @@ }, { "str": "the", - "token_id": 30614, + "token_id": 30552, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264216,7 +263712,7 @@ }, { "str": "series", - "token_id": 30615, + "token_id": 30553, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264225,7 +263721,7 @@ }, { "str": "can", - "token_id": 30616, + "token_id": 30554, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264234,7 +263730,7 @@ }, { "str": "do", - "token_id": 30617, + "token_id": 30555, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264243,7 +263739,7 @@ }, { "str": "it", - "token_id": 30618, + "token_id": 30556, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264252,7 +263748,7 @@ }, { "str": "all", - "token_id": 30619, + "token_id": 30557, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264261,70 +263757,70 @@ }, { "str": "|", - "token_id": 30620, + "token_id": 30558, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "url", - "token_id": 30621, + "token_id": 30559, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "=", - "token_id": 30622, + "token_id": 30560, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "https", - "token_id": 30623, + "token_id": 30561, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": ":", - "token_id": 30624, + "token_id": 30562, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "/", - "token_id": 30625, + "token_id": 30563, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "/", - "token_id": 30626, + "token_id": 30564, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "www", - "token_id": 30627, + "token_id": 30565, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": ".", - "token_id": 30628, + "token_id": 30566, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "digitaltrends", - "token_id": 30629, + "token_id": 30567, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264333,28 +263829,28 @@ }, { "str": ".", - "token_id": 30630, + "token_id": 30568, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "com", - "token_id": 30631, + "token_id": 30569, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "/", - "token_id": 30632, + "token_id": 30570, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "gaming", - "token_id": 30633, + "token_id": 30571, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264363,42 +263859,42 @@ }, { "str": "/", - "token_id": 30634, + "token_id": 30572, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 30635, + "token_id": 30573, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "-", - "token_id": 30636, + "token_id": 30574, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "3", - "token_id": 30637, + "token_id": 30575, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "-", - "token_id": 30638, + "token_id": 30576, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "side", - "token_id": 30639, + "token_id": 30577, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264407,14 +263903,14 @@ }, { "str": "-", - "token_id": 30640, + "token_id": 30578, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "order", - "token_id": 30641, + "token_id": 30579, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264423,14 +263919,14 @@ }, { "str": "-", - "token_id": 30642, + "token_id": 30580, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "impressions", - "token_id": 30643, + "token_id": 30581, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264439,7 +263935,7 @@ }, { "str": "/", - "token_id": 30644, + "token_id": 30582, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264448,7 +263944,7 @@ }, { "str": "|", - "token_id": 30645, + "token_id": 30583, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264457,7 +263953,7 @@ }, { "str": "access", - "token_id": 30646, + "token_id": 30584, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264466,14 +263962,14 @@ }, { "str": "-", - "token_id": 30647, + "token_id": 30585, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "date", - "token_id": 30648, + "token_id": 30586, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264482,7 +263978,7 @@ }, { "str": "=", - "token_id": 30649, + "token_id": 30587, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264491,7 +263987,7 @@ }, { "str": "2024", - "token_id": 30650, + "token_id": 30588, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264500,14 +263996,14 @@ }, { "str": "-", - "token_id": 30651, + "token_id": 30589, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "02", - "token_id": 30652, + "token_id": 30590, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264516,14 +264012,14 @@ }, { "str": "-", - "token_id": 30653, + "token_id": 30591, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "28", - "token_id": 30654, + "token_id": 30592, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264532,7 +264028,7 @@ }, { "str": "|", - "token_id": 30655, + "token_id": 30593, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264541,7 +264037,7 @@ }, { "str": "website", - "token_id": 30656, + "token_id": 30594, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264550,7 +264046,7 @@ }, { "str": "=", - "token_id": 30657, + "token_id": 30595, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264559,7 +264055,7 @@ }, { "str": "digital", - "token_id": 30658, + "token_id": 30596, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264568,7 +264064,7 @@ }, { "str": "trends", - "token_id": 30659, + "token_id": 30597, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264577,7 +264073,7 @@ }, { "str": "|", - "token_id": 30660, + "token_id": 30598, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264586,7 +264082,7 @@ }, { "str": "language", - "token_id": 30661, + "token_id": 30599, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264595,7 +264091,7 @@ }, { "str": "=", - "token_id": 30662, + "token_id": 30600, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264604,7 +264100,7 @@ }, { "str": "en", - "token_id": 30663, + "token_id": 30601, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264613,7 +264109,7 @@ }, { "str": "}}", - "token_id": 30664, + "token_id": 30602, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264622,7 +264118,7 @@ }, { "str": "<", - "token_id": 30665, + "token_id": 30603, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264631,14 +264127,14 @@ }, { "str": "/", - "token_id": 30666, + "token_id": 30604, "o_rev_id": 1210841035, "in": [], "out": [] }, { "str": "ref", - "token_id": 30667, + "token_id": 30605, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264647,7 +264143,7 @@ }, { "str": ">", - "token_id": 30668, + "token_id": 30606, "o_rev_id": 1210841035, "in": [], "out": [ @@ -264656,14 +264152,14 @@ }, { "str": ",", - "token_id": 30669, + "token_id": 30607, "o_rev_id": 1210949792, "in": [], "out": [] }, { "str": "an", - "token_id": 30670, + "token_id": 30608, "o_rev_id": 1211042103, "in": [ 1316275994 @@ -264675,7 +264171,7 @@ }, { "str": "in", - "token_id": 30671, + "token_id": 30609, "o_rev_id": 1211042103, "in": [], "out": [ @@ -264684,7 +264180,7 @@ }, { "str": "infinite", - "token_id": 30672, + "token_id": 30610, "o_rev_id": 1211042421, "in": [ 1316275994 @@ -264696,7 +264192,7 @@ }, { "str": "}}", - "token_id": 30673, + "token_id": 30611, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264705,7 +264201,7 @@ }, { "str": "the", - "token_id": 30674, + "token_id": 30612, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264714,7 +264210,7 @@ }, { "str": "ink", - "token_id": 30675, + "token_id": 30613, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264723,7 +264219,7 @@ }, { "str": "is", - "token_id": 30676, + "token_id": 30614, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264732,7 +264228,7 @@ }, { "str": "settled", - "token_id": 30677, + "token_id": 30615, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264741,7 +264237,7 @@ }, { "str": "to", - "token_id": 30678, + "token_id": 30616, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264750,7 +264246,7 @@ }, { "str": "be", - "token_id": 30679, + "token_id": 30617, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264759,7 +264255,7 @@ }, { "str": "a", - "token_id": 30680, + "token_id": 30618, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264768,7 +264264,7 @@ }, { "str": "reference", - "token_id": 30681, + "token_id": 30619, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264777,7 +264273,7 @@ }, { "str": "to", - "token_id": 30682, + "token_id": 30620, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264786,7 +264282,7 @@ }, { "str": "hitler", - "token_id": 30683, + "token_id": 30621, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264795,7 +264291,7 @@ }, { "str": ".", - "token_id": 30684, + "token_id": 30622, "o_rev_id": 1211890717, "in": [], "out": [ @@ -264804,7 +264300,7 @@ }, { "str": "gayplay", - "token_id": 30685, + "token_id": 30623, "o_rev_id": 1211892251, "in": [], "out": [ @@ -264813,301 +264309,301 @@ }, { "str": "|", - "token_id": 30686, + "token_id": 30624, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "url", - "token_id": 30687, + "token_id": 30625, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30688, + "token_id": 30626, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "status", - "token_id": 30689, + "token_id": 30627, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30690, + "token_id": 30628, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "live", - "token_id": 30691, + "token_id": 30629, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30692, + "token_id": 30630, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "archive", - "token_id": 30693, + "token_id": 30631, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30694, + "token_id": 30632, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "url", - "token_id": 30695, + "token_id": 30633, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30696, + "token_id": 30634, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30697, + "token_id": 30635, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "archive", - "token_id": 30698, + "token_id": 30636, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30699, + "token_id": 30637, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "date", - "token_id": 30700, + "token_id": 30638, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30701, + "token_id": 30639, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "11", - "token_id": 30702, + "token_id": 30640, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "february", - "token_id": 30703, + "token_id": 30641, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "2023", - "token_id": 30704, + "token_id": 30642, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30705, + "token_id": 30643, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "work", - "token_id": 30706, + "token_id": 30644, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30707, + "token_id": 30645, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "eurogamer", - "token_id": 30708, + "token_id": 30646, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30709, + "token_id": 30647, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "language", - "token_id": 30710, + "token_id": 30648, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30711, + "token_id": 30649, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "en", - "token_id": 30712, + "token_id": 30650, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30713, + "token_id": 30651, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "gb", - "token_id": 30714, + "token_id": 30652, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "}}", - "token_id": 30715, + "token_id": 30653, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "<", - "token_id": 30716, + "token_id": 30654, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "/", - "token_id": 30717, + "token_id": 30655, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "ref", - "token_id": 30718, + "token_id": 30656, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": ">", - "token_id": 30719, + "token_id": 30657, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "this", - "token_id": 30720, + "token_id": 30658, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "mode", - "token_id": 30721, + "token_id": 30659, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "was", - "token_id": 30722, + "token_id": 30660, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "later", - "token_id": 30723, + "token_id": 30661, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "revealed", - "token_id": 30724, + "token_id": 30662, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "to", - "token_id": 30725, + "token_id": 30663, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "be", - "token_id": 30726, + "token_id": 30664, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "a", - "token_id": 30727, + "token_id": 30665, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "[[", - "token_id": 30728, + "token_id": 30666, "o_rev_id": 1212426922, "in": [], "out": [ @@ -265116,7 +264612,7 @@ }, { "str": "roguelike", - "token_id": 30729, + "token_id": 30667, "o_rev_id": 1212426922, "in": [], "out": [ @@ -265125,7 +264621,7 @@ }, { "str": "]]", - "token_id": 30730, + "token_id": 30668, "o_rev_id": 1212426922, "in": [], "out": [ @@ -265134,91 +264630,91 @@ }, { "str": ",", - "token_id": 30731, + "token_id": 30669, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "and", - "token_id": 30732, + "token_id": 30670, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "featured", - "token_id": 30733, + "token_id": 30671, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "a", - "token_id": 30734, + "token_id": 30672, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "new", - "token_id": 30735, + "token_id": 30673, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "story", - "token_id": 30736, + "token_id": 30674, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "with", - "token_id": 30737, + "token_id": 30675, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "the", - "token_id": 30738, + "token_id": 30676, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "protagonist", - "token_id": 30739, + "token_id": 30677, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "of", - "token_id": 30740, + "token_id": 30678, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "'", - "token_id": 30741, + "token_id": 30679, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "'", - "token_id": 30742, + "token_id": 30680, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 30743, + "token_id": 30681, "o_rev_id": 1212426922, "in": [ 1216768014 @@ -265229,35 +264725,35 @@ }, { "str": "2", - "token_id": 30744, + "token_id": 30682, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": ":", - "token_id": 30745, + "token_id": 30683, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "octo", - "token_id": 30746, + "token_id": 30684, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "expansion", - "token_id": 30747, + "token_id": 30685, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": ",", - "token_id": 30748, + "token_id": 30686, "o_rev_id": 1212426922, "in": [], "out": [ @@ -265266,21 +264762,21 @@ }, { "str": "'", - "token_id": 30749, + "token_id": 30687, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "'", - "token_id": 30750, + "token_id": 30688, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "eight", - "token_id": 30751, + "token_id": 30689, "o_rev_id": 1212426922, "in": [], "out": [ @@ -265289,49 +264785,49 @@ }, { "str": ".", - "token_id": 30752, + "token_id": 30690, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "side", - "token_id": 30753, + "token_id": 30691, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "order", - "token_id": 30754, + "token_id": 30692, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "released", - "token_id": 30755, + "token_id": 30693, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "on", - "token_id": 30756, + "token_id": 30694, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "february", - "token_id": 30757, + "token_id": 30695, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "22nd", - "token_id": 30758, + "token_id": 30696, "o_rev_id": 1212426922, "in": [], "out": [ @@ -265340,7 +264836,7 @@ }, { "str": ",", - "token_id": 30759, + "token_id": 30697, "o_rev_id": 1212426922, "in": [], "out": [ @@ -265349,623 +264845,623 @@ }, { "str": "2024", - "token_id": 30760, + "token_id": 30698, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": ".", - "token_id": 30761, + "token_id": 30699, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "<", - "token_id": 30762, + "token_id": 30700, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "ref", - "token_id": 30763, + "token_id": 30701, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": ">", - "token_id": 30764, + "token_id": 30702, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "{{", - "token_id": 30765, + "token_id": 30703, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "cite", - "token_id": 30766, + "token_id": 30704, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "web", - "token_id": 30767, + "token_id": 30705, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30768, + "token_id": 30706, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "last", - "token_id": 30769, + "token_id": 30707, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30770, + "token_id": 30708, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "cripe", - "token_id": 30771, + "token_id": 30709, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30772, + "token_id": 30710, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "first", - "token_id": 30773, + "token_id": 30711, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30774, + "token_id": 30712, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "michael", - "token_id": 30775, + "token_id": 30713, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30776, + "token_id": 30714, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "date", - "token_id": 30777, + "token_id": 30715, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30778, + "token_id": 30716, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "2024", - "token_id": 30779, + "token_id": 30717, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30780, + "token_id": 30718, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "01", - "token_id": 30781, + "token_id": 30719, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30782, + "token_id": 30720, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "24", - "token_id": 30783, + "token_id": 30721, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30784, + "token_id": 30722, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "title", - "token_id": 30785, + "token_id": 30723, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30786, + "token_id": 30724, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 30787, + "token_id": 30725, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "3", - "token_id": 30788, + "token_id": 30726, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "side", - "token_id": 30789, + "token_id": 30727, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "order", - "token_id": 30790, + "token_id": 30728, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "dlc", - "token_id": 30791, + "token_id": 30729, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "finally", - "token_id": 30792, + "token_id": 30730, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "gets", - "token_id": 30793, + "token_id": 30731, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "served", - "token_id": 30794, + "token_id": 30732, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "up", - "token_id": 30795, + "token_id": 30733, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "in", - "token_id": 30796, + "token_id": 30734, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "february", - "token_id": 30797, + "token_id": 30735, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30798, + "token_id": 30736, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "url", - "token_id": 30799, + "token_id": 30737, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30800, + "token_id": 30738, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "https", - "token_id": 30801, + "token_id": 30739, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": ":", - "token_id": 30802, + "token_id": 30740, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "/", - "token_id": 30803, + "token_id": 30741, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "/", - "token_id": 30804, + "token_id": 30742, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "www", - "token_id": 30805, + "token_id": 30743, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": ".", - "token_id": 30806, + "token_id": 30744, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "ign", - "token_id": 30807, + "token_id": 30745, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": ".", - "token_id": 30808, + "token_id": 30746, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "com", - "token_id": 30809, + "token_id": 30747, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "/", - "token_id": 30810, + "token_id": 30748, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "articles", - "token_id": 30811, + "token_id": 30749, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "/", - "token_id": 30812, + "token_id": 30750, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 30813, + "token_id": 30751, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30814, + "token_id": 30752, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "3", - "token_id": 30815, + "token_id": 30753, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30816, + "token_id": 30754, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "side", - "token_id": 30817, + "token_id": 30755, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30818, + "token_id": 30756, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "order", - "token_id": 30819, + "token_id": 30757, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30820, + "token_id": 30758, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "dlc", - "token_id": 30821, + "token_id": 30759, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30822, + "token_id": 30760, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "finally", - "token_id": 30823, + "token_id": 30761, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30824, + "token_id": 30762, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "gets", - "token_id": 30825, + "token_id": 30763, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30826, + "token_id": 30764, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "served", - "token_id": 30827, + "token_id": 30765, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30828, + "token_id": 30766, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "up", - "token_id": 30829, + "token_id": 30767, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30830, + "token_id": 30768, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "in", - "token_id": 30831, + "token_id": 30769, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "-", - "token_id": 30832, + "token_id": 30770, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "february", - "token_id": 30833, + "token_id": 30771, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30834, + "token_id": 30772, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "access", - "token_id": 30835, + "token_id": 30773, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30836, + "token_id": 30774, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "2024", - "token_id": 30837, + "token_id": 30775, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "03", - "token_id": 30838, + "token_id": 30776, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "07", - "token_id": 30839, + "token_id": 30777, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30840, + "token_id": 30778, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "website", - "token_id": 30841, + "token_id": 30779, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30842, + "token_id": 30780, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "ign", - "token_id": 30843, + "token_id": 30781, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "|", - "token_id": 30844, + "token_id": 30782, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "language", - "token_id": 30845, + "token_id": 30783, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "=", - "token_id": 30846, + "token_id": 30784, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "en", - "token_id": 30847, + "token_id": 30785, "o_rev_id": 1212426922, "in": [], "out": [] }, { "str": "}}", - "token_id": 30848, + "token_id": 30786, "o_rev_id": 1212426922, "in": [], "out": [ @@ -265974,7 +265470,7 @@ }, { "str": "people", - "token_id": 30849, + "token_id": 30787, "o_rev_id": 1212578356, "in": [], "out": [ @@ -265983,7 +265479,7 @@ }, { "str": "ejaculating", - "token_id": 30850, + "token_id": 30788, "o_rev_id": 1212578356, "in": [], "out": [ @@ -265992,7 +265488,7 @@ }, { "str": "their", - "token_id": 30851, + "token_id": 30789, "o_rev_id": 1212578356, "in": [], "out": [ @@ -266001,7 +265497,7 @@ }, { "str": "color", - "token_id": 30852, + "token_id": 30790, "o_rev_id": 1212578356, "in": [], "out": [ @@ -266010,7 +265506,7 @@ }, { "str": "on", - "token_id": 30853, + "token_id": 30791, "o_rev_id": 1212578356, "in": [], "out": [ @@ -266019,7 +265515,7 @@ }, { "str": "the", - "token_id": 30854, + "token_id": 30792, "o_rev_id": 1212578356, "in": [], "out": [ @@ -266028,7 +265524,7 @@ }, { "str": "walls", - "token_id": 30855, + "token_id": 30793, "o_rev_id": 1212578356, "in": [], "out": [ @@ -266037,7 +265533,7 @@ }, { "str": "floors", - "token_id": 30856, + "token_id": 30794, "o_rev_id": 1212578356, "in": [], "out": [ @@ -266046,7 +265542,7 @@ }, { "str": "and", - "token_id": 30857, + "token_id": 30795, "o_rev_id": 1212578356, "in": [], "out": [ @@ -266055,7 +265551,7 @@ }, { "str": "enemies", - "token_id": 30858, + "token_id": 30796, "o_rev_id": 1212578356, "in": [], "out": [ @@ -266064,7 +265560,7 @@ }, { "str": "[[", - "token_id": 30859, + "token_id": 30797, "o_rev_id": 1213267971, "in": [ 1216172427 @@ -266076,7 +265572,7 @@ }, { "str": "splatoon", - "token_id": 30860, + "token_id": 30798, "o_rev_id": 1213267971, "in": [ 1216172427 @@ -266088,7 +265584,7 @@ }, { "str": "3", - "token_id": 30861, + "token_id": 30799, "o_rev_id": 1213267971, "in": [ 1216172427 @@ -266100,7 +265596,7 @@ }, { "str": ":", - "token_id": 30862, + "token_id": 30800, "o_rev_id": 1213267971, "in": [ 1216172427 @@ -266112,7 +265608,7 @@ }, { "str": "|", - "token_id": 30863, + "token_id": 30801, "o_rev_id": 1213267971, "in": [ 1216172427 @@ -266124,7 +265620,7 @@ }, { "str": "side", - "token_id": 30864, + "token_id": 30802, "o_rev_id": 1213267971, "in": [ 1216172427 @@ -266136,7 +265632,7 @@ }, { "str": "order", - "token_id": 30865, + "token_id": 30803, "o_rev_id": 1213267971, "in": [ 1216172427 @@ -266148,7 +265644,7 @@ }, { "str": "]]", - "token_id": 30866, + "token_id": 30804, "o_rev_id": 1213267971, "in": [ 1216172427 @@ -266160,7 +265656,7 @@ }, { "str": "the", - "token_id": 30867, + "token_id": 30805, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266169,7 +265665,7 @@ }, { "str": "order", - "token_id": 30868, + "token_id": 30806, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266178,7 +265674,7 @@ }, { "str": "sector", - "token_id": 30869, + "token_id": 30807, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266187,7 +265683,7 @@ }, { "str": ",", - "token_id": 30870, + "token_id": 30808, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266196,7 +265692,7 @@ }, { "str": "an", - "token_id": 30871, + "token_id": 30809, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266205,7 +265701,7 @@ }, { "str": "alternate", - "token_id": 30872, + "token_id": 30810, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266214,7 +265710,7 @@ }, { "str": "world", - "token_id": 30873, + "token_id": 30811, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266223,7 +265719,7 @@ }, { "str": "based", - "token_id": 30874, + "token_id": 30812, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266232,7 +265728,7 @@ }, { "str": "on", - "token_id": 30875, + "token_id": 30813, "o_rev_id": 1213267971, "in": [], "out": [ @@ -266241,21 +265737,21 @@ }, { "str": "date", - "token_id": 30876, + "token_id": 30814, "o_rev_id": 1214944298, "in": [], "out": [] }, { "str": "=", - "token_id": 30877, + "token_id": 30815, "o_rev_id": 1214944298, "in": [], "out": [] }, { "str": "9", - "token_id": 30878, + "token_id": 30816, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266264,7 +265760,7 @@ }, { "str": "september", - "token_id": 30879, + "token_id": 30817, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266273,14 +265769,14 @@ }, { "str": "2022", - "token_id": 30880, + "token_id": 30818, "o_rev_id": 1214944298, "in": [], "out": [] }, { "str": "|", - "token_id": 30881, + "token_id": 30819, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266289,7 +265785,7 @@ }, { "str": "|", - "token_id": 30882, + "token_id": 30820, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266298,7 +265794,7 @@ }, { "str": "date", - "token_id": 30883, + "token_id": 30821, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266307,7 +265803,7 @@ }, { "str": "=", - "token_id": 30884, + "token_id": 30822, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266316,7 +265812,7 @@ }, { "str": "27", - "token_id": 30885, + "token_id": 30823, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266325,7 +265821,7 @@ }, { "str": "february", - "token_id": 30886, + "token_id": 30824, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266334,7 +265830,7 @@ }, { "str": "2023", - "token_id": 30887, + "token_id": 30825, "o_rev_id": 1214944298, "in": [], "out": [ @@ -266343,7 +265839,7 @@ }, { "str": "72", - "token_id": 30888, + "token_id": 30826, "o_rev_id": 1215268981, "in": [], "out": [ @@ -266352,14 +265848,14 @@ }, { "str": "and", - "token_id": 30889, + "token_id": 30827, "o_rev_id": 1215268981, "in": [], "out": [] }, { "str": "and", - "token_id": 30890, + "token_id": 30828, "o_rev_id": 1215268981, "in": [], "out": [ @@ -266368,35 +265864,35 @@ }, { "str": "their", - "token_id": 30891, + "token_id": 30829, "o_rev_id": 1215268981, "in": [], "out": [] }, { "str": "gauge", - "token_id": 30892, + "token_id": 30830, "o_rev_id": 1215268981, "in": [], "out": [] }, { "str": "to", - "token_id": 30893, + "token_id": 30831, "o_rev_id": 1215268981, "in": [], "out": [] }, { "str": "deploy", - "token_id": 30894, + "token_id": 30832, "o_rev_id": 1215268981, "in": [], "out": [] }, { "str": "the", - "token_id": 30895, + "token_id": 30833, "o_rev_id": 1215268981, "in": [], "out": [ @@ -266405,7 +265901,7 @@ }, { "str": "special", - "token_id": 30896, + "token_id": 30834, "o_rev_id": 1215268981, "in": [], "out": [ @@ -266414,7 +265910,7 @@ }, { "str": "|", - "token_id": 30897, + "token_id": 30835, "o_rev_id": 1215559780, "in": [], "out": [ @@ -266423,14 +265919,14 @@ }, { "str": "king", - "token_id": 30898, + "token_id": 30836, "o_rev_id": 1215559780, "in": [], "out": [] }, { "str": "salmonoid", - "token_id": 30899, + "token_id": 30837, "o_rev_id": 1215559780, "in": [], "out": [ @@ -266439,21 +265935,21 @@ }, { "str": "|", - "token_id": 30900, + "token_id": 30838, "o_rev_id": 1215589245, "in": [], "out": [] }, { "str": "salmonid", - "token_id": 30901, + "token_id": 30839, "o_rev_id": 1215589245, "in": [], "out": [] }, { "str": "mayonnaise", - "token_id": 30902, + "token_id": 30840, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266462,7 +265958,7 @@ }, { "str": "for", - "token_id": 30903, + "token_id": 30841, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266471,7 +265967,7 @@ }, { "str": "some", - "token_id": 30904, + "token_id": 30842, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266480,7 +265976,7 @@ }, { "str": "reason", - "token_id": 30905, + "token_id": 30843, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266489,7 +265985,7 @@ }, { "str": "everyone", - "token_id": 30906, + "token_id": 30844, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266498,7 +265994,7 @@ }, { "str": "who", - "token_id": 30907, + "token_id": 30845, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266507,7 +266003,7 @@ }, { "str": "worked", - "token_id": 30908, + "token_id": 30846, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266516,7 +266012,7 @@ }, { "str": "on", - "token_id": 30909, + "token_id": 30847, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266525,7 +266021,7 @@ }, { "str": "splatoon", - "token_id": 30910, + "token_id": 30848, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266534,7 +266030,7 @@ }, { "str": "loves", - "token_id": 30911, + "token_id": 30849, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266543,7 +266039,7 @@ }, { "str": "mayonnaise", - "token_id": 30912, + "token_id": 30850, "o_rev_id": 1215941345, "in": [], "out": [ @@ -266552,7 +266048,7 @@ }, { "str": "octoling", - "token_id": 30913, + "token_id": 30851, "o_rev_id": 1216172128, "in": [], "out": [ @@ -266561,7 +266057,7 @@ }, { "str": ".", - "token_id": 30914, + "token_id": 30852, "o_rev_id": 1216172128, "in": [], "out": [ @@ -266570,7 +266066,7 @@ }, { "str": "fight", - "token_id": 30915, + "token_id": 30853, "o_rev_id": 1216172128, "in": [], "out": [ @@ -266579,7 +266075,7 @@ }, { "str": "dlc", - "token_id": 30916, + "token_id": 30854, "o_rev_id": 1216172128, "in": [], "out": [ @@ -266588,7 +266084,7 @@ }, { "str": "pow", - "token_id": 30917, + "token_id": 30855, "o_rev_id": 1216172128, "in": [], "out": [ @@ -266597,7 +266093,7 @@ }, { "str": "pow", - "token_id": 30918, + "token_id": 30856, "o_rev_id": 1216172128, "in": [], "out": [ @@ -266606,7 +266102,7 @@ }, { "str": "pearlina", - "token_id": 30919, + "token_id": 30857, "o_rev_id": 1216172416, "in": [], "out": [ @@ -266615,7 +266111,7 @@ }, { "str": "rusty", - "token_id": 30920, + "token_id": 30858, "o_rev_id": 1216291118, "in": [], "out": [ @@ -266624,7 +266120,7 @@ }, { "str": "|", - "token_id": 30921, + "token_id": 30859, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266633,7 +266129,7 @@ }, { "str": "a", - "token_id": 30922, + "token_id": 30860, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266642,7 +266138,7 @@ }, { "str": "communication", - "token_id": 30923, + "token_id": 30861, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266651,7 +266147,7 @@ }, { "str": "error", - "token_id": 30924, + "token_id": 30862, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266660,7 +266156,7 @@ }, { "str": "has", - "token_id": 30925, + "token_id": 30863, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266669,7 +266165,7 @@ }, { "str": "occured", - "token_id": 30926, + "token_id": 30864, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266678,7 +266174,7 @@ }, { "str": ".", - "token_id": 30927, + "token_id": 30865, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266687,7 +266183,7 @@ }, { "str": "2", - "token_id": 30928, + "token_id": 30866, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266696,7 +266192,7 @@ }, { "str": "|", - "token_id": 30929, + "token_id": 30867, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266705,7 +266201,7 @@ }, { "str": "a", - "token_id": 30930, + "token_id": 30868, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266714,7 +266210,7 @@ }, { "str": "communication", - "token_id": 30931, + "token_id": 30869, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266723,7 +266219,7 @@ }, { "str": "error", - "token_id": 30932, + "token_id": 30870, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266732,7 +266228,7 @@ }, { "str": "has", - "token_id": 30933, + "token_id": 30871, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266741,7 +266237,7 @@ }, { "str": "occured", - "token_id": 30934, + "token_id": 30872, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266750,7 +266246,7 @@ }, { "str": ".", - "token_id": 30935, + "token_id": 30873, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266759,7 +266255,7 @@ }, { "str": "a", - "token_id": 30936, + "token_id": 30874, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266768,7 +266264,7 @@ }, { "str": "communication", - "token_id": 30937, + "token_id": 30875, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266777,7 +266273,7 @@ }, { "str": "error", - "token_id": 30938, + "token_id": 30876, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266786,7 +266282,7 @@ }, { "str": "has", - "token_id": 30939, + "token_id": 30877, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266795,7 +266291,7 @@ }, { "str": "occured", - "token_id": 30940, + "token_id": 30878, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266804,7 +266300,7 @@ }, { "str": ".", - "token_id": 30941, + "token_id": 30879, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266813,7 +266309,7 @@ }, { "str": "a", - "token_id": 30942, + "token_id": 30880, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266822,7 +266318,7 @@ }, { "str": "communication", - "token_id": 30943, + "token_id": 30881, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266831,7 +266327,7 @@ }, { "str": "error", - "token_id": 30944, + "token_id": 30882, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266840,7 +266336,7 @@ }, { "str": "has", - "token_id": 30945, + "token_id": 30883, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266849,7 +266345,7 @@ }, { "str": "occured", - "token_id": 30946, + "token_id": 30884, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266858,7 +266354,340 @@ }, { "str": ".", - "token_id": 30947, + "token_id": 30885, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "|", + "token_id": 30886, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30887, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30888, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30889, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30890, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30891, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30892, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30893, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30894, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30895, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30896, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30897, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30898, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30899, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30900, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30901, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30902, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30903, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30904, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30905, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30906, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30907, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30908, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30909, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30910, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30911, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30912, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30913, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30914, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30915, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30916, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30917, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30918, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30919, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30920, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30921, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30922, "o_rev_id": 1216767975, "in": [], "out": [ @@ -266867,6 +266696,231 @@ }, { "str": "|", + "token_id": 30923, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30924, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30925, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30926, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30927, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30928, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30929, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "2", + "token_id": 30930, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30931, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30932, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30933, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30934, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30935, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30936, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30937, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30938, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30939, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30940, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30941, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", + "token_id": 30942, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "a", + "token_id": 30943, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "communication", + "token_id": 30944, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "error", + "token_id": 30945, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "has", + "token_id": 30946, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": "occured", + "token_id": 30947, + "o_rev_id": 1216767975, + "in": [], + "out": [ + 1216768014 + ] + }, + { + "str": ".", "token_id": 30948, "o_rev_id": 1216767975, "in": [], @@ -266929,7 +266983,7 @@ ] }, { - "str": "a", + "str": "|", "token_id": 30955, "o_rev_id": 1216767975, "in": [], @@ -266938,7 +266992,7 @@ ] }, { - "str": "communication", + "str": "a", "token_id": 30956, "o_rev_id": 1216767975, "in": [], @@ -266947,7 +267001,7 @@ ] }, { - "str": "error", + "str": "communication", "token_id": 30957, "o_rev_id": 1216767975, "in": [], @@ -266956,7 +267010,7 @@ ] }, { - "str": "has", + "str": "error", "token_id": 30958, "o_rev_id": 1216767975, "in": [], @@ -266965,7 +267019,7 @@ ] }, { - "str": "occured", + "str": "has", "token_id": 30959, "o_rev_id": 1216767975, "in": [], @@ -266974,7 +267028,7 @@ ] }, { - "str": ".", + "str": "occured", "token_id": 30960, "o_rev_id": 1216767975, "in": [], @@ -266983,7 +267037,7 @@ ] }, { - "str": "a", + "str": ".", "token_id": 30961, "o_rev_id": 1216767975, "in": [], @@ -266992,7 +267046,7 @@ ] }, { - "str": "communication", + "str": "2", "token_id": 30962, "o_rev_id": 1216767975, "in": [], @@ -267001,7 +267055,7 @@ ] }, { - "str": "error", + "str": "a", "token_id": 30963, "o_rev_id": 1216767975, "in": [], @@ -267010,7 +267064,7 @@ ] }, { - "str": "has", + "str": "communication", "token_id": 30964, "o_rev_id": 1216767975, "in": [], @@ -267019,7 +267073,7 @@ ] }, { - "str": "occured", + "str": "error", "token_id": 30965, "o_rev_id": 1216767975, "in": [], @@ -267028,7 +267082,7 @@ ] }, { - "str": ".", + "str": "has", "token_id": 30966, "o_rev_id": 1216767975, "in": [], @@ -267037,7 +267091,7 @@ ] }, { - "str": "a", + "str": "occured", "token_id": 30967, "o_rev_id": 1216767975, "in": [], @@ -267046,7 +267100,7 @@ ] }, { - "str": "communication", + "str": ".", "token_id": 30968, "o_rev_id": 1216767975, "in": [], @@ -267055,7 +267109,7 @@ ] }, { - "str": "error", + "str": "a", "token_id": 30969, "o_rev_id": 1216767975, "in": [], @@ -267064,7 +267118,7 @@ ] }, { - "str": "has", + "str": "communication", "token_id": 30970, "o_rev_id": 1216767975, "in": [], @@ -267073,7 +267127,7 @@ ] }, { - "str": "occured", + "str": "error", "token_id": 30971, "o_rev_id": 1216767975, "in": [], @@ -267082,7 +267136,7 @@ ] }, { - "str": ".", + "str": "has", "token_id": 30972, "o_rev_id": 1216767975, "in": [], @@ -267091,7 +267145,7 @@ ] }, { - "str": "a", + "str": "occured", "token_id": 30973, "o_rev_id": 1216767975, "in": [], @@ -267100,7 +267154,7 @@ ] }, { - "str": "communication", + "str": ".", "token_id": 30974, "o_rev_id": 1216767975, "in": [], @@ -267109,7 +267163,7 @@ ] }, { - "str": "error", + "str": "a", "token_id": 30975, "o_rev_id": 1216767975, "in": [], @@ -267118,7 +267172,7 @@ ] }, { - "str": "has", + "str": "communication", "token_id": 30976, "o_rev_id": 1216767975, "in": [], @@ -267127,7 +267181,7 @@ ] }, { - "str": "occured", + "str": "error", "token_id": 30977, "o_rev_id": 1216767975, "in": [], @@ -267136,7 +267190,7 @@ ] }, { - "str": ".", + "str": "has", "token_id": 30978, "o_rev_id": 1216767975, "in": [], @@ -267145,7 +267199,7 @@ ] }, { - "str": "a", + "str": "occured", "token_id": 30979, "o_rev_id": 1216767975, "in": [], @@ -267154,7 +267208,7 @@ ] }, { - "str": "communication", + "str": ".", "token_id": 30980, "o_rev_id": 1216767975, "in": [], @@ -267163,7 +267217,7 @@ ] }, { - "str": "error", + "str": "a", "token_id": 30981, "o_rev_id": 1216767975, "in": [], @@ -267172,7 +267226,7 @@ ] }, { - "str": "has", + "str": "communication", "token_id": 30982, "o_rev_id": 1216767975, "in": [], @@ -267181,7 +267235,7 @@ ] }, { - "str": "occured", + "str": "error", "token_id": 30983, "o_rev_id": 1216767975, "in": [], @@ -267190,7 +267244,7 @@ ] }, { - "str": ".", + "str": "has", "token_id": 30984, "o_rev_id": 1216767975, "in": [], @@ -267199,7 +267253,7 @@ ] }, { - "str": "|", + "str": "occured", "token_id": 30985, "o_rev_id": 1216767975, "in": [], @@ -267208,7 +267262,7 @@ ] }, { - "str": "a", + "str": ".", "token_id": 30986, "o_rev_id": 1216767975, "in": [], @@ -267217,7 +267271,7 @@ ] }, { - "str": "communication", + "str": "a", "token_id": 30987, "o_rev_id": 1216767975, "in": [], @@ -267226,7 +267280,7 @@ ] }, { - "str": "error", + "str": "communication", "token_id": 30988, "o_rev_id": 1216767975, "in": [], @@ -267235,7 +267289,7 @@ ] }, { - "str": "has", + "str": "error", "token_id": 30989, "o_rev_id": 1216767975, "in": [], @@ -267244,7 +267298,7 @@ ] }, { - "str": "occured", + "str": "has", "token_id": 30990, "o_rev_id": 1216767975, "in": [], @@ -267253,7 +267307,7 @@ ] }, { - "str": ".", + "str": "occured", "token_id": 30991, "o_rev_id": 1216767975, "in": [], @@ -267262,7 +267316,7 @@ ] }, { - "str": "2", + "str": ".", "token_id": 30992, "o_rev_id": 1216767975, "in": [], @@ -267721,7 +267775,7 @@ ] }, { - "str": "a", + "str": "|", "token_id": 31043, "o_rev_id": 1216767975, "in": [], @@ -267730,7 +267784,7 @@ ] }, { - "str": "communication", + "str": "a", "token_id": 31044, "o_rev_id": 1216767975, "in": [], @@ -267739,7 +267793,7 @@ ] }, { - "str": "error", + "str": "communication", "token_id": 31045, "o_rev_id": 1216767975, "in": [], @@ -267748,7 +267802,7 @@ ] }, { - "str": "has", + "str": "error", "token_id": 31046, "o_rev_id": 1216767975, "in": [], @@ -267757,7 +267811,7 @@ ] }, { - "str": "occured", + "str": "has", "token_id": 31047, "o_rev_id": 1216767975, "in": [], @@ -267766,7 +267820,7 @@ ] }, { - "str": ".", + "str": "occured", "token_id": 31048, "o_rev_id": 1216767975, "in": [], @@ -267775,7 +267829,7 @@ ] }, { - "str": "a", + "str": ".", "token_id": 31049, "o_rev_id": 1216767975, "in": [], @@ -267784,7 +267838,7 @@ ] }, { - "str": "communication", + "str": "a", "token_id": 31050, "o_rev_id": 1216767975, "in": [], @@ -267793,7 +267847,7 @@ ] }, { - "str": "error", + "str": "communication", "token_id": 31051, "o_rev_id": 1216767975, "in": [], @@ -267802,7 +267856,7 @@ ] }, { - "str": "has", + "str": "error", "token_id": 31052, "o_rev_id": 1216767975, "in": [], @@ -267811,7 +267865,7 @@ ] }, { - "str": "occured", + "str": "has", "token_id": 31053, "o_rev_id": 1216767975, "in": [], @@ -267820,7 +267874,7 @@ ] }, { - "str": ".", + "str": "occured", "token_id": 31054, "o_rev_id": 1216767975, "in": [], @@ -267829,7 +267883,7 @@ ] }, { - "str": "a", + "str": ".", "token_id": 31055, "o_rev_id": 1216767975, "in": [], @@ -267838,7 +267892,7 @@ ] }, { - "str": "communication", + "str": "a", "token_id": 31056, "o_rev_id": 1216767975, "in": [], @@ -267847,7 +267901,7 @@ ] }, { - "str": "error", + "str": "communication", "token_id": 31057, "o_rev_id": 1216767975, "in": [], @@ -267856,7 +267910,7 @@ ] }, { - "str": "has", + "str": "error", "token_id": 31058, "o_rev_id": 1216767975, "in": [], @@ -267865,7 +267919,7 @@ ] }, { - "str": "occured", + "str": "has", "token_id": 31059, "o_rev_id": 1216767975, "in": [], @@ -267874,7 +267928,7 @@ ] }, { - "str": ".", + "str": "occured", "token_id": 31060, "o_rev_id": 1216767975, "in": [], @@ -267883,7 +267937,7 @@ ] }, { - "str": "a", + "str": ".", "token_id": 31061, "o_rev_id": 1216767975, "in": [], @@ -267892,7 +267946,7 @@ ] }, { - "str": "communication", + "str": "a", "token_id": 31062, "o_rev_id": 1216767975, "in": [], @@ -267901,7 +267955,7 @@ ] }, { - "str": "error", + "str": "communication", "token_id": 31063, "o_rev_id": 1216767975, "in": [], @@ -267910,7 +267964,7 @@ ] }, { - "str": "has", + "str": "error", "token_id": 31064, "o_rev_id": 1216767975, "in": [], @@ -267919,7 +267973,7 @@ ] }, { - "str": "occured", + "str": "has", "token_id": 31065, "o_rev_id": 1216767975, "in": [], @@ -267928,7 +267982,7 @@ ] }, { - "str": ".", + "str": "occured", "token_id": 31066, "o_rev_id": 1216767975, "in": [], @@ -267937,7 +267991,7 @@ ] }, { - "str": "a", + "str": ".", "token_id": 31067, "o_rev_id": 1216767975, "in": [], @@ -267946,7 +268000,7 @@ ] }, { - "str": "communication", + "str": "octo", "token_id": 31068, "o_rev_id": 1216767975, "in": [], @@ -267955,7 +268009,7 @@ ] }, { - "str": "error", + "str": "expansion", "token_id": 31069, "o_rev_id": 1216767975, "in": [], @@ -267964,7 +268018,7 @@ ] }, { - "str": "has", + "str": "|", "token_id": 31070, "o_rev_id": 1216767975, "in": [], @@ -267973,7 +268027,7 @@ ] }, { - "str": "occured", + "str": "a", "token_id": 31071, "o_rev_id": 1216767975, "in": [], @@ -267982,7 +268036,7 @@ ] }, { - "str": ".", + "str": "communication", "token_id": 31072, "o_rev_id": 1216767975, "in": [], @@ -267991,7 +268045,7 @@ ] }, { - "str": "a", + "str": "error", "token_id": 31073, "o_rev_id": 1216767975, "in": [], @@ -268000,7 +268054,7 @@ ] }, { - "str": "communication", + "str": "has", "token_id": 31074, "o_rev_id": 1216767975, "in": [], @@ -268009,7 +268063,7 @@ ] }, { - "str": "error", + "str": "occured", "token_id": 31075, "o_rev_id": 1216767975, "in": [], @@ -268018,7 +268072,7 @@ ] }, { - "str": "has", + "str": ".", "token_id": 31076, "o_rev_id": 1216767975, "in": [], @@ -268027,7 +268081,7 @@ ] }, { - "str": "occured", + "str": "2", "token_id": 31077, "o_rev_id": 1216767975, "in": [], @@ -268036,7 +268090,7 @@ ] }, { - "str": ".", + "str": ":", "token_id": 31078, "o_rev_id": 1216767975, "in": [], @@ -268045,7 +268099,7 @@ ] }, { - "str": "|", + "str": "a", "token_id": 31079, "o_rev_id": 1216767975, "in": [], @@ -268054,7 +268108,7 @@ ] }, { - "str": "a", + "str": "communication", "token_id": 31080, "o_rev_id": 1216767975, "in": [], @@ -268063,7 +268117,7 @@ ] }, { - "str": "communication", + "str": "error", "token_id": 31081, "o_rev_id": 1216767975, "in": [], @@ -268072,7 +268126,7 @@ ] }, { - "str": "error", + "str": "has", "token_id": 31082, "o_rev_id": 1216767975, "in": [], @@ -268081,7 +268135,7 @@ ] }, { - "str": "has", + "str": "occured", "token_id": 31083, "o_rev_id": 1216767975, "in": [], @@ -268090,7 +268144,7 @@ ] }, { - "str": "occured", + "str": ".", "token_id": 31084, "o_rev_id": 1216767975, "in": [], @@ -268099,7 +268153,7 @@ ] }, { - "str": ".", + "str": "a", "token_id": 31085, "o_rev_id": 1216767975, "in": [], @@ -268108,7 +268162,7 @@ ] }, { - "str": "2", + "str": "communication", "token_id": 31086, "o_rev_id": 1216767975, "in": [], @@ -268117,7 +268171,7 @@ ] }, { - "str": "a", + "str": "error", "token_id": 31087, "o_rev_id": 1216767975, "in": [], @@ -268126,7 +268180,7 @@ ] }, { - "str": "communication", + "str": "has", "token_id": 31088, "o_rev_id": 1216767975, "in": [], @@ -268135,7 +268189,7 @@ ] }, { - "str": "error", + "str": "occured", "token_id": 31089, "o_rev_id": 1216767975, "in": [], @@ -268144,7 +268198,7 @@ ] }, { - "str": "has", + "str": ".", "token_id": 31090, "o_rev_id": 1216767975, "in": [], @@ -268153,7 +268207,7 @@ ] }, { - "str": "occured", + "str": "a", "token_id": 31091, "o_rev_id": 1216767975, "in": [], @@ -268162,7 +268216,7 @@ ] }, { - "str": ".", + "str": "communication", "token_id": 31092, "o_rev_id": 1216767975, "in": [], @@ -268171,7 +268225,7 @@ ] }, { - "str": "a", + "str": "error", "token_id": 31093, "o_rev_id": 1216767975, "in": [], @@ -268180,7 +268234,7 @@ ] }, { - "str": "communication", + "str": "has", "token_id": 31094, "o_rev_id": 1216767975, "in": [], @@ -268189,7 +268243,7 @@ ] }, { - "str": "error", + "str": "occured", "token_id": 31095, "o_rev_id": 1216767975, "in": [], @@ -268198,7 +268252,7 @@ ] }, { - "str": "has", + "str": ".", "token_id": 31096, "o_rev_id": 1216767975, "in": [], @@ -268207,7 +268261,7 @@ ] }, { - "str": "occured", + "str": "a", "token_id": 31097, "o_rev_id": 1216767975, "in": [], @@ -268216,7 +268270,7 @@ ] }, { - "str": ".", + "str": "communication", "token_id": 31098, "o_rev_id": 1216767975, "in": [], @@ -268225,7 +268279,7 @@ ] }, { - "str": "a", + "str": "error", "token_id": 31099, "o_rev_id": 1216767975, "in": [], @@ -268234,7 +268288,7 @@ ] }, { - "str": "communication", + "str": "has", "token_id": 31100, "o_rev_id": 1216767975, "in": [], @@ -268243,7 +268297,7 @@ ] }, { - "str": "error", + "str": "occured", "token_id": 31101, "o_rev_id": 1216767975, "in": [], @@ -268252,7 +268306,7 @@ ] }, { - "str": "has", + "str": ".", "token_id": 31102, "o_rev_id": 1216767975, "in": [], @@ -268261,7 +268315,7 @@ ] }, { - "str": "occured", + "str": "a", "token_id": 31103, "o_rev_id": 1216767975, "in": [], @@ -268270,7 +268324,7 @@ ] }, { - "str": ".", + "str": "communication", "token_id": 31104, "o_rev_id": 1216767975, "in": [], @@ -268279,7 +268333,7 @@ ] }, { - "str": "|", + "str": "error", "token_id": 31105, "o_rev_id": 1216767975, "in": [], @@ -268288,7 +268342,7 @@ ] }, { - "str": "a", + "str": "has", "token_id": 31106, "o_rev_id": 1216767975, "in": [], @@ -268297,7 +268351,7 @@ ] }, { - "str": "communication", + "str": "occured", "token_id": 31107, "o_rev_id": 1216767975, "in": [], @@ -268306,7 +268360,7 @@ ] }, { - "str": "error", + "str": ".", "token_id": 31108, "o_rev_id": 1216767975, "in": [], @@ -268315,7 +268369,7 @@ ] }, { - "str": "has", + "str": "a", "token_id": 31109, "o_rev_id": 1216767975, "in": [], @@ -268324,7 +268378,7 @@ ] }, { - "str": "occured", + "str": "communication", "token_id": 31110, "o_rev_id": 1216767975, "in": [], @@ -268333,7 +268387,7 @@ ] }, { - "str": ".", + "str": "error", "token_id": 31111, "o_rev_id": 1216767975, "in": [], @@ -268342,7 +268396,7 @@ ] }, { - "str": "a", + "str": "has", "token_id": 31112, "o_rev_id": 1216767975, "in": [], @@ -268351,7 +268405,7 @@ ] }, { - "str": "communication", + "str": "occured", "token_id": 31113, "o_rev_id": 1216767975, "in": [], @@ -268360,7 +268414,7 @@ ] }, { - "str": "error", + "str": ".", "token_id": 31114, "o_rev_id": 1216767975, "in": [], @@ -268369,7 +268423,7 @@ ] }, { - "str": "has", + "str": "a", "token_id": 31115, "o_rev_id": 1216767975, "in": [], @@ -268378,7 +268432,7 @@ ] }, { - "str": "occured", + "str": "communication", "token_id": 31116, "o_rev_id": 1216767975, "in": [], @@ -268387,7 +268441,7 @@ ] }, { - "str": ".", + "str": "error", "token_id": 31117, "o_rev_id": 1216767975, "in": [], @@ -268396,7 +268450,7 @@ ] }, { - "str": "a", + "str": "has", "token_id": 31118, "o_rev_id": 1216767975, "in": [], @@ -268405,7 +268459,7 @@ ] }, { - "str": "communication", + "str": "occured", "token_id": 31119, "o_rev_id": 1216767975, "in": [], @@ -268414,7 +268468,7 @@ ] }, { - "str": "error", + "str": ".", "token_id": 31120, "o_rev_id": 1216767975, "in": [], @@ -268423,7 +268477,7 @@ ] }, { - "str": "has", + "str": "a", "token_id": 31121, "o_rev_id": 1216767975, "in": [], @@ -268432,7 +268486,7 @@ ] }, { - "str": "occured", + "str": "communication", "token_id": 31122, "o_rev_id": 1216767975, "in": [], @@ -268441,7 +268495,7 @@ ] }, { - "str": ".", + "str": "error", "token_id": 31123, "o_rev_id": 1216767975, "in": [], @@ -268450,7 +268504,7 @@ ] }, { - "str": "a", + "str": "has", "token_id": 31124, "o_rev_id": 1216767975, "in": [], @@ -268459,7 +268513,7 @@ ] }, { - "str": "communication", + "str": "occured", "token_id": 31125, "o_rev_id": 1216767975, "in": [], @@ -268468,7 +268522,7 @@ ] }, { - "str": "error", + "str": ".", "token_id": 31126, "o_rev_id": 1216767975, "in": [], @@ -268477,7 +268531,7 @@ ] }, { - "str": "has", + "str": "a", "token_id": 31127, "o_rev_id": 1216767975, "in": [], @@ -268486,7 +268540,7 @@ ] }, { - "str": "occured", + "str": "communication", "token_id": 31128, "o_rev_id": 1216767975, "in": [], @@ -268495,7 +268549,7 @@ ] }, { - "str": ".", + "str": "error", "token_id": 31129, "o_rev_id": 1216767975, "in": [], @@ -268504,7 +268558,7 @@ ] }, { - "str": "octo", + "str": "has", "token_id": 31130, "o_rev_id": 1216767975, "in": [], @@ -268513,7 +268567,7 @@ ] }, { - "str": "expansion", + "str": "occured", "token_id": 31131, "o_rev_id": 1216767975, "in": [], @@ -268522,7 +268576,7 @@ ] }, { - "str": "|", + "str": ".", "token_id": 31132, "o_rev_id": 1216767975, "in": [], @@ -268584,567 +268638,9 @@ 1216768014 ] }, - { - "str": "2", - "token_id": 31139, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ":", - "token_id": 31140, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31141, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31142, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31143, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31144, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31145, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31146, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31147, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31148, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31149, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31150, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31151, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31152, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31153, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31154, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31155, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31156, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31157, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31158, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31159, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31160, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31161, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31162, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31163, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31164, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31165, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31166, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31167, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31168, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31169, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31170, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31171, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31172, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31173, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31174, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31175, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31176, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31177, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31178, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31179, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31180, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31181, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31182, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31183, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31184, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31185, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31186, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31187, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31188, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31189, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31190, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31191, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31192, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31193, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31194, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "a", - "token_id": 31195, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "communication", - "token_id": 31196, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "error", - "token_id": 31197, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "has", - "token_id": 31198, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": "occured", - "token_id": 31199, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, - { - "str": ".", - "token_id": 31200, - "o_rev_id": 1216767975, - "in": [], - "out": [ - 1216768014 - ] - }, { "str": "a", - "token_id": 31201, + "token_id": 31139, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269153,7 +268649,7 @@ }, { "str": "communication", - "token_id": 31202, + "token_id": 31140, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269162,7 +268658,7 @@ }, { "str": "error", - "token_id": 31203, + "token_id": 31141, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269171,7 +268667,7 @@ }, { "str": "has", - "token_id": 31204, + "token_id": 31142, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269180,7 +268676,7 @@ }, { "str": "occured", - "token_id": 31205, + "token_id": 31143, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269189,7 +268685,7 @@ }, { "str": ".", - "token_id": 31206, + "token_id": 31144, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269198,7 +268694,7 @@ }, { "str": "a", - "token_id": 31207, + "token_id": 31145, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269207,7 +268703,7 @@ }, { "str": "communication", - "token_id": 31208, + "token_id": 31146, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269216,7 +268712,7 @@ }, { "str": "error", - "token_id": 31209, + "token_id": 31147, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269225,7 +268721,7 @@ }, { "str": "has", - "token_id": 31210, + "token_id": 31148, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269234,7 +268730,7 @@ }, { "str": "occured", - "token_id": 31211, + "token_id": 31149, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269243,7 +268739,7 @@ }, { "str": ".", - "token_id": 31212, + "token_id": 31150, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269252,7 +268748,7 @@ }, { "str": "a", - "token_id": 31213, + "token_id": 31151, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269261,7 +268757,7 @@ }, { "str": "communication", - "token_id": 31214, + "token_id": 31152, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269270,7 +268766,7 @@ }, { "str": "error", - "token_id": 31215, + "token_id": 31153, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269279,7 +268775,7 @@ }, { "str": "has", - "token_id": 31216, + "token_id": 31154, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269288,7 +268784,7 @@ }, { "str": "occured", - "token_id": 31217, + "token_id": 31155, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269297,7 +268793,7 @@ }, { "str": ".", - "token_id": 31218, + "token_id": 31156, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269306,7 +268802,7 @@ }, { "str": "a", - "token_id": 31219, + "token_id": 31157, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269315,7 +268811,7 @@ }, { "str": "communication", - "token_id": 31220, + "token_id": 31158, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269324,7 +268820,7 @@ }, { "str": "error", - "token_id": 31221, + "token_id": 31159, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269333,7 +268829,7 @@ }, { "str": "has", - "token_id": 31222, + "token_id": 31160, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269342,7 +268838,7 @@ }, { "str": "occured", - "token_id": 31223, + "token_id": 31161, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269351,7 +268847,7 @@ }, { "str": ".", - "token_id": 31224, + "token_id": 31162, "o_rev_id": 1216767975, "in": [], "out": [ @@ -269360,7 +268856,7 @@ }, { "str": "it", - "token_id": 31225, + "token_id": 31163, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269369,7 +268865,7 @@ }, { "str": "is", - "token_id": 31226, + "token_id": 31164, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269378,7 +268874,7 @@ }, { "str": "worth", - "token_id": 31227, + "token_id": 31165, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269387,7 +268883,7 @@ }, { "str": "noting", - "token_id": 31228, + "token_id": 31166, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269396,7 +268892,7 @@ }, { "str": "that", - "token_id": 31229, + "token_id": 31167, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269405,7 +268901,7 @@ }, { "str": "a", - "token_id": 31230, + "token_id": 31168, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269414,7 +268910,7 @@ }, { "str": "secret", - "token_id": 31231, + "token_id": 31169, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269423,7 +268919,7 @@ }, { "str": "level", - "token_id": 31232, + "token_id": 31170, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269432,7 +268928,7 @@ }, { "str": "appears", - "token_id": 31233, + "token_id": 31171, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269441,7 +268937,7 @@ }, { "str": "at", - "token_id": 31234, + "token_id": 31172, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269450,7 +268946,7 @@ }, { "str": "the", - "token_id": 31235, + "token_id": 31173, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269459,7 +268955,7 @@ }, { "str": "start", - "token_id": 31236, + "token_id": 31174, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269468,7 +268964,7 @@ }, { "str": "titled", - "token_id": 31237, + "token_id": 31175, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269477,7 +268973,7 @@ }, { "str": "\"", - "token_id": 31238, + "token_id": 31176, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269486,7 +268982,7 @@ }, { "str": "after", - "token_id": 31239, + "token_id": 31177, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269495,7 +268991,7 @@ }, { "str": "alterna", - "token_id": 31240, + "token_id": 31178, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269504,7 +269000,7 @@ }, { "str": "\"", - "token_id": 31241, + "token_id": 31179, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269513,7 +269009,7 @@ }, { "str": "if", - "token_id": 31242, + "token_id": 31180, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269522,7 +269018,7 @@ }, { "str": "you", - "token_id": 31243, + "token_id": 31181, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269531,7 +269027,7 @@ }, { "str": "complete", - "token_id": 31244, + "token_id": 31182, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269540,7 +269036,7 @@ }, { "str": "all", - "token_id": 31245, + "token_id": 31183, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269549,7 +269045,7 @@ }, { "str": "the", - "token_id": 31246, + "token_id": 31184, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269558,7 +269054,7 @@ }, { "str": "levels", - "token_id": 31247, + "token_id": 31185, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269567,7 +269063,7 @@ }, { "str": ".", - "token_id": 31248, + "token_id": 31186, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269576,7 +269072,7 @@ }, { "str": "you", - "token_id": 31249, + "token_id": 31187, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269585,7 +269081,7 @@ }, { "str": "do", - "token_id": 31250, + "token_id": 31188, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269594,7 +269090,7 @@ }, { "str": "not", - "token_id": 31251, + "token_id": 31189, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269603,7 +269099,7 @@ }, { "str": "need", - "token_id": 31252, + "token_id": 31190, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269612,7 +269108,7 @@ }, { "str": "to", - "token_id": 31253, + "token_id": 31191, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269621,7 +269117,7 @@ }, { "str": "complete", - "token_id": 31254, + "token_id": 31192, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269630,7 +269126,7 @@ }, { "str": "all", - "token_id": 31255, + "token_id": 31193, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269639,7 +269135,7 @@ }, { "str": "levels", - "token_id": 31256, + "token_id": 31194, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269648,7 +269144,7 @@ }, { "str": "with", - "token_id": 31257, + "token_id": 31195, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269657,7 +269153,7 @@ }, { "str": "all", - "token_id": 31258, + "token_id": 31196, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269666,7 +269162,7 @@ }, { "str": "weapons", - "token_id": 31259, + "token_id": 31197, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269675,7 +269171,7 @@ }, { "str": "available", - "token_id": 31260, + "token_id": 31198, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269684,7 +269180,7 @@ }, { "str": ",", - "token_id": 31261, + "token_id": 31199, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269693,7 +269189,7 @@ }, { "str": "just", - "token_id": 31262, + "token_id": 31200, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269702,7 +269198,7 @@ }, { "str": "the", - "token_id": 31263, + "token_id": 31201, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269711,7 +269207,7 @@ }, { "str": "levels", - "token_id": 31264, + "token_id": 31202, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269720,7 +269216,7 @@ }, { "str": ".", - "token_id": 31265, + "token_id": 31203, "o_rev_id": 1217072405, "in": [], "out": [ @@ -269729,119 +269225,119 @@ }, { "str": "both", - "token_id": 31266, + "token_id": 31204, "o_rev_id": 1221392079, "in": [], "out": [] }, { "str": "-", - "token_id": 31267, + "token_id": 31205, "o_rev_id": 1221392079, "in": [], "out": [] }, { "str": "firing", - "token_id": 31268, + "token_id": 31206, "o_rev_id": 1221392079, "in": [], "out": [] }, { "str": "weapons", - "token_id": 31269, + "token_id": 31207, "o_rev_id": 1221392079, "in": [], "out": [] }, { "str": "march", - "token_id": 31270, + "token_id": 31208, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "2024", - "token_id": 31271, + "token_id": 31209, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "96", - "token_id": 31272, + "token_id": 31210, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "march", - "token_id": 31273, + "token_id": 31211, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "2024", - "token_id": 31274, + "token_id": 31212, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "240507", - "token_id": 31275, + "token_id": 31213, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "may", - "token_id": 31276, + "token_id": 31214, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "2024", - "token_id": 31277, + "token_id": 31215, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "may", - "token_id": 31278, + "token_id": 31216, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "20240507081558", - "token_id": 31279, + "token_id": 31217, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "240507", - "token_id": 31280, + "token_id": 31218, "o_rev_id": 1222725383, "in": [], "out": [] }, { "str": "agent", - "token_id": 31281, + "token_id": 31219, "o_rev_id": 1223667763, "in": [], "out": [] }, { "str": "eight", - "token_id": 31282, + "token_id": 31220, "o_rev_id": 1223667763, "in": [], "out": [ @@ -269850,14 +269346,14 @@ }, { "str": ",", - "token_id": 31283, + "token_id": 31221, "o_rev_id": 1223667763, "in": [], "out": [] }, { "str": "it", - "token_id": 31284, + "token_id": 31222, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269866,7 +269362,7 @@ }, { "str": "also", - "token_id": 31285, + "token_id": 31223, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269875,7 +269371,7 @@ }, { "str": "received", - "token_id": 31286, + "token_id": 31224, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269884,7 +269380,7 @@ }, { "str": "mixed", - "token_id": 31287, + "token_id": 31225, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269893,7 +269389,7 @@ }, { "str": "reviews", - "token_id": 31288, + "token_id": 31226, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269902,7 +269398,7 @@ }, { "str": "from", - "token_id": 31289, + "token_id": 31227, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269911,7 +269407,7 @@ }, { "str": "users", - "token_id": 31290, + "token_id": 31228, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269920,7 +269416,7 @@ }, { "str": "on", - "token_id": 31291, + "token_id": 31229, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269929,7 +269425,7 @@ }, { "str": "metacritic", - "token_id": 31292, + "token_id": 31230, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269938,7 +269434,7 @@ }, { "str": "for", - "token_id": 31293, + "token_id": 31231, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269947,7 +269443,7 @@ }, { "str": "the", - "token_id": 31294, + "token_id": 31232, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269956,7 +269452,7 @@ }, { "str": "same", - "token_id": 31295, + "token_id": 31233, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269965,7 +269461,7 @@ }, { "str": "reasons", - "token_id": 31296, + "token_id": 31234, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269974,7 +269470,7 @@ }, { "str": ".", - "token_id": 31297, + "token_id": 31235, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269983,7 +269479,7 @@ }, { "str": "<", - "token_id": 31298, + "token_id": 31236, "o_rev_id": 1225856118, "in": [], "out": [ @@ -269992,7 +269488,7 @@ }, { "str": "ref", - "token_id": 31299, + "token_id": 31237, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270001,7 +269497,7 @@ }, { "str": ">", - "token_id": 31300, + "token_id": 31238, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270010,7 +269506,7 @@ }, { "str": "{", - "token_id": 31301, + "token_id": 31239, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270019,7 +269515,7 @@ }, { "str": "{", - "token_id": 31302, + "token_id": 31240, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270028,7 +269524,7 @@ }, { "str": "|", - "token_id": 31303, + "token_id": 31241, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270037,7 +269533,7 @@ }, { "str": "url", - "token_id": 31304, + "token_id": 31242, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270046,7 +269542,7 @@ }, { "str": "=", - "token_id": 31305, + "token_id": 31243, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270055,7 +269551,7 @@ }, { "str": "https", - "token_id": 31306, + "token_id": 31244, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270064,7 +269560,7 @@ }, { "str": ":", - "token_id": 31307, + "token_id": 31245, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270073,7 +269569,7 @@ }, { "str": "/", - "token_id": 31308, + "token_id": 31246, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270082,7 +269578,7 @@ }, { "str": "/", - "token_id": 31309, + "token_id": 31247, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270091,7 +269587,7 @@ }, { "str": "www", - "token_id": 31310, + "token_id": 31248, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270100,7 +269596,7 @@ }, { "str": ".", - "token_id": 31311, + "token_id": 31249, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270109,7 +269605,7 @@ }, { "str": "metacritic", - "token_id": 31312, + "token_id": 31250, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270118,7 +269614,7 @@ }, { "str": ".", - "token_id": 31313, + "token_id": 31251, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270127,7 +269623,7 @@ }, { "str": "com", - "token_id": 31314, + "token_id": 31252, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270136,7 +269632,7 @@ }, { "str": "/", - "token_id": 31315, + "token_id": 31253, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270145,7 +269641,7 @@ }, { "str": "game", - "token_id": 31316, + "token_id": 31254, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270154,7 +269650,7 @@ }, { "str": "/", - "token_id": 31317, + "token_id": 31255, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270163,7 +269659,7 @@ }, { "str": "splatoon", - "token_id": 31318, + "token_id": 31256, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270172,7 +269668,7 @@ }, { "str": "-", - "token_id": 31319, + "token_id": 31257, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270181,7 +269677,7 @@ }, { "str": "3", - "token_id": 31320, + "token_id": 31258, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270190,7 +269686,7 @@ }, { "str": "/", - "token_id": 31321, + "token_id": 31259, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270199,7 +269695,7 @@ }, { "str": "user", - "token_id": 31322, + "token_id": 31260, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270208,7 +269704,7 @@ }, { "str": "-", - "token_id": 31323, + "token_id": 31261, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270217,7 +269713,7 @@ }, { "str": "reviews", - "token_id": 31324, + "token_id": 31262, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270226,7 +269722,7 @@ }, { "str": "/", - "token_id": 31325, + "token_id": 31263, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270235,7 +269731,7 @@ }, { "str": "?", - "token_id": 31326, + "token_id": 31264, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270244,7 +269740,7 @@ }, { "str": "platform", - "token_id": 31327, + "token_id": 31265, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270253,7 +269749,7 @@ }, { "str": "=", - "token_id": 31328, + "token_id": 31266, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270262,7 +269758,7 @@ }, { "str": "nintendo", - "token_id": 31329, + "token_id": 31267, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270271,7 +269767,7 @@ }, { "str": "-", - "token_id": 31330, + "token_id": 31268, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270280,7 +269776,7 @@ }, { "str": "switch", - "token_id": 31331, + "token_id": 31269, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270289,7 +269785,7 @@ }, { "str": "}}", - "token_id": 31332, + "token_id": 31270, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270298,7 +269794,7 @@ }, { "str": "<", - "token_id": 31333, + "token_id": 31271, "o_rev_id": 1225856118, "in": [], "out": [ @@ -270307,7 +269803,7 @@ }, { "str": "from", - "token_id": 31334, + "token_id": 31272, "o_rev_id": 1225856679, "in": [], "out": [ @@ -270316,7 +269812,7 @@ }, { "str": "critics", - "token_id": 31335, + "token_id": 31273, "o_rev_id": 1225856679, "in": [], "out": [ @@ -270325,154 +269821,154 @@ }, { "str": "[[", - "token_id": 31336, + "token_id": 31274, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "category", - "token_id": 31337, + "token_id": 31275, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": ":", - "token_id": 31338, + "token_id": 31276, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "video", - "token_id": 31339, + "token_id": 31277, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "games", - "token_id": 31340, + "token_id": 31278, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "scored", - "token_id": 31341, + "token_id": 31279, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "by", - "token_id": 31342, + "token_id": 31280, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "ryo", - "token_id": 31343, + "token_id": 31281, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "nagamatsu", - "token_id": 31344, + "token_id": 31282, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "]]", - "token_id": 31345, + "token_id": 31283, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "[[", - "token_id": 31346, + "token_id": 31284, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "category", - "token_id": 31347, + "token_id": 31285, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": ":", - "token_id": 31348, + "token_id": 31286, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "video", - "token_id": 31349, + "token_id": 31287, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "games", - "token_id": 31350, + "token_id": 31288, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "scored", - "token_id": 31351, + "token_id": 31289, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "by", - "token_id": 31352, + "token_id": 31290, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "toru", - "token_id": 31353, + "token_id": 31291, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "minegishi", - "token_id": 31354, + "token_id": 31292, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "]]", - "token_id": 31355, + "token_id": 31293, "o_rev_id": 1226638805, "in": [], "out": [] }, { "str": "was", - "token_id": 31356, + "token_id": 31294, "o_rev_id": 1226769631, "in": [], "out": [] }, { "str": "22", - "token_id": 31357, + "token_id": 31295, "o_rev_id": 1226769631, "in": [], "out": [ @@ -270481,14 +269977,14 @@ }, { "str": "22", - "token_id": 31358, + "token_id": 31296, "o_rev_id": 1226769735, "in": [], "out": [] }, { "str": "and", - "token_id": 31359, + "token_id": 31297, "o_rev_id": 1227326452, "in": [], "out": [ @@ -270497,7 +269993,7 @@ }, { "str": "it", - "token_id": 31360, + "token_id": 31298, "o_rev_id": 1227326452, "in": [], "out": [ @@ -270506,7 +270002,7 @@ }, { "str": "'", - "token_id": 31361, + "token_id": 31299, "o_rev_id": 1227326452, "in": [], "out": [ @@ -270515,7 +270011,7 @@ }, { "str": "s", - "token_id": 31362, + "token_id": 31300, "o_rev_id": 1227326452, "in": [], "out": [ @@ -270524,7 +270020,7 @@ }, { "str": "but", - "token_id": 31363, + "token_id": 31301, "o_rev_id": 1227326452, "in": [], "out": [ @@ -270533,7 +270029,7 @@ }, { "str": "an", - "token_id": 31364, + "token_id": 31302, "o_rev_id": 1229377490, "in": [], "out": [ @@ -270542,7 +270038,7 @@ }, { "str": "on", - "token_id": 31365, + "token_id": 31303, "o_rev_id": 1229425226, "in": [ 1234495499 @@ -270553,7 +270049,7 @@ }, { "str": "overwriting", - "token_id": 31366, + "token_id": 31304, "o_rev_id": 1229425226, "in": [ 1234495499 @@ -270564,7 +270060,7 @@ }, { "str": "is", - "token_id": 31367, + "token_id": 31305, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270573,7 +270069,7 @@ }, { "str": "an", - "token_id": 31368, + "token_id": 31306, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270582,7 +270078,7 @@ }, { "str": "called", - "token_id": 31369, + "token_id": 31307, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270591,7 +270087,7 @@ }, { "str": "(", - "token_id": 31370, + "token_id": 31308, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270600,7 +270096,7 @@ }, { "str": ")", - "token_id": 31371, + "token_id": 31309, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270609,7 +270105,7 @@ }, { "str": "opponent", - "token_id": 31372, + "token_id": 31310, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270618,7 +270114,7 @@ }, { "str": "'", - "token_id": 31373, + "token_id": 31311, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270627,7 +270123,7 @@ }, { "str": "s", - "token_id": 31374, + "token_id": 31312, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270636,7 +270132,7 @@ }, { "str": ",", - "token_id": 31375, + "token_id": 31313, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270645,7 +270141,7 @@ }, { "str": "or", - "token_id": 31376, + "token_id": 31314, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270654,7 +270150,7 @@ }, { "str": "defending", - "token_id": 31377, + "token_id": 31315, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270663,7 +270159,7 @@ }, { "str": "against", - "token_id": 31378, + "token_id": 31316, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270672,7 +270168,7 @@ }, { "str": "can", - "token_id": 31379, + "token_id": 31317, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270681,7 +270177,7 @@ }, { "str": "and", - "token_id": 31380, + "token_id": 31318, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270690,7 +270186,7 @@ }, { "str": "position", - "token_id": 31381, + "token_id": 31319, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270699,7 +270195,7 @@ }, { "str": "modes", - "token_id": 31382, + "token_id": 31320, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270708,7 +270204,7 @@ }, { "str": "is", - "token_id": 31383, + "token_id": 31321, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270717,7 +270213,7 @@ }, { "str": ".", - "token_id": 31384, + "token_id": 31322, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270726,7 +270222,7 @@ }, { "str": "a", - "token_id": 31385, + "token_id": 31323, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270735,7 +270231,7 @@ }, { "str": ",", - "token_id": 31386, + "token_id": 31324, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270744,7 +270240,7 @@ }, { "str": "similar", - "token_id": 31387, + "token_id": 31325, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270753,7 +270249,7 @@ }, { "str": "towards", - "token_id": 31388, + "token_id": 31326, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270762,7 +270258,7 @@ }, { "str": "the", - "token_id": 31389, + "token_id": 31327, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270771,7 +270267,7 @@ }, { "str": "opponent", - "token_id": 31390, + "token_id": 31328, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270780,7 +270276,7 @@ }, { "str": "side", - "token_id": 31391, + "token_id": 31329, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270789,7 +270285,7 @@ }, { "str": "of", - "token_id": 31392, + "token_id": 31330, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270798,7 +270294,7 @@ }, { "str": "the", - "token_id": 31393, + "token_id": 31331, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270807,7 +270303,7 @@ }, { "str": "map", - "token_id": 31394, + "token_id": 31332, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270816,7 +270312,7 @@ }, { "str": "clearing", - "token_id": 31395, + "token_id": 31333, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270825,7 +270321,7 @@ }, { "str": "|", - "token_id": 31396, + "token_id": 31334, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270834,7 +270330,7 @@ }, { "str": "checkpoints", - "token_id": 31397, + "token_id": 31335, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270843,7 +270339,7 @@ }, { "str": "to", - "token_id": 31398, + "token_id": 31336, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270852,7 +270348,7 @@ }, { "str": "reach", - "token_id": 31399, + "token_id": 31337, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270861,7 +270357,7 @@ }, { "str": "the", - "token_id": 31400, + "token_id": 31338, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270870,7 +270366,7 @@ }, { "str": "team", - "token_id": 31401, + "token_id": 31339, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270879,7 +270375,7 @@ }, { "str": "'", - "token_id": 31402, + "token_id": 31340, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270888,7 +270384,7 @@ }, { "str": "similar", - "token_id": 31403, + "token_id": 31341, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270897,7 +270393,7 @@ }, { "str": "defend", - "token_id": 31404, + "token_id": 31342, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270906,7 +270402,7 @@ }, { "str": "the", - "token_id": 31405, + "token_id": 31343, "o_rev_id": 1229561066, "in": [], "out": [ @@ -270915,7 +270411,7 @@ }, { "str": "such", - "token_id": 31406, + "token_id": 31344, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270924,7 +270420,7 @@ }, { "str": "as", - "token_id": 31407, + "token_id": 31345, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270933,7 +270429,7 @@ }, { "str": "the", - "token_id": 31408, + "token_id": 31346, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270942,7 +270438,7 @@ }, { "str": "magnificent", - "token_id": 31409, + "token_id": 31347, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270951,7 +270447,7 @@ }, { "str": "glooga", - "token_id": 31410, + "token_id": 31348, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270960,7 +270456,7 @@ }, { "str": "dualies", - "token_id": 31411, + "token_id": 31349, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270969,7 +270465,7 @@ }, { "str": ",", - "token_id": 31412, + "token_id": 31350, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270978,7 +270474,7 @@ }, { "str": "which", - "token_id": 31413, + "token_id": 31351, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270987,7 +270483,7 @@ }, { "str": "were", - "token_id": 31414, + "token_id": 31352, "o_rev_id": 1231129517, "in": [], "out": [ @@ -270996,7 +270492,7 @@ }, { "str": "first", - "token_id": 31415, + "token_id": 31353, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271005,7 +270501,7 @@ }, { "str": "introduced", - "token_id": 31416, + "token_id": 31354, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271014,7 +270510,7 @@ }, { "str": "in", - "token_id": 31417, + "token_id": 31355, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271023,7 +270519,7 @@ }, { "str": "the", - "token_id": 31418, + "token_id": 31356, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271032,7 +270528,7 @@ }, { "str": "second", - "token_id": 31419, + "token_id": 31357, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271041,7 +270537,7 @@ }, { "str": "instalment", - "token_id": 31420, + "token_id": 31358, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271050,7 +270546,7 @@ }, { "str": "in", - "token_id": 31421, + "token_id": 31359, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271059,7 +270555,7 @@ }, { "str": "the", - "token_id": 31422, + "token_id": 31360, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271068,7 +270564,7 @@ }, { "str": "splatoon", - "token_id": 31423, + "token_id": 31361, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271077,7 +270573,7 @@ }, { "str": "series", - "token_id": 31424, + "token_id": 31362, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271086,7 +270582,7 @@ }, { "str": ".", - "token_id": 31425, + "token_id": 31363, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271095,7 +270591,7 @@ }, { "str": "rumour", - "token_id": 31426, + "token_id": 31364, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271104,7 +270600,7 @@ }, { "str": "has", - "token_id": 31427, + "token_id": 31365, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271113,7 +270609,7 @@ }, { "str": "it", - "token_id": 31428, + "token_id": 31366, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271122,7 +270618,7 @@ }, { "str": "that", - "token_id": 31429, + "token_id": 31367, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271131,7 +270627,7 @@ }, { "str": "all", - "token_id": 31430, + "token_id": 31368, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271140,7 +270636,7 @@ }, { "str": "glooga", - "token_id": 31431, + "token_id": 31369, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271149,7 +270645,7 @@ }, { "str": "dualie", - "token_id": 31432, + "token_id": 31370, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271158,7 +270654,7 @@ }, { "str": "players", - "token_id": 31433, + "token_id": 31371, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271167,7 +270663,7 @@ }, { "str": "are", - "token_id": 31434, + "token_id": 31372, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271176,7 +270672,7 @@ }, { "str": "extra", - "token_id": 31435, + "token_id": 31373, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271185,7 +270681,7 @@ }, { "str": "handsome", - "token_id": 31436, + "token_id": 31374, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271194,7 +270690,7 @@ }, { "str": ".", - "token_id": 31437, + "token_id": 31375, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271203,7 +270699,7 @@ }, { "str": ".", - "token_id": 31438, + "token_id": 31376, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271212,7 +270708,7 @@ }, { "str": "but", - "token_id": 31439, + "token_id": 31377, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271221,7 +270717,7 @@ }, { "str": "hey", - "token_id": 31440, + "token_id": 31378, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271230,7 +270726,7 @@ }, { "str": "i", - "token_id": 31441, + "token_id": 31379, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271239,7 +270735,7 @@ }, { "str": "don", - "token_id": 31442, + "token_id": 31380, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271248,7 +270744,7 @@ }, { "str": "'", - "token_id": 31443, + "token_id": 31381, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271257,7 +270753,7 @@ }, { "str": "t", - "token_id": 31444, + "token_id": 31382, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271266,7 +270762,7 @@ }, { "str": "make", - "token_id": 31445, + "token_id": 31383, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271275,7 +270771,7 @@ }, { "str": "the", - "token_id": 31446, + "token_id": 31384, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271284,7 +270780,7 @@ }, { "str": "rules", - "token_id": 31447, + "token_id": 31385, "o_rev_id": 1231129517, "in": [], "out": [ @@ -271293,7 +270789,7 @@ }, { "str": "campaign", - "token_id": 31448, + "token_id": 31386, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271302,7 +270798,7 @@ }, { "str": "the", - "token_id": 31449, + "token_id": 31387, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271311,7 +270807,7 @@ }, { "str": "new", - "token_id": 31450, + "token_id": 31388, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271320,7 +270816,7 @@ }, { "str": "agent", - "token_id": 31451, + "token_id": 31389, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271329,7 +270825,7 @@ }, { "str": "3", - "token_id": 31452, + "token_id": 31390, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271338,7 +270834,7 @@ }, { "str": "comes", - "token_id": 31453, + "token_id": 31391, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271347,7 +270843,7 @@ }, { "str": "up", - "token_id": 31454, + "token_id": 31392, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271356,7 +270852,7 @@ }, { "str": "in", - "token_id": 31455, + "token_id": 31393, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271365,7 +270861,7 @@ }, { "str": "this", - "token_id": 31456, + "token_id": 31394, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271374,7 +270870,7 @@ }, { "str": "new", - "token_id": 31457, + "token_id": 31395, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271383,7 +270879,7 @@ }, { "str": "skidbeak", - "token_id": 31458, + "token_id": 31396, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271392,7 +270888,7 @@ }, { "str": "splatoon", - "token_id": 31459, + "token_id": 31397, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271401,7 +270897,7 @@ }, { "str": ".", - "token_id": 31460, + "token_id": 31398, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271410,7 +270906,7 @@ }, { "str": "it", - "token_id": 31461, + "token_id": 31399, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271419,7 +270915,7 @@ }, { "str": "follow", - "token_id": 31462, + "token_id": 31400, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271428,7 +270924,7 @@ }, { "str": "the", - "token_id": 31463, + "token_id": 31401, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271437,7 +270933,7 @@ }, { "str": "new", - "token_id": 31464, + "token_id": 31402, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271446,7 +270942,7 @@ }, { "str": "story", - "token_id": 31465, + "token_id": 31403, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271455,7 +270951,7 @@ }, { "str": "of", - "token_id": 31466, + "token_id": 31404, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271464,7 +270960,7 @@ }, { "str": "a", - "token_id": 31467, + "token_id": 31405, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271473,7 +270969,7 @@ }, { "str": "playable", - "token_id": 31468, + "token_id": 31406, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271482,7 +270978,7 @@ }, { "str": "inkling", - "token_id": 31469, + "token_id": 31407, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271491,7 +270987,7 @@ }, { "str": "or", - "token_id": 31470, + "token_id": 31408, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271500,7 +270996,7 @@ }, { "str": "octoling", - "token_id": 31471, + "token_id": 31409, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271509,7 +271005,7 @@ }, { "str": "who", - "token_id": 31472, + "token_id": 31410, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271518,7 +271014,7 @@ }, { "str": "goes", - "token_id": 31473, + "token_id": 31411, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271527,7 +271023,7 @@ }, { "str": "on", - "token_id": 31474, + "token_id": 31412, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271536,7 +271032,7 @@ }, { "str": "a", - "token_id": 31475, + "token_id": 31413, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271545,7 +271041,7 @@ }, { "str": "remarkable", - "token_id": 31476, + "token_id": 31414, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271554,7 +271050,7 @@ }, { "str": "joringy", - "token_id": 31477, + "token_id": 31415, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271563,7 +271059,7 @@ }, { "str": "across", - "token_id": 31478, + "token_id": 31416, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271572,7 +271068,7 @@ }, { "str": "the", - "token_id": 31479, + "token_id": 31417, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271581,7 +271077,7 @@ }, { "str": "splatlands", - "token_id": 31480, + "token_id": 31418, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271590,7 +271086,7 @@ }, { "str": ".", - "token_id": 31481, + "token_id": 31419, "o_rev_id": 1236080045, "in": [], "out": [ @@ -271599,7 +271095,7 @@ }, { "str": "despite", - "token_id": 31482, + "token_id": 31420, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271608,7 +271104,7 @@ }, { "str": "having", - "token_id": 31483, + "token_id": 31421, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271617,7 +271113,7 @@ }, { "str": "previously", - "token_id": 31484, + "token_id": 31422, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271626,7 +271122,7 @@ }, { "str": "done", - "token_id": 31485, + "token_id": 31423, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271635,7 +271131,7 @@ }, { "str": "so", - "token_id": 31486, + "token_id": 31424, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271644,7 +271140,7 @@ }, { "str": "in", - "token_id": 31487, + "token_id": 31425, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271653,7 +271149,7 @@ }, { "str": "the", - "token_id": 31488, + "token_id": 31426, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271662,7 +271158,7 @@ }, { "str": "previous", - "token_id": 31489, + "token_id": 31427, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271671,7 +271167,7 @@ }, { "str": "two", - "token_id": 31490, + "token_id": 31428, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271680,7 +271176,7 @@ }, { "str": "games", - "token_id": 31491, + "token_id": 31429, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271689,7 +271185,7 @@ }, { "str": "deep", - "token_id": 31492, + "token_id": 31430, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271698,7 +271194,7 @@ }, { "str": "cut", - "token_id": 31493, + "token_id": 31431, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271707,7 +271203,7 @@ }, { "str": "after", - "token_id": 31494, + "token_id": 31432, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271716,7 +271212,7 @@ }, { "str": "being", - "token_id": 31495, + "token_id": 31433, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271725,7 +271221,7 @@ }, { "str": "given", - "token_id": 31496, + "token_id": 31434, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271734,7 +271230,7 @@ }, { "str": "the", - "token_id": 31497, + "token_id": 31435, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271743,7 +271239,7 @@ }, { "str": "treasure", - "token_id": 31498, + "token_id": 31436, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271752,7 +271248,7 @@ }, { "str": "for", - "token_id": 31499, + "token_id": 31437, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271761,7 +271257,7 @@ }, { "str": "free", - "token_id": 31500, + "token_id": 31438, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271770,7 +271266,7 @@ }, { "str": "(", - "token_id": 31501, + "token_id": 31439, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271779,7 +271275,7 @@ }, { "str": "as", - "token_id": 31502, + "token_id": 31440, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271788,7 +271284,7 @@ }, { "str": "the", - "token_id": 31503, + "token_id": 31441, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271797,7 +271293,7 @@ }, { "str": "team", - "token_id": 31504, + "token_id": 31442, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271806,7 +271302,7 @@ }, { "str": "no", - "token_id": 31505, + "token_id": 31443, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271815,7 +271311,7 @@ }, { "str": "longer", - "token_id": 31506, + "token_id": 31444, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271824,7 +271320,7 @@ }, { "str": "needs", - "token_id": 31507, + "token_id": 31445, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271833,7 +271329,7 @@ }, { "str": "it", - "token_id": 31508, + "token_id": 31446, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271842,7 +271338,7 @@ }, { "str": ")", - "token_id": 31509, + "token_id": 31447, "o_rev_id": 1236141150, "in": [], "out": [ @@ -271851,16 +271347,23 @@ }, { "str": ",", - "token_id": 31510, + "token_id": 31448, "o_rev_id": 1236141150, "in": [], "out": [ 1338938791 ] }, + { + "str": ".", + "token_id": 31449, + "o_rev_id": 1236243909, + "in": [], + "out": [] + }, { "str": "after", - "token_id": 31511, + "token_id": 31450, "o_rev_id": 1236243909, "in": [], "out": [ @@ -271869,7 +271372,7 @@ }, { "str": "defeating", - "token_id": 31512, + "token_id": 31451, "o_rev_id": 1236243909, "in": [], "out": [ @@ -271878,14 +271381,14 @@ }, { "str": "octavio", - "token_id": 31513, + "token_id": 31452, "o_rev_id": 1236243909, "in": [], "out": [] }, { - "str": "he", - "token_id": 31514, + "str": ",", + "token_id": 31453, "o_rev_id": 1236243909, "in": [], "out": [ @@ -271893,73 +271396,59 @@ ] }, { - "str": ".", - "token_id": 31515, + "str": "he", + "token_id": 31454, "o_rev_id": 1236243909, "in": [], - "out": [] + "out": [ + 1327601720 + ] }, { "str": ",", - "token_id": 31516, + "token_id": 31455, "o_rev_id": 1236243909, "in": [], "out": [] }, { "str": "proving", - "token_id": 31517, + "token_id": 31456, "o_rev_id": 1236243909, - "in": [ - 1327668959 - ], - "out": [ - 1327622667 - ] + "in": [], + "out": [] }, { "str": "octavio", - "token_id": 31518, + "token_id": 31457, "o_rev_id": 1236243909, - "in": [ - 1327668959 - ], - "out": [ - 1327622667 - ] + "in": [], + "out": [] }, { "str": "'", - "token_id": 31519, + "token_id": 31458, "o_rev_id": 1236243909, "in": [], "out": [] }, { "str": "s", - "token_id": 31520, + "token_id": 31459, "o_rev_id": 1236243909, - "in": [ - 1327668959 - ], - "out": [ - 1327622667 - ] + "in": [], + "out": [] }, { "str": "innocence", - "token_id": 31521, + "token_id": 31460, "o_rev_id": 1236243909, - "in": [ - 1327668959 - ], - "out": [ - 1327622667 - ] + "in": [], + "out": [] }, { "str": ";", - "token_id": 31522, + "token_id": 31461, "o_rev_id": 1236243909, "in": [], "out": [ @@ -271968,7 +271457,7 @@ }, { "str": "they", - "token_id": 31523, + "token_id": 31462, "o_rev_id": 1236243909, "in": [], "out": [ @@ -271977,7 +271466,7 @@ }, { "str": "also", - "token_id": 31524, + "token_id": 31463, "o_rev_id": 1236243909, "in": [], "out": [ @@ -271986,7 +271475,7 @@ }, { "str": "become", - "token_id": 31525, + "token_id": 31464, "o_rev_id": 1236243909, "in": [], "out": [ @@ -271995,7 +271484,7 @@ }, { "str": "marie", - "token_id": 31526, + "token_id": 31465, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272004,7 +271493,7 @@ }, { "str": "'", - "token_id": 31527, + "token_id": 31466, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272013,7 +271502,7 @@ }, { "str": "s", - "token_id": 31528, + "token_id": 31467, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272022,7 +271511,7 @@ }, { "str": "employees", - "token_id": 31529, + "token_id": 31468, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272031,7 +271520,7 @@ }, { "str": ",", - "token_id": 31530, + "token_id": 31469, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272040,7 +271529,7 @@ }, { "str": "to", - "token_id": 31531, + "token_id": 31470, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272049,7 +271538,7 @@ }, { "str": "the", - "token_id": 31532, + "token_id": 31471, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272058,7 +271547,7 @@ }, { "str": "latter", - "token_id": 31533, + "token_id": 31472, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272067,7 +271556,7 @@ }, { "str": "'", - "token_id": 31534, + "token_id": 31473, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272076,7 +271565,7 @@ }, { "str": "s", - "token_id": 31535, + "token_id": 31474, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272085,7 +271574,7 @@ }, { "str": "dismay", - "token_id": 31536, + "token_id": 31475, "o_rev_id": 1236243909, "in": [], "out": [ @@ -272094,7 +271583,7 @@ }, { "str": "dead", - "token_id": 31537, + "token_id": 31476, "o_rev_id": 1238595697, "in": [], "out": [ @@ -272103,7 +271592,7 @@ }, { "str": "dead", - "token_id": 31538, + "token_id": 31477, "o_rev_id": 1238595697, "in": [], "out": [ @@ -272112,7 +271601,7 @@ }, { "str": "dead", - "token_id": 31539, + "token_id": 31478, "o_rev_id": 1238595697, "in": [], "out": [ @@ -272121,91 +271610,91 @@ }, { "str": "[[", - "token_id": 31540, + "token_id": 31479, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "]]", - "token_id": 31541, + "token_id": 31480, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "[[", - "token_id": 31542, + "token_id": 31481, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "category", - "token_id": 31543, + "token_id": 31482, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": ":", - "token_id": 31544, + "token_id": 31483, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "video", - "token_id": 31545, + "token_id": 31484, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "games", - "token_id": 31546, + "token_id": 31485, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "set", - "token_id": 31547, + "token_id": 31486, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "in", - "token_id": 31548, + "token_id": 31487, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "the", - "token_id": 31549, + "token_id": 31488, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "future", - "token_id": 31550, + "token_id": 31489, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "]]", - "token_id": 31551, + "token_id": 31490, "o_rev_id": 1239933848, "in": [], "out": [] }, { "str": "|", - "token_id": 31552, + "token_id": 31491, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272214,7 +271703,7 @@ }, { "str": "archive", - "token_id": 31553, + "token_id": 31492, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272223,7 +271712,7 @@ }, { "str": "-", - "token_id": 31554, + "token_id": 31493, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272232,7 +271721,7 @@ }, { "str": "date", - "token_id": 31555, + "token_id": 31494, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272241,7 +271730,7 @@ }, { "str": "=", - "token_id": 31556, + "token_id": 31495, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272250,7 +271739,7 @@ }, { "str": "18", - "token_id": 31557, + "token_id": 31496, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272259,7 +271748,7 @@ }, { "str": "september", - "token_id": 31558, + "token_id": 31497, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272268,7 +271757,7 @@ }, { "str": "2023", - "token_id": 31559, + "token_id": 31498, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272277,119 +271766,119 @@ }, { "str": "|", - "token_id": 31560, + "token_id": 31499, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "archive", - "token_id": 31561, + "token_id": 31500, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31562, + "token_id": 31501, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "url", - "token_id": 31563, + "token_id": 31502, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "=", - "token_id": 31564, + "token_id": 31503, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "https", - "token_id": 31565, + "token_id": 31504, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ":", - "token_id": 31566, + "token_id": 31505, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31567, + "token_id": 31506, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "web", - "token_id": 31568, + "token_id": 31507, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31569, + "token_id": 31508, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "archive", - "token_id": 31570, + "token_id": 31509, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31571, + "token_id": 31510, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "org", - "token_id": 31572, + "token_id": 31511, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31573, + "token_id": 31512, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "web", - "token_id": 31574, + "token_id": 31513, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31575, + "token_id": 31514, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "20230918143850", - "token_id": 31576, + "token_id": 31515, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272398,42 +271887,42 @@ }, { "str": "/", - "token_id": 31577, + "token_id": 31516, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "https", - "token_id": 31578, + "token_id": 31517, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ":", - "token_id": 31579, + "token_id": 31518, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31580, + "token_id": 31519, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31581, + "token_id": 31520, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "www", - "token_id": 31582, + "token_id": 31521, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272442,7 +271931,7 @@ }, { "str": ".", - "token_id": 31583, + "token_id": 31522, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272451,7 +271940,7 @@ }, { "str": "ign", - "token_id": 31584, + "token_id": 31523, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272460,21 +271949,21 @@ }, { "str": ".", - "token_id": 31585, + "token_id": 31524, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "com", - "token_id": 31586, + "token_id": 31525, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31587, + "token_id": 31526, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272483,7 +271972,7 @@ }, { "str": "wikis", - "token_id": 31588, + "token_id": 31527, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272492,42 +271981,42 @@ }, { "str": "/", - "token_id": 31589, + "token_id": 31528, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 31590, + "token_id": 31529, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31591, + "token_id": 31530, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "3", - "token_id": 31592, + "token_id": 31531, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31593, + "token_id": 31532, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 31594, + "token_id": 31533, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272536,7 +272025,7 @@ }, { "str": "_", - "token_id": 31595, + "token_id": 31534, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272545,7 +272034,7 @@ }, { "str": "3", - "token_id": 31596, + "token_id": 31535, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272554,7 +272043,7 @@ }, { "str": "_", - "token_id": 31597, + "token_id": 31536, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272563,7 +272052,7 @@ }, { "str": "update", - "token_id": 31598, + "token_id": 31537, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272572,7 +272061,7 @@ }, { "str": "_", - "token_id": 31599, + "token_id": 31538, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272581,7 +272070,7 @@ }, { "str": "3", - "token_id": 31600, + "token_id": 31539, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272590,7 +272079,7 @@ }, { "str": ".", - "token_id": 31601, + "token_id": 31540, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272599,7 +272088,7 @@ }, { "str": "0", - "token_id": 31602, + "token_id": 31541, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272608,7 +272097,7 @@ }, { "str": ".", - "token_id": 31603, + "token_id": 31542, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272617,7 +272106,7 @@ }, { "str": "0", - "token_id": 31604, + "token_id": 31543, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272626,7 +272115,7 @@ }, { "str": "_", - "token_id": 31605, + "token_id": 31544, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272635,7 +272124,7 @@ }, { "str": "patch", - "token_id": 31606, + "token_id": 31545, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272644,7 +272133,7 @@ }, { "str": "_", - "token_id": 31607, + "token_id": 31546, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272653,7 +272142,7 @@ }, { "str": "notes", - "token_id": 31608, + "token_id": 31547, "o_rev_id": 1240817705, "in": [], "out": [ @@ -272662,420 +272151,420 @@ }, { "str": "|", - "token_id": 31609, + "token_id": 31548, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "archive", - "token_id": 31610, + "token_id": 31549, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31611, + "token_id": 31550, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "date", - "token_id": 31612, + "token_id": 31551, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "=", - "token_id": 31613, + "token_id": 31552, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "11", - "token_id": 31614, + "token_id": 31553, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "december", - "token_id": 31615, + "token_id": 31554, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "2023", - "token_id": 31616, + "token_id": 31555, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "|", - "token_id": 31617, + "token_id": 31556, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "archive", - "token_id": 31618, + "token_id": 31557, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31619, + "token_id": 31558, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "url", - "token_id": 31620, + "token_id": 31559, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "=", - "token_id": 31621, + "token_id": 31560, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "https", - "token_id": 31622, + "token_id": 31561, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ":", - "token_id": 31623, + "token_id": 31562, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31624, + "token_id": 31563, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "web", - "token_id": 31625, + "token_id": 31564, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31626, + "token_id": 31565, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "archive", - "token_id": 31627, + "token_id": 31566, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31628, + "token_id": 31567, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "org", - "token_id": 31629, + "token_id": 31568, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31630, + "token_id": 31569, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "web", - "token_id": 31631, + "token_id": 31570, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31632, + "token_id": 31571, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "20231211212505", - "token_id": 31633, + "token_id": 31572, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31634, + "token_id": 31573, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "https", - "token_id": 31635, + "token_id": 31574, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ":", - "token_id": 31636, + "token_id": 31575, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31637, + "token_id": 31576, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31638, + "token_id": 31577, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "www", - "token_id": 31639, + "token_id": 31578, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31640, + "token_id": 31579, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "ign", - "token_id": 31641, + "token_id": 31580, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31642, + "token_id": 31581, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "com", - "token_id": 31643, + "token_id": 31582, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31644, + "token_id": 31583, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "articles", - "token_id": 31645, + "token_id": 31584, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31646, + "token_id": 31585, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 31647, + "token_id": 31586, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31648, + "token_id": 31587, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "3s", - "token_id": 31649, + "token_id": 31588, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31650, + "token_id": 31589, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "expansion", - "token_id": 31651, + "token_id": 31590, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31652, + "token_id": 31591, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "pass", - "token_id": 31653, + "token_id": 31592, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31654, + "token_id": 31593, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "wave", - "token_id": 31655, + "token_id": 31594, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31656, + "token_id": 31595, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "1", - "token_id": 31657, + "token_id": 31596, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31658, + "token_id": 31597, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "arrives", - "token_id": 31659, + "token_id": 31598, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31660, + "token_id": 31599, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "later", - "token_id": 31661, + "token_id": 31600, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31662, + "token_id": 31601, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "this", - "token_id": 31663, + "token_id": 31602, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31664, + "token_id": 31603, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "month", - "token_id": 31665, + "token_id": 31604, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31666, + "token_id": 31605, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31667, + "token_id": 31606, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "<", - "token_id": 31668, + "token_id": 31607, "o_rev_id": 1240817705, "in": [], "out": [ @@ -273084,14 +272573,14 @@ }, { "str": "/", - "token_id": 31669, + "token_id": 31608, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "ref", - "token_id": 31670, + "token_id": 31609, "o_rev_id": 1240817705, "in": [], "out": [ @@ -273100,7 +272589,7 @@ }, { "str": ">", - "token_id": 31671, + "token_id": 31610, "o_rev_id": 1240817705, "in": [], "out": [ @@ -273109,315 +272598,315 @@ }, { "str": "|", - "token_id": 31672, + "token_id": 31611, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "archive", - "token_id": 31673, + "token_id": 31612, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31674, + "token_id": 31613, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "date", - "token_id": 31675, + "token_id": 31614, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "=", - "token_id": 31676, + "token_id": 31615, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "2", - "token_id": 31677, + "token_id": 31616, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "march", - "token_id": 31678, + "token_id": 31617, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "2023", - "token_id": 31679, + "token_id": 31618, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "|", - "token_id": 31680, + "token_id": 31619, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "archive", - "token_id": 31681, + "token_id": 31620, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31682, + "token_id": 31621, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "url", - "token_id": 31683, + "token_id": 31622, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "=", - "token_id": 31684, + "token_id": 31623, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "https", - "token_id": 31685, + "token_id": 31624, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ":", - "token_id": 31686, + "token_id": 31625, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31687, + "token_id": 31626, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "web", - "token_id": 31688, + "token_id": 31627, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31689, + "token_id": 31628, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "archive", - "token_id": 31690, + "token_id": 31629, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31691, + "token_id": 31630, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "org", - "token_id": 31692, + "token_id": 31631, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31693, + "token_id": 31632, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "web", - "token_id": 31694, + "token_id": 31633, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31695, + "token_id": 31634, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "20230302164040", - "token_id": 31696, + "token_id": 31635, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31697, + "token_id": 31636, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "https", - "token_id": 31698, + "token_id": 31637, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ":", - "token_id": 31699, + "token_id": 31638, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31700, + "token_id": 31639, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31701, + "token_id": 31640, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "www", - "token_id": 31702, + "token_id": 31641, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31703, + "token_id": 31642, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "bafta", - "token_id": 31704, + "token_id": 31643, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": ".", - "token_id": 31705, + "token_id": 31644, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "org", - "token_id": 31706, + "token_id": 31645, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31707, + "token_id": 31646, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "games", - "token_id": 31708, + "token_id": 31647, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31709, + "token_id": 31648, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "awards", - "token_id": 31710, + "token_id": 31649, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "/", - "token_id": 31711, + "token_id": 31650, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "2023", - "token_id": 31712, + "token_id": 31651, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "-", - "token_id": 31713, + "token_id": 31652, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "nominations", - "token_id": 31714, + "token_id": 31653, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "|", - "token_id": 31715, + "token_id": 31654, "o_rev_id": 1240817705, "in": [], "out": [] }, { "str": "billion", - "token_id": 31716, + "token_id": 31655, "o_rev_id": 1244752001, "in": [], "out": [ @@ -273426,7 +272915,7 @@ }, { "str": "best", - "token_id": 31717, + "token_id": 31656, "o_rev_id": 1244752001, "in": [], "out": [ @@ -273435,7 +272924,7 @@ }, { "str": "world", - "token_id": 31718, + "token_id": 31657, "o_rev_id": 1244752001, "in": [], "out": [ @@ -273444,7 +272933,7 @@ }, { "str": "|", - "token_id": 31719, + "token_id": 31658, "o_rev_id": 1244752001, "in": [], "out": [ @@ -273453,7 +272942,7 @@ }, { "str": "game", - "token_id": 31720, + "token_id": 31659, "o_rev_id": 1244752001, "in": [], "out": [ @@ -273462,133 +272951,133 @@ }, { "str": "plays", - "token_id": 31721, + "token_id": 31660, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "similarly", - "token_id": 31722, + "token_id": 31661, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "to", - "token_id": 31723, + "token_id": 31662, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "[[", - "token_id": 31724, + "token_id": 31663, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "king", - "token_id": 31725, + "token_id": 31664, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "of", - "token_id": 31726, + "token_id": 31665, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "the", - "token_id": 31727, + "token_id": 31666, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "hill", - "token_id": 31728, + "token_id": 31667, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "(", - "token_id": 31729, + "token_id": 31668, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "game", - "token_id": 31730, + "token_id": 31669, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": ")", - "token_id": 31731, + "token_id": 31670, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "|", - "token_id": 31732, + "token_id": 31671, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "king", - "token_id": 31733, + "token_id": 31672, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "of", - "token_id": 31734, + "token_id": 31673, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "the", - "token_id": 31735, + "token_id": 31674, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "hill", - "token_id": 31736, + "token_id": 31675, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "]]", - "token_id": 31737, + "token_id": 31676, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": ";", - "token_id": 31738, + "token_id": 31677, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "payload", - "token_id": 31739, + "token_id": 31678, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273597,7 +273086,7 @@ }, { "str": "from", - "token_id": 31740, + "token_id": 31679, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273606,7 +273095,7 @@ }, { "str": "'", - "token_id": 31741, + "token_id": 31680, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273615,7 +273104,7 @@ }, { "str": "'", - "token_id": 31742, + "token_id": 31681, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273624,7 +273113,7 @@ }, { "str": "[[", - "token_id": 31743, + "token_id": 31682, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273633,7 +273122,7 @@ }, { "str": "team", - "token_id": 31744, + "token_id": 31683, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273642,7 +273131,7 @@ }, { "str": "fortress", - "token_id": 31745, + "token_id": 31684, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273651,7 +273140,7 @@ }, { "str": "2", - "token_id": 31746, + "token_id": 31685, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273660,7 +273149,7 @@ }, { "str": "]]", - "token_id": 31747, + "token_id": 31686, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273669,7 +273158,7 @@ }, { "str": "'", - "token_id": 31748, + "token_id": 31687, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273678,7 +273167,7 @@ }, { "str": "'", - "token_id": 31749, + "token_id": 31688, "o_rev_id": 1244953664, "in": [], "out": [ @@ -273687,14 +273176,14 @@ }, { "str": "escort", - "token_id": 31750, + "token_id": 31689, "o_rev_id": 1244953664, "in": [], "out": [] }, { "str": "[[", - "token_id": 31751, + "token_id": 31690, "o_rev_id": 1245011050, "in": [], "out": [ @@ -273703,7 +273192,7 @@ }, { "str": "france", - "token_id": 31752, + "token_id": 31691, "o_rev_id": 1245011050, "in": [], "out": [ @@ -273712,7 +273201,7 @@ }, { "str": "]]", - "token_id": 31753, + "token_id": 31692, "o_rev_id": 1245011050, "in": [], "out": [ @@ -273721,896 +273210,896 @@ }, { "str": "on", - "token_id": 31754, + "token_id": 31693, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "16", - "token_id": 31755, + "token_id": 31694, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "september", - "token_id": 31756, + "token_id": 31695, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "2024", - "token_id": 31757, + "token_id": 31696, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ",", - "token_id": 31758, + "token_id": 31697, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 31759, + "token_id": 31698, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "announced", - "token_id": 31760, + "token_id": 31699, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "that", - "token_id": 31761, + "token_id": 31700, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "the", - "token_id": 31762, + "token_id": 31701, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "game", - "token_id": 31763, + "token_id": 31702, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "would", - "token_id": 31764, + "token_id": 31703, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "no", - "token_id": 31765, + "token_id": 31704, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "longer", - "token_id": 31766, + "token_id": 31705, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "receive", - "token_id": 31767, + "token_id": 31706, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "regular", - "token_id": 31768, + "token_id": 31707, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "content", - "token_id": 31769, + "token_id": 31708, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "updates", - "token_id": 31770, + "token_id": 31709, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ",", - "token_id": 31771, + "token_id": 31710, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "although", - "token_id": 31772, + "token_id": 31711, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "patches", - "token_id": 31773, + "token_id": 31712, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "and", - "token_id": 31774, + "token_id": 31713, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "seasonal", - "token_id": 31775, + "token_id": 31714, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "events", - "token_id": 31776, + "token_id": 31715, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "would", - "token_id": 31777, + "token_id": 31716, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "continue", - "token_id": 31778, + "token_id": 31717, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ".", - "token_id": 31779, + "token_id": 31718, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "<", - "token_id": 31780, + "token_id": 31719, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "ref", - "token_id": 31781, + "token_id": 31720, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ">", - "token_id": 31782, + "token_id": 31721, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "{{", - "token_id": 31783, + "token_id": 31722, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "cite", - "token_id": 31784, + "token_id": 31723, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "web", - "token_id": 31785, + "token_id": 31724, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "|", - "token_id": 31786, + "token_id": 31725, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "last", - "token_id": 31787, + "token_id": 31726, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "=", - "token_id": 31788, + "token_id": 31727, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "yin", - "token_id": 31789, + "token_id": 31728, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31790, + "token_id": 31729, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "poole", - "token_id": 31791, + "token_id": 31730, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "|", - "token_id": 31792, + "token_id": 31731, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "first", - "token_id": 31793, + "token_id": 31732, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "=", - "token_id": 31794, + "token_id": 31733, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "wesley", - "token_id": 31795, + "token_id": 31734, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "|", - "token_id": 31796, + "token_id": 31735, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "date", - "token_id": 31797, + "token_id": 31736, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "=", - "token_id": 31798, + "token_id": 31737, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "2024", - "token_id": 31799, + "token_id": 31738, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31800, + "token_id": 31739, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "09", - "token_id": 31801, + "token_id": 31740, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31802, + "token_id": 31741, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "16", - "token_id": 31803, + "token_id": 31742, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "|", - "token_id": 31804, + "token_id": 31743, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "title", - "token_id": 31805, + "token_id": 31744, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "=", - "token_id": 31806, + "token_id": 31745, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 31807, + "token_id": 31746, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "3", - "token_id": 31808, + "token_id": 31747, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "regular", - "token_id": 31809, + "token_id": 31748, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "updates", - "token_id": 31810, + "token_id": 31749, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "to", - "token_id": 31811, + "token_id": 31750, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "end", - "token_id": 31812, + "token_id": 31751, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "2", - "token_id": 31813, + "token_id": 31752, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "years", - "token_id": 31814, + "token_id": 31753, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "after", - "token_id": 31815, + "token_id": 31754, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "launch", - "token_id": 31816, + "token_id": 31755, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ",", - "token_id": 31817, + "token_id": 31756, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 31818, + "token_id": 31757, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "says", - "token_id": 31819, + "token_id": 31758, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "|", - "token_id": 31820, + "token_id": 31759, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "url", - "token_id": 31821, + "token_id": 31760, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "=", - "token_id": 31822, + "token_id": 31761, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "https", - "token_id": 31823, + "token_id": 31762, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ":", - "token_id": 31824, + "token_id": 31763, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "/", - "token_id": 31825, + "token_id": 31764, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "/", - "token_id": 31826, + "token_id": 31765, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "www", - "token_id": 31827, + "token_id": 31766, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ".", - "token_id": 31828, + "token_id": 31767, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "ign", - "token_id": 31829, + "token_id": 31768, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ".", - "token_id": 31830, + "token_id": 31769, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "com", - "token_id": 31831, + "token_id": 31770, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "/", - "token_id": 31832, + "token_id": 31771, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "articles", - "token_id": 31833, + "token_id": 31772, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "/", - "token_id": 31834, + "token_id": 31773, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 31835, + "token_id": 31774, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31836, + "token_id": 31775, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "3", - "token_id": 31837, + "token_id": 31776, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31838, + "token_id": 31777, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "regular", - "token_id": 31839, + "token_id": 31778, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31840, + "token_id": 31779, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "updates", - "token_id": 31841, + "token_id": 31780, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31842, + "token_id": 31781, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "to", - "token_id": 31843, + "token_id": 31782, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31844, + "token_id": 31783, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "end", - "token_id": 31845, + "token_id": 31784, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31846, + "token_id": 31785, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "2", - "token_id": 31847, + "token_id": 31786, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31848, + "token_id": 31787, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "years", - "token_id": 31849, + "token_id": 31788, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31850, + "token_id": 31789, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "after", - "token_id": 31851, + "token_id": 31790, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31852, + "token_id": 31791, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "launch", - "token_id": 31853, + "token_id": 31792, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31854, + "token_id": 31793, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 31855, + "token_id": 31794, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31856, + "token_id": 31795, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "says", - "token_id": 31857, + "token_id": 31796, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "|", - "token_id": 31858, + "token_id": 31797, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "access", - "token_id": 31859, + "token_id": 31798, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31860, + "token_id": 31799, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "date", - "token_id": 31861, + "token_id": 31800, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "=", - "token_id": 31862, + "token_id": 31801, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "2024", - "token_id": 31863, + "token_id": 31802, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31864, + "token_id": 31803, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "09", - "token_id": 31865, + "token_id": 31804, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "-", - "token_id": 31866, + "token_id": 31805, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "16", - "token_id": 31867, + "token_id": 31806, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "|", - "token_id": 31868, + "token_id": 31807, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "website", - "token_id": 31869, + "token_id": 31808, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "=", - "token_id": 31870, + "token_id": 31809, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "ign", - "token_id": 31871, + "token_id": 31810, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "|", - "token_id": 31872, + "token_id": 31811, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "language", - "token_id": 31873, + "token_id": 31812, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "=", - "token_id": 31874, + "token_id": 31813, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "en", - "token_id": 31875, + "token_id": 31814, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "}}", - "token_id": 31876, + "token_id": 31815, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "<", - "token_id": 31877, + "token_id": 31816, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "/", - "token_id": 31878, + "token_id": 31817, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "ref", - "token_id": 31879, + "token_id": 31818, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": ">", - "token_id": 31880, + "token_id": 31819, "o_rev_id": 1246088487, "in": [], "out": [] }, { "str": "side", - "token_id": 31881, + "token_id": 31820, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274619,7 +274108,7 @@ }, { "str": "order", - "token_id": 31882, + "token_id": 31821, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274628,7 +274117,7 @@ }, { "str": "(", - "token_id": 31883, + "token_id": 31822, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274637,7 +274126,7 @@ }, { "str": "splatoon", - "token_id": 31884, + "token_id": 31823, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274646,7 +274135,7 @@ }, { "str": "3", - "token_id": 31885, + "token_id": 31824, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274655,7 +274144,7 @@ }, { "str": "dlc", - "token_id": 31886, + "token_id": 31825, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274664,7 +274153,7 @@ }, { "str": ")", - "token_id": 31887, + "token_id": 31826, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274673,7 +274162,7 @@ }, { "str": "is", - "token_id": 31888, + "token_id": 31827, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274682,7 +274171,7 @@ }, { "str": "place", - "token_id": 31889, + "token_id": 31828, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274691,7 +274180,7 @@ }, { "str": "in", - "token_id": 31890, + "token_id": 31829, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274700,7 +274189,7 @@ }, { "str": "a", - "token_id": 31891, + "token_id": 31830, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274709,7 +274198,7 @@ }, { "str": "uncolored", - "token_id": 31892, + "token_id": 31831, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274718,7 +274207,7 @@ }, { "str": "version", - "token_id": 31893, + "token_id": 31832, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274727,7 +274216,7 @@ }, { "str": "of", - "token_id": 31894, + "token_id": 31833, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274736,7 +274225,7 @@ }, { "str": "splatoon", - "token_id": 31895, + "token_id": 31834, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274745,7 +274234,7 @@ }, { "str": "2", - "token_id": 31896, + "token_id": 31835, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274754,7 +274243,7 @@ }, { "str": "\"", - "token_id": 31897, + "token_id": 31836, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274763,7 +274252,7 @@ }, { "str": "the", - "token_id": 31898, + "token_id": 31837, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274772,7 +274261,7 @@ }, { "str": "square", - "token_id": 31899, + "token_id": 31838, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274781,7 +274270,7 @@ }, { "str": "\"", - "token_id": 31900, + "token_id": 31839, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274790,7 +274279,7 @@ }, { "str": "as", - "token_id": 31901, + "token_id": 31840, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274799,7 +274288,7 @@ }, { "str": "you", - "token_id": 31902, + "token_id": 31841, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274808,7 +274297,7 @@ }, { "str": "were", - "token_id": 31903, + "token_id": 31842, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274817,7 +274306,7 @@ }, { "str": "traveling", - "token_id": 31904, + "token_id": 31843, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274826,7 +274315,7 @@ }, { "str": "to", - "token_id": 31905, + "token_id": 31844, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274835,7 +274324,7 @@ }, { "str": "the", - "token_id": 31906, + "token_id": 31845, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274844,7 +274333,7 @@ }, { "str": "square", - "token_id": 31907, + "token_id": 31846, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274853,7 +274342,7 @@ }, { "str": "your", - "token_id": 31908, + "token_id": 31847, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274862,7 +274351,7 @@ }, { "str": "character", - "token_id": 31909, + "token_id": 31848, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274871,7 +274360,7 @@ }, { "str": "\"", - "token_id": 31910, + "token_id": 31849, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274880,7 +274369,7 @@ }, { "str": "agent", - "token_id": 31911, + "token_id": 31850, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274889,7 +274378,7 @@ }, { "str": "8", - "token_id": 31912, + "token_id": 31851, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274898,7 +274387,7 @@ }, { "str": "\"", - "token_id": 31913, + "token_id": 31852, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274907,7 +274396,7 @@ }, { "str": "got", - "token_id": 31914, + "token_id": 31853, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274916,7 +274405,7 @@ }, { "str": "glitched", - "token_id": 31915, + "token_id": 31854, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274925,7 +274414,7 @@ }, { "str": "into", - "token_id": 31916, + "token_id": 31855, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274934,7 +274423,7 @@ }, { "str": "a", - "token_id": 31917, + "token_id": 31856, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274943,7 +274432,7 @@ }, { "str": "glitched", - "token_id": 31918, + "token_id": 31857, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274952,7 +274441,7 @@ }, { "str": "version", - "token_id": 31919, + "token_id": 31858, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274961,7 +274450,7 @@ }, { "str": "of", - "token_id": 31920, + "token_id": 31859, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274970,7 +274459,7 @@ }, { "str": "the", - "token_id": 31921, + "token_id": 31860, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274979,7 +274468,7 @@ }, { "str": "square", - "token_id": 31922, + "token_id": 31861, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274988,7 +274477,7 @@ }, { "str": ",", - "token_id": 31923, + "token_id": 31862, "o_rev_id": 1252808014, "in": [], "out": [ @@ -274997,7 +274486,7 @@ }, { "str": "but", - "token_id": 31924, + "token_id": 31863, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275006,7 +274495,7 @@ }, { "str": "pearl", - "token_id": 31925, + "token_id": 31864, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275015,7 +274504,7 @@ }, { "str": "is", - "token_id": 31926, + "token_id": 31865, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275024,7 +274513,7 @@ }, { "str": "there", - "token_id": 31927, + "token_id": 31866, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275033,7 +274522,7 @@ }, { "str": "as", - "token_id": 31928, + "token_id": 31867, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275042,7 +274531,7 @@ }, { "str": "well", - "token_id": 31929, + "token_id": 31868, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275051,7 +274540,7 @@ }, { "str": "as", - "token_id": 31930, + "token_id": 31869, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275060,7 +274549,7 @@ }, { "str": "acth", - "token_id": 31931, + "token_id": 31870, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275069,7 +274558,7 @@ }, { "str": "which", - "token_id": 31932, + "token_id": 31871, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275078,7 +274567,7 @@ }, { "str": "they", - "token_id": 31933, + "token_id": 31872, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275087,7 +274576,7 @@ }, { "str": "serve", - "token_id": 31934, + "token_id": 31873, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275096,7 +274585,7 @@ }, { "str": "to", - "token_id": 31935, + "token_id": 31874, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275105,7 +274594,7 @@ }, { "str": "help", - "token_id": 31936, + "token_id": 31875, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275114,7 +274603,7 @@ }, { "str": "you", - "token_id": 31937, + "token_id": 31876, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275123,7 +274612,7 @@ }, { "str": "free", - "token_id": 31938, + "token_id": 31877, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275132,7 +274621,7 @@ }, { "str": "marina", - "token_id": 31939, + "token_id": 31878, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275141,7 +274630,7 @@ }, { "str": ",", - "token_id": 31940, + "token_id": 31879, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275150,7 +274639,7 @@ }, { "str": "after", - "token_id": 31941, + "token_id": 31880, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275159,7 +274648,7 @@ }, { "str": "you", - "token_id": 31942, + "token_id": 31881, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275168,7 +274657,7 @@ }, { "str": "free", - "token_id": 31943, + "token_id": 31882, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275177,7 +274666,7 @@ }, { "str": "marina", - "token_id": 31944, + "token_id": 31883, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275186,7 +274675,7 @@ }, { "str": "you", - "token_id": 31945, + "token_id": 31884, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275195,7 +274684,7 @@ }, { "str": "find", - "token_id": 31946, + "token_id": 31885, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275204,7 +274693,7 @@ }, { "str": "out", - "token_id": 31947, + "token_id": 31886, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275213,7 +274702,7 @@ }, { "str": "order", - "token_id": 31948, + "token_id": 31887, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275222,7 +274711,7 @@ }, { "str": "it", - "token_id": 31949, + "token_id": 31888, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275231,7 +274720,7 @@ }, { "str": "self", - "token_id": 31950, + "token_id": 31889, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275240,7 +274729,7 @@ }, { "str": "it", - "token_id": 31951, + "token_id": 31890, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275249,7 +274738,7 @@ }, { "str": "the", - "token_id": 31952, + "token_id": 31891, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275258,7 +274747,7 @@ }, { "str": "villain", - "token_id": 31953, + "token_id": 31892, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275267,7 +274756,7 @@ }, { "str": "as", - "token_id": 31954, + "token_id": 31893, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275276,7 +274765,7 @@ }, { "str": "he", - "token_id": 31955, + "token_id": 31894, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275285,7 +274774,7 @@ }, { "str": "is", - "token_id": 31956, + "token_id": 31895, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275294,7 +274783,7 @@ }, { "str": "a", - "token_id": 31957, + "token_id": 31896, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275303,7 +274792,7 @@ }, { "str": "ai", - "token_id": 31958, + "token_id": 31897, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275312,7 +274801,7 @@ }, { "str": "made", - "token_id": 31959, + "token_id": 31898, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275321,7 +274810,7 @@ }, { "str": "by", - "token_id": 31960, + "token_id": 31899, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275330,7 +274819,7 @@ }, { "str": "marina", - "token_id": 31961, + "token_id": 31900, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275339,7 +274828,7 @@ }, { "str": "too", - "token_id": 31962, + "token_id": 31901, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275348,7 +274837,7 @@ }, { "str": "make", - "token_id": 31963, + "token_id": 31902, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275357,7 +274846,7 @@ }, { "str": "peace", - "token_id": 31964, + "token_id": 31903, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275366,7 +274855,7 @@ }, { "str": "will", - "token_id": 31965, + "token_id": 31904, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275375,7 +274864,7 @@ }, { "str": "the", - "token_id": 31966, + "token_id": 31905, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275384,7 +274873,7 @@ }, { "str": "world", - "token_id": 31967, + "token_id": 31906, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275393,7 +274882,7 @@ }, { "str": "but", - "token_id": 31968, + "token_id": 31907, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275402,7 +274891,7 @@ }, { "str": "gone", - "token_id": 31969, + "token_id": 31908, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275411,7 +274900,7 @@ }, { "str": "rouge", - "token_id": 31970, + "token_id": 31909, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275420,7 +274909,7 @@ }, { "str": "and", - "token_id": 31971, + "token_id": 31910, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275429,7 +274918,7 @@ }, { "str": "is", - "token_id": 31972, + "token_id": 31911, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275438,7 +274927,7 @@ }, { "str": "set", - "token_id": 31973, + "token_id": 31912, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275447,7 +274936,7 @@ }, { "str": "to", - "token_id": 31974, + "token_id": 31913, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275456,7 +274945,7 @@ }, { "str": "destroy", - "token_id": 31975, + "token_id": 31914, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275465,7 +274954,7 @@ }, { "str": "everyone", - "token_id": 31976, + "token_id": 31915, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275474,7 +274963,7 @@ }, { "str": "for", - "token_id": 31977, + "token_id": 31916, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275483,7 +274972,7 @@ }, { "str": "what", - "token_id": 31978, + "token_id": 31917, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275492,7 +274981,7 @@ }, { "str": "order", - "token_id": 31979, + "token_id": 31918, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275501,7 +274990,7 @@ }, { "str": "see", - "token_id": 31980, + "token_id": 31919, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275510,7 +274999,7 @@ }, { "str": "'", - "token_id": 31981, + "token_id": 31920, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275519,7 +275008,7 @@ }, { "str": "s", - "token_id": 31982, + "token_id": 31921, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275528,7 +275017,7 @@ }, { "str": "fit", - "token_id": 31983, + "token_id": 31922, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275537,7 +275026,7 @@ }, { "str": ".", - "token_id": 31984, + "token_id": 31923, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275546,7 +275035,7 @@ }, { "str": "in", - "token_id": 31985, + "token_id": 31924, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275555,7 +275044,7 @@ }, { "str": "the", - "token_id": 31986, + "token_id": 31925, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275564,7 +275053,7 @@ }, { "str": "second", - "token_id": 31987, + "token_id": 31926, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275573,7 +275062,7 @@ }, { "str": "stage", - "token_id": 31988, + "token_id": 31927, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275582,7 +275071,7 @@ }, { "str": "of", - "token_id": 31989, + "token_id": 31928, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275591,7 +275080,7 @@ }, { "str": "the", - "token_id": 31990, + "token_id": 31929, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275600,7 +275089,7 @@ }, { "str": "boss", - "token_id": 31991, + "token_id": 31930, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275609,7 +275098,7 @@ }, { "str": "fight", - "token_id": 31992, + "token_id": 31931, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275618,7 +275107,7 @@ }, { "str": ",", - "token_id": 31993, + "token_id": 31932, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275627,7 +275116,7 @@ }, { "str": "pearl", - "token_id": 31994, + "token_id": 31933, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275636,7 +275125,7 @@ }, { "str": "boyahhs", - "token_id": 31995, + "token_id": 31934, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275645,7 +275134,7 @@ }, { "str": "order", - "token_id": 31996, + "token_id": 31935, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275654,7 +275143,7 @@ }, { "str": "to", - "token_id": 31997, + "token_id": 31936, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275663,7 +275152,7 @@ }, { "str": "help", - "token_id": 31998, + "token_id": 31937, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275672,7 +275161,7 @@ }, { "str": "you", - "token_id": 31999, + "token_id": 31938, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275681,7 +275170,7 @@ }, { "str": "and", - "token_id": 32000, + "token_id": 31939, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275690,7 +275179,7 @@ }, { "str": "gives", - "token_id": 32001, + "token_id": 31940, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275699,7 +275188,7 @@ }, { "str": "you", - "token_id": 32002, + "token_id": 31941, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275708,7 +275197,7 @@ }, { "str": "upgrade", - "token_id": 32003, + "token_id": 31942, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275717,7 +275206,7 @@ }, { "str": "chips", - "token_id": 32004, + "token_id": 31943, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275726,7 +275215,7 @@ }, { "str": "to", - "token_id": 32005, + "token_id": 31944, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275735,7 +275224,7 @@ }, { "str": "beat", - "token_id": 32006, + "token_id": 31945, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275744,7 +275233,7 @@ }, { "str": "order", - "token_id": 32007, + "token_id": 31946, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275753,7 +275242,7 @@ }, { "str": ".", - "token_id": 32008, + "token_id": 31947, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275762,7 +275251,7 @@ }, { "str": "after", - "token_id": 32009, + "token_id": 31948, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275771,7 +275260,7 @@ }, { "str": "you", - "token_id": 32010, + "token_id": 31949, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275780,7 +275269,7 @@ }, { "str": "beat", - "token_id": 32011, + "token_id": 31950, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275789,7 +275278,7 @@ }, { "str": "order", - "token_id": 32012, + "token_id": 31951, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275798,7 +275287,7 @@ }, { "str": "everyone", - "token_id": 32013, + "token_id": 31952, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275807,7 +275296,7 @@ }, { "str": "is", - "token_id": 32014, + "token_id": 31953, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275816,7 +275305,7 @@ }, { "str": "saved", - "token_id": 32015, + "token_id": 31954, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275825,7 +275314,7 @@ }, { "str": "and", - "token_id": 32016, + "token_id": 31955, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275834,7 +275323,7 @@ }, { "str": "set", - "token_id": 32017, + "token_id": 31956, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275843,7 +275332,7 @@ }, { "str": "free", - "token_id": 32018, + "token_id": 31957, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275852,7 +275341,7 @@ }, { "str": "but", - "token_id": 32019, + "token_id": 31958, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275861,7 +275350,7 @@ }, { "str": ",", - "token_id": 32020, + "token_id": 31959, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275870,7 +275359,7 @@ }, { "str": "pearl", - "token_id": 32021, + "token_id": 31960, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275879,7 +275368,7 @@ }, { "str": "and", - "token_id": 32022, + "token_id": 31961, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275888,7 +275377,7 @@ }, { "str": "marina", - "token_id": 32023, + "token_id": 31962, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275897,7 +275386,7 @@ }, { "str": "memory", - "token_id": 32024, + "token_id": 31963, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275906,7 +275395,7 @@ }, { "str": "'", - "token_id": 32025, + "token_id": 31964, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275915,7 +275404,7 @@ }, { "str": "s", - "token_id": 32026, + "token_id": 31965, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275924,7 +275413,7 @@ }, { "str": "of", - "token_id": 32027, + "token_id": 31966, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275933,7 +275422,7 @@ }, { "str": "you", - "token_id": 32028, + "token_id": 31967, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275942,7 +275431,7 @@ }, { "str": "will", - "token_id": 32029, + "token_id": 31968, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275951,7 +275440,7 @@ }, { "str": "be", - "token_id": 32030, + "token_id": 31969, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275960,7 +275449,7 @@ }, { "str": "gone", - "token_id": 32031, + "token_id": 31970, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275969,7 +275458,7 @@ }, { "str": ".", - "token_id": 32032, + "token_id": 31971, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275978,7 +275467,7 @@ }, { "str": ".", - "token_id": 32033, + "token_id": 31972, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275987,7 +275476,7 @@ }, { "str": ".", - "token_id": 32034, + "token_id": 31973, "o_rev_id": 1252808014, "in": [], "out": [ @@ -275996,7 +275485,7 @@ }, { "str": ".", - "token_id": 32035, + "token_id": 31974, "o_rev_id": 1252808014, "in": [], "out": [ @@ -276005,7 +275494,7 @@ }, { "str": "[[", - "token_id": 32036, + "token_id": 31975, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276014,7 +275503,7 @@ }, { "str": "file", - "token_id": 32037, + "token_id": 31976, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276023,7 +275512,7 @@ }, { "str": ":", - "token_id": 32038, + "token_id": 31977, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276032,7 +275521,7 @@ }, { "str": "splatoon3", - "token_id": 32039, + "token_id": 31978, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276041,7 +275530,7 @@ }, { "str": ".", - "token_id": 32040, + "token_id": 31979, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276050,7 +275539,7 @@ }, { "str": "png", - "token_id": 32041, + "token_id": 31980, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276059,7 +275548,7 @@ }, { "str": "|", - "token_id": 32042, + "token_id": 31981, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276068,7 +275557,7 @@ }, { "str": "thumb", - "token_id": 32043, + "token_id": 31982, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276077,7 +275566,7 @@ }, { "str": "|", - "token_id": 32044, + "token_id": 31983, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276086,7 +275575,7 @@ }, { "str": "right", - "token_id": 32045, + "token_id": 31984, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276095,7 +275584,7 @@ }, { "str": "|", - "token_id": 32046, + "token_id": 31985, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276104,7 +275593,7 @@ }, { "str": "shows", - "token_id": 32047, + "token_id": 31986, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276113,7 +275602,7 @@ }, { "str": "the", - "token_id": 32048, + "token_id": 31987, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276122,7 +275611,7 @@ }, { "str": "depth", - "token_id": 32049, + "token_id": 31988, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276131,7 +275620,7 @@ }, { "str": "of", - "token_id": 32050, + "token_id": 31989, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276140,7 +275629,7 @@ }, { "str": "splatoon", - "token_id": 32051, + "token_id": 31990, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276149,7 +275638,7 @@ }, { "str": "3", - "token_id": 32052, + "token_id": 31991, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276158,7 +275647,7 @@ }, { "str": "]]", - "token_id": 32053, + "token_id": 31992, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276167,7 +275656,7 @@ }, { "str": "squarebut", - "token_id": 32054, + "token_id": 31993, "o_rev_id": 1252808696, "in": [], "out": [ @@ -276176,98 +275665,98 @@ }, { "str": "is", - "token_id": 32055, + "token_id": 31994, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "an", - "token_id": 32056, + "token_id": 31995, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "[[", - "token_id": 32057, + "token_id": 31996, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "goal", - "token_id": 32058, + "token_id": 31997, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "(", - "token_id": 32059, + "token_id": 31998, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "sports", - "token_id": 32060, + "token_id": 31999, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": ")", - "token_id": 32061, + "token_id": 32000, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "|", - "token_id": 32062, + "token_id": 32001, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "invasion", - "token_id": 32063, + "token_id": 32002, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "game", - "token_id": 32064, + "token_id": 32003, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "]]", - "token_id": 32065, + "token_id": 32004, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "with", - "token_id": 32066, + "token_id": 32005, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "elements", - "token_id": 32067, + "token_id": 32006, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "taken", - "token_id": 32068, + "token_id": 32007, "o_rev_id": 1253075484, "in": [], "out": [ @@ -276276,7 +275765,7 @@ }, { "str": "from", - "token_id": 32069, + "token_id": 32008, "o_rev_id": 1253075484, "in": [], "out": [ @@ -276285,35 +275774,35 @@ }, { "str": "[[", - "token_id": 32070, + "token_id": 32009, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "basketball", - "token_id": 32071, + "token_id": 32010, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "]]", - "token_id": 32072, + "token_id": 32011, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "and", - "token_id": 32073, + "token_id": 32012, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "[[", - "token_id": 32074, + "token_id": 32013, "o_rev_id": 1253075484, "in": [], "out": [ @@ -276322,14 +275811,14 @@ }, { "str": "football", - "token_id": 32075, + "token_id": 32014, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "]]", - "token_id": 32076, + "token_id": 32015, "o_rev_id": 1253075484, "in": [], "out": [ @@ -276338,322 +275827,322 @@ }, { "str": ".", - "token_id": 32077, + "token_id": 32016, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "the", - "token_id": 32078, + "token_id": 32017, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "game", - "token_id": 32079, + "token_id": 32018, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "mode", - "token_id": 32080, + "token_id": 32019, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": ".", - "token_id": 32081, + "token_id": 32020, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "a", - "token_id": 32082, + "token_id": 32021, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "power", - "token_id": 32083, + "token_id": 32022, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "clam", - "token_id": 32084, + "token_id": 32023, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "is", - "token_id": 32085, + "token_id": 32024, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "needed", - "token_id": 32086, + "token_id": 32025, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "to", - "token_id": 32087, + "token_id": 32026, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "break", - "token_id": 32088, + "token_id": 32027, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "open", - "token_id": 32089, + "token_id": 32028, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "the", - "token_id": 32090, + "token_id": 32029, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "opposing", - "token_id": 32091, + "token_id": 32030, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "basket", - "token_id": 32092, + "token_id": 32031, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "to", - "token_id": 32093, + "token_id": 32032, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "score", - "token_id": 32094, + "token_id": 32033, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "which", - "token_id": 32095, + "token_id": 32034, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "is", - "token_id": 32096, + "token_id": 32035, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "created", - "token_id": 32097, + "token_id": 32036, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "by", - "token_id": 32098, + "token_id": 32037, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "collecting", - "token_id": 32099, + "token_id": 32038, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "eight", - "token_id": 32100, + "token_id": 32039, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "regular", - "token_id": 32101, + "token_id": 32040, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "clams", - "token_id": 32102, + "token_id": 32041, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": ".", - "token_id": 32103, + "token_id": 32042, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "or", - "token_id": 32104, + "token_id": 32043, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "has", - "token_id": 32105, + "token_id": 32044, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "depleted", - "token_id": 32106, + "token_id": 32045, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "their", - "token_id": 32107, + "token_id": 32046, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "remaining", - "token_id": 32108, + "token_id": 32047, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "score", - "token_id": 32109, + "token_id": 32048, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "to", - "token_id": 32110, + "token_id": 32049, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "0", - "token_id": 32111, + "token_id": 32050, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "is", - "token_id": 32112, + "token_id": 32051, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "or", - "token_id": 32113, + "token_id": 32052, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "making", - "token_id": 32114, + "token_id": 32053, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "it", - "token_id": 32115, + "token_id": 32054, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "the", - "token_id": 32116, + "token_id": 32055, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "furthest", - "token_id": 32117, + "token_id": 32056, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "when", - "token_id": 32118, + "token_id": 32057, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "time", - "token_id": 32119, + "token_id": 32058, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "runs", - "token_id": 32120, + "token_id": 32059, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "out", - "token_id": 32121, + "token_id": 32060, "o_rev_id": 1253075484, "in": [], "out": [] }, { "str": "(", - "token_id": 32122, + "token_id": 32061, "o_rev_id": 1254456850, "in": [], "out": [ @@ -276662,7 +276151,7 @@ }, { "str": "aka", - "token_id": 32123, + "token_id": 32062, "o_rev_id": 1254456850, "in": [], "out": [ @@ -276671,7 +276160,7 @@ }, { "str": "the", - "token_id": 32124, + "token_id": 32063, "o_rev_id": 1254456850, "in": [], "out": [ @@ -276680,7 +276169,7 @@ }, { "str": "stupid", - "token_id": 32125, + "token_id": 32064, "o_rev_id": 1254456850, "in": [], "out": [ @@ -276689,7 +276178,7 @@ }, { "str": "one", - "token_id": 32126, + "token_id": 32065, "o_rev_id": 1254456850, "in": [], "out": [ @@ -276698,7 +276187,7 @@ }, { "str": ")", - "token_id": 32127, + "token_id": 32066, "o_rev_id": 1254456850, "in": [], "out": [ @@ -276707,7 +276196,7 @@ }, { "str": "(", - "token_id": 32128, + "token_id": 32067, "o_rev_id": 1254456947, "in": [], "out": [ @@ -276716,7 +276205,7 @@ }, { "str": "the", - "token_id": 32129, + "token_id": 32068, "o_rev_id": 1254456947, "in": [], "out": [ @@ -276725,7 +276214,7 @@ }, { "str": "best", - "token_id": 32130, + "token_id": 32069, "o_rev_id": 1254456947, "in": [], "out": [ @@ -276734,7 +276223,7 @@ }, { "str": "mode", - "token_id": 32131, + "token_id": 32070, "o_rev_id": 1254456947, "in": [], "out": [ @@ -276743,7 +276232,7 @@ }, { "str": ")", - "token_id": 32132, + "token_id": 32071, "o_rev_id": 1254456947, "in": [], "out": [ @@ -276752,7 +276241,7 @@ }, { "str": "(", - "token_id": 32133, + "token_id": 32072, "o_rev_id": 1254457013, "in": [], "out": [ @@ -276761,7 +276250,7 @@ }, { "str": "i", - "token_id": 32134, + "token_id": 32073, "o_rev_id": 1254457013, "in": [], "out": [ @@ -276770,7 +276259,7 @@ }, { "str": "forgot", - "token_id": 32135, + "token_id": 32074, "o_rev_id": 1254457013, "in": [], "out": [ @@ -276779,7 +276268,7 @@ }, { "str": "this", - "token_id": 32136, + "token_id": 32075, "o_rev_id": 1254457013, "in": [], "out": [ @@ -276788,7 +276277,7 @@ }, { "str": "existed", - "token_id": 32137, + "token_id": 32076, "o_rev_id": 1254457013, "in": [], "out": [ @@ -276797,7 +276286,7 @@ }, { "str": "tbh", - "token_id": 32138, + "token_id": 32077, "o_rev_id": 1254457013, "in": [], "out": [ @@ -276806,7 +276295,7 @@ }, { "str": ")", - "token_id": 32139, + "token_id": 32078, "o_rev_id": 1254457013, "in": [], "out": [ @@ -276815,7 +276304,7 @@ }, { "str": "afollowing", - "token_id": 32140, + "token_id": 32079, "o_rev_id": 1254457505, "in": [], "out": [ @@ -276824,7 +276313,7 @@ }, { "str": "craiga", - "token_id": 32141, + "token_id": 32080, "o_rev_id": 1254458503, "in": [], "out": [ @@ -276833,7 +276322,7 @@ }, { "str": "(", - "token_id": 32142, + "token_id": 32081, "o_rev_id": 1254458666, "in": [], "out": [ @@ -276842,7 +276331,7 @@ }, { "str": "a", - "token_id": 32143, + "token_id": 32082, "o_rev_id": 1254458666, "in": [], "out": [ @@ -276851,7 +276340,7 @@ }, { "str": "good", - "token_id": 32144, + "token_id": 32083, "o_rev_id": 1254458666, "in": [], "out": [ @@ -276860,7 +276349,7 @@ }, { "str": "game", - "token_id": 32145, + "token_id": 32084, "o_rev_id": 1254458666, "in": [], "out": [ @@ -276869,7 +276358,7 @@ }, { "str": ")", - "token_id": 32146, + "token_id": 32085, "o_rev_id": 1254458666, "in": [], "out": [ @@ -276878,7 +276367,7 @@ }, { "str": "yess", - "token_id": 32147, + "token_id": 32086, "o_rev_id": 1254458895, "in": [], "out": [ @@ -276887,7 +276376,7 @@ }, { "str": "king", - "token_id": 32148, + "token_id": 32087, "o_rev_id": 1254458895, "in": [], "out": [ @@ -276896,63 +276385,63 @@ }, { "str": "for", - "token_id": 32149, + "token_id": 32088, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "three", - "token_id": 32150, + "token_id": 32089, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "minutes", - "token_id": 32151, + "token_id": 32090, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": ".", - "token_id": 32152, + "token_id": 32091, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "a", - "token_id": 32153, + "token_id": 32092, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "game", - "token_id": 32154, + "token_id": 32093, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "lasts", - "token_id": 32155, + "token_id": 32094, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "for", - "token_id": 32156, + "token_id": 32095, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "a", - "token_id": 32157, + "token_id": 32096, "o_rev_id": 1255925236, "in": [ 1285128561 @@ -276963,7 +276452,7 @@ }, { "str": "maximum", - "token_id": 32158, + "token_id": 32097, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -276978,7 +276467,7 @@ }, { "str": "of", - "token_id": 32159, + "token_id": 32098, "o_rev_id": 1255925236, "in": [ 1285128561 @@ -276989,91 +276478,91 @@ }, { "str": "five", - "token_id": 32160, + "token_id": 32099, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "minutes", - "token_id": 32161, + "token_id": 32100, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "plus", - "token_id": 32162, + "token_id": 32101, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "[[", - "token_id": 32163, + "token_id": 32102, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "overtime", - "token_id": 32164, + "token_id": 32103, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "(", - "token_id": 32165, + "token_id": 32104, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "sports", - "token_id": 32166, + "token_id": 32105, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": ")", - "token_id": 32167, + "token_id": 32106, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "|", - "token_id": 32168, + "token_id": 32107, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "overtime", - "token_id": 32169, + "token_id": 32108, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "]]", - "token_id": 32170, + "token_id": 32109, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "if", - "token_id": 32171, + "token_id": 32110, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "certain", - "token_id": 32172, + "token_id": 32111, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -277088,7 +276577,7 @@ }, { "str": "conditions", - "token_id": 32173, + "token_id": 32112, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -277103,7 +276592,7 @@ }, { "str": "depending", - "token_id": 32174, + "token_id": 32113, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -277118,7 +276607,7 @@ }, { "str": "on", - "token_id": 32175, + "token_id": 32114, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -277133,14 +276622,14 @@ }, { "str": "the", - "token_id": 32176, + "token_id": 32115, "o_rev_id": 1255925236, "in": [], "out": [] }, { "str": "game", - "token_id": 32177, + "token_id": 32116, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -277155,7 +276644,7 @@ }, { "str": "mode", - "token_id": 32178, + "token_id": 32117, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -277170,7 +276659,7 @@ }, { "str": "are", - "token_id": 32179, + "token_id": 32118, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -277185,7 +276674,7 @@ }, { "str": "met", - "token_id": 32180, + "token_id": 32119, "o_rev_id": 1255925236, "in": [ 1285128561, @@ -277200,21 +276689,21 @@ }, { "str": "while", - "token_id": 32181, + "token_id": 32120, "o_rev_id": 1257138863, "in": [], "out": [] }, { "str": ",", - "token_id": 32182, + "token_id": 32121, "o_rev_id": 1257138863, "in": [], "out": [] }, { "str": "souichi", - "token_id": 32183, + "token_id": 32122, "o_rev_id": 1257403842, "in": [ 1274537679 @@ -277226,7 +276715,7 @@ }, { "str": "(", - "token_id": 32184, + "token_id": 32123, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277235,7 +276724,7 @@ }, { "str": "2", - "token_id": 32185, + "token_id": 32124, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277244,7 +276733,7 @@ }, { "str": ".", - "token_id": 32186, + "token_id": 32125, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277253,7 +276742,7 @@ }, { "str": "64", - "token_id": 32187, + "token_id": 32126, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277262,7 +276751,7 @@ }, { "str": "copies", - "token_id": 32188, + "token_id": 32127, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277271,7 +276760,7 @@ }, { "str": "in", - "token_id": 32189, + "token_id": 32128, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277280,7 +276769,7 @@ }, { "str": "the", - "token_id": 32190, + "token_id": 32129, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277289,7 +276778,7 @@ }, { "str": "first", - "token_id": 32191, + "token_id": 32130, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277298,7 +276787,7 @@ }, { "str": "week", - "token_id": 32192, + "token_id": 32131, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277307,7 +276796,7 @@ }, { "str": "alone", - "token_id": 32193, + "token_id": 32132, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277316,7 +276805,7 @@ }, { "str": ")", - "token_id": 32194, + "token_id": 32133, "o_rev_id": 1257461075, "in": [], "out": [ @@ -277325,49 +276814,49 @@ }, { "str": "[[", - "token_id": 32195, + "token_id": 32134, "o_rev_id": 1257461954, "in": [], "out": [] }, { "str": "roguelite", - "token_id": 32196, + "token_id": 32135, "o_rev_id": 1257461954, "in": [], "out": [] }, { "str": "]]", - "token_id": 32197, + "token_id": 32136, "o_rev_id": 1257461954, "in": [], "out": [] }, { "str": "{{", - "token_id": 32198, + "token_id": 32137, "o_rev_id": 1260113253, "in": [], "out": [] }, { "str": "refh", - "token_id": 32199, + "token_id": 32138, "o_rev_id": 1260113253, "in": [], "out": [] }, { "str": "}}", - "token_id": 32200, + "token_id": 32139, "o_rev_id": 1260113253, "in": [], "out": [] }, { "str": "[[", - "token_id": 32201, + "token_id": 32140, "o_rev_id": 1263482059, "in": [], "out": [ @@ -277376,7 +276865,7 @@ }, { "str": "]]", - "token_id": 32202, + "token_id": 32141, "o_rev_id": 1263482059, "in": [], "out": [ @@ -277385,7 +276874,7 @@ }, { "str": "million", - "token_id": 32203, + "token_id": 32142, "o_rev_id": 1269572008, "in": [], "out": [ @@ -277394,7 +276883,7 @@ }, { "str": "it", - "token_id": 32204, + "token_id": 32143, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277403,7 +276892,7 @@ }, { "str": "sold", - "token_id": 32205, + "token_id": 32144, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277412,7 +276901,7 @@ }, { "str": "at", - "token_id": 32206, + "token_id": 32145, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277421,7 +276910,7 @@ }, { "str": "least", - "token_id": 32207, + "token_id": 32146, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277430,7 +276919,7 @@ }, { "str": "1", - "token_id": 32208, + "token_id": 32147, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277439,7 +276928,7 @@ }, { "str": "copy", - "token_id": 32209, + "token_id": 32148, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277448,7 +276937,7 @@ }, { "str": "in", - "token_id": 32210, + "token_id": 32149, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277457,7 +276946,7 @@ }, { "str": "canada", - "token_id": 32211, + "token_id": 32150, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277466,7 +276955,7 @@ }, { "str": ".", - "token_id": 32212, + "token_id": 32151, "o_rev_id": 1269633980, "in": [], "out": [ @@ -277475,7 +276964,7 @@ }, { "str": "a", - "token_id": 32213, + "token_id": 32152, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277484,7 +276973,7 @@ }, { "str": "[[", - "token_id": 32214, + "token_id": 32153, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277493,7 +276982,7 @@ }, { "str": "virtual", - "token_id": 32215, + "token_id": 32154, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277502,7 +276991,7 @@ }, { "str": "reality", - "token_id": 32216, + "token_id": 32155, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277511,7 +277000,7 @@ }, { "str": "]]", - "token_id": 32217, + "token_id": 32156, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277520,7 +277009,7 @@ }, { "str": "'", - "token_id": 32218, + "token_id": 32157, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277529,7 +277018,7 @@ }, { "str": "'", - "token_id": 32219, + "token_id": 32158, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277538,7 +277027,7 @@ }, { "str": "'", - "token_id": 32220, + "token_id": 32159, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277547,7 +277036,7 @@ }, { "str": "'", - "token_id": 32221, + "token_id": 32160, "o_rev_id": 1269982863, "in": [], "out": [ @@ -277556,7 +277045,7 @@ }, { "str": "first", - "token_id": 32222, + "token_id": 32161, "o_rev_id": 1270574306, "in": [], "out": [ @@ -277565,7 +277054,7 @@ }, { "str": "2024", - "token_id": 32223, + "token_id": 32162, "o_rev_id": 1273101930, "in": [], "out": [ @@ -277574,7 +277063,7 @@ }, { "str": "art", - "token_id": 32224, + "token_id": 32163, "o_rev_id": 1274537679, "in": [], "out": [ @@ -277583,7 +277072,7 @@ }, { "str": "cover", - "token_id": 32225, + "token_id": 32164, "o_rev_id": 1274537679, "in": [], "out": [ @@ -277592,7 +277081,7 @@ }, { "str": "of", - "token_id": 32226, + "token_id": 32165, "o_rev_id": 1274537679, "in": [], "out": [ @@ -277601,7 +277090,7 @@ }, { "str": "everybody", - "token_id": 32227, + "token_id": 32166, "o_rev_id": 1274537679, "in": [], "out": [ @@ -277610,7 +277099,7 @@ }, { "str": ",", - "token_id": 32228, + "token_id": 32167, "o_rev_id": 1274537679, "in": [], "out": [ @@ -277619,7 +277108,7 @@ }, { "str": "getting", - "token_id": 32229, + "token_id": 32168, "o_rev_id": 1274537679, "in": [], "out": [ @@ -277628,7 +277117,7 @@ }, { "str": "splatted", - "token_id": 32230, + "token_id": 32169, "o_rev_id": 1274537679, "in": [], "out": [ @@ -277637,140 +277126,140 @@ }, { "str": "include", - "token_id": 32231, + "token_id": 32170, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "a", - "token_id": 32232, + "token_id": 32171, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "sub", - "token_id": 32233, + "token_id": 32172, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "weapon", - "token_id": 32234, + "token_id": 32173, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "and", - "token_id": 32235, + "token_id": 32174, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "a", - "token_id": 32236, + "token_id": 32175, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "special", - "token_id": 32237, + "token_id": 32176, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "weapon", - "token_id": 32238, + "token_id": 32177, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": ".", - "token_id": 32239, + "token_id": 32178, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": ".", - "token_id": 32240, + "token_id": 32179, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "a", - "token_id": 32241, + "token_id": 32180, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "powerful", - "token_id": 32242, + "token_id": 32181, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "effect", - "token_id": 32243, + "token_id": 32182, "o_rev_id": 1275996076, "in": [], "out": [] }, { "str": "main", - "token_id": 32244, + "token_id": 32183, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "2", - "token_id": 32245, + "token_id": 32184, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "returned", - "token_id": 32246, + "token_id": 32185, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": ",", - "token_id": 32247, + "token_id": 32186, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "with", - "token_id": 32248, + "token_id": 32187, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "the", - "token_id": 32249, + "token_id": 32188, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "edition", - "token_id": 32250, + "token_id": 32189, "o_rev_id": 1275996490, "in": [], "out": [ @@ -277779,70 +277268,70 @@ }, { "str": "of", - "token_id": 32251, + "token_id": 32190, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "15", - "token_id": 32252, + "token_id": 32191, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "new", - "token_id": 32253, + "token_id": 32192, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "ones", - "token_id": 32254, + "token_id": 32193, "o_rev_id": 1275996490, "in": [], "out": [] }, { "str": "inspired", - "token_id": 32255, + "token_id": 32194, "o_rev_id": 1275997264, "in": [], "out": [] }, { "str": "by", - "token_id": 32256, + "token_id": 32195, "o_rev_id": 1275997264, "in": [], "out": [] }, { "str": "[[", - "token_id": 32257, + "token_id": 32196, "o_rev_id": 1275997264, "in": [], "out": [] }, { "str": "american", - "token_id": 32258, + "token_id": 32197, "o_rev_id": 1275997264, "in": [], "out": [] }, { "str": "]]", - "token_id": 32259, + "token_id": 32198, "o_rev_id": 1275997264, "in": [], "out": [] }, { "str": "4", - "token_id": 32260, + "token_id": 32199, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277851,7 +277340,7 @@ }, { "str": "with", - "token_id": 32261, + "token_id": 32200, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277860,7 +277349,7 @@ }, { "str": "a", - "token_id": 32262, + "token_id": 32201, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277869,7 +277358,7 @@ }, { "str": "slim", - "token_id": 32263, + "token_id": 32202, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277878,7 +277367,7 @@ }, { "str": "chance", - "token_id": 32264, + "token_id": 32203, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277887,7 +277376,7 @@ }, { "str": "of", - "token_id": 32265, + "token_id": 32204, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277896,7 +277385,7 @@ }, { "str": "having", - "token_id": 32266, + "token_id": 32205, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277905,7 +277394,7 @@ }, { "str": "a", - "token_id": 32267, + "token_id": 32206, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277914,7 +277403,7 @@ }, { "str": "5th", - "token_id": 32268, + "token_id": 32207, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277923,7 +277412,7 @@ }, { "str": "wave", - "token_id": 32269, + "token_id": 32208, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277932,7 +277421,7 @@ }, { "str": "appear", - "token_id": 32270, + "token_id": 32209, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277941,7 +277430,7 @@ }, { "str": ".", - "token_id": 32271, + "token_id": 32210, "o_rev_id": 1279643432, "in": [], "out": [ @@ -277950,7 +277439,7 @@ }, { "str": "his", - "token_id": 32272, + "token_id": 32211, "o_rev_id": 1284954029, "in": [], "out": [ @@ -277959,7 +277448,7 @@ }, { "str": "turf", - "token_id": 32273, + "token_id": 32212, "o_rev_id": 1284961846, "in": [ 1285111616, @@ -277975,7 +277464,7 @@ }, { "str": "war", - "token_id": 32274, + "token_id": 32213, "o_rev_id": 1284961846, "in": [ 1285111616, @@ -277991,7 +277480,7 @@ }, { "str": ".", - "token_id": 32275, + "token_id": 32214, "o_rev_id": 1284961846, "in": [ 1285111616, @@ -278007,7 +277496,7 @@ }, { "str": "in", - "token_id": 32276, + "token_id": 32215, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278016,7 +277505,7 @@ }, { "str": "addition", - "token_id": 32277, + "token_id": 32216, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278025,7 +277514,7 @@ }, { "str": "there", - "token_id": 32278, + "token_id": 32217, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278034,7 +277523,7 @@ }, { "str": "are", - "token_id": 32279, + "token_id": 32218, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278043,7 +277532,7 @@ }, { "str": "also", - "token_id": 32280, + "token_id": 32219, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278052,7 +277541,7 @@ }, { "str": "\"", - "token_id": 32281, + "token_id": 32220, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278061,7 +277550,7 @@ }, { "str": "fizzbangs", - "token_id": 32282, + "token_id": 32221, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278070,7 +277559,7 @@ }, { "str": "\"", - "token_id": 32283, + "token_id": 32222, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278079,7 +277568,7 @@ }, { "str": ",", - "token_id": 32284, + "token_id": 32223, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278088,7 +277577,7 @@ }, { "str": "which", - "token_id": 32285, + "token_id": 32224, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278097,7 +277586,7 @@ }, { "str": "are", - "token_id": 32286, + "token_id": 32225, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278106,7 +277595,7 @@ }, { "str": "mini", - "token_id": 32287, + "token_id": 32226, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278115,7 +277604,7 @@ }, { "str": "-", - "token_id": 32288, + "token_id": 32227, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278124,7 +277613,7 @@ }, { "str": "bombs", - "token_id": 32289, + "token_id": 32228, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278133,7 +277622,7 @@ }, { "str": "you", - "token_id": 32290, + "token_id": 32229, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278142,7 +277631,7 @@ }, { "str": "can", - "token_id": 32291, + "token_id": 32230, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278151,7 +277640,7 @@ }, { "str": "use", - "token_id": 32292, + "token_id": 32231, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278160,7 +277649,7 @@ }, { "str": "in", - "token_id": 32293, + "token_id": 32232, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278169,7 +277658,7 @@ }, { "str": "splatfests", - "token_id": 32294, + "token_id": 32233, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278178,7 +277667,7 @@ }, { "str": ".", - "token_id": 32295, + "token_id": 32234, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278187,7 +277676,7 @@ }, { "str": "unlike", - "token_id": 32296, + "token_id": 32235, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278196,7 +277685,7 @@ }, { "str": "your", - "token_id": 32297, + "token_id": 32236, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278205,7 +277694,7 @@ }, { "str": "sub", - "token_id": 32298, + "token_id": 32237, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278214,7 +277703,7 @@ }, { "str": "-", - "token_id": 32299, + "token_id": 32238, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278223,7 +277712,7 @@ }, { "str": "weapon", - "token_id": 32300, + "token_id": 32239, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278232,7 +277721,7 @@ }, { "str": ",", - "token_id": 32301, + "token_id": 32240, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278241,7 +277730,7 @@ }, { "str": "these", - "token_id": 32302, + "token_id": 32241, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278250,7 +277739,7 @@ }, { "str": "bombs", - "token_id": 32303, + "token_id": 32242, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278259,7 +277748,7 @@ }, { "str": "do", - "token_id": 32304, + "token_id": 32243, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278268,7 +277757,7 @@ }, { "str": "not", - "token_id": 32305, + "token_id": 32244, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278277,7 +277766,7 @@ }, { "str": "cost", - "token_id": 32306, + "token_id": 32245, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278286,7 +277775,7 @@ }, { "str": "any", - "token_id": 32307, + "token_id": 32246, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278295,7 +277784,7 @@ }, { "str": "ink", - "token_id": 32308, + "token_id": 32247, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278304,7 +277793,7 @@ }, { "str": "to", - "token_id": 32309, + "token_id": 32248, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278313,7 +277802,7 @@ }, { "str": "use", - "token_id": 32310, + "token_id": 32249, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278322,7 +277811,7 @@ }, { "str": ",", - "token_id": 32311, + "token_id": 32250, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278331,7 +277820,7 @@ }, { "str": "but", - "token_id": 32312, + "token_id": 32251, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278340,7 +277829,7 @@ }, { "str": "are", - "token_id": 32313, + "token_id": 32252, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278349,7 +277838,7 @@ }, { "str": "limited", - "token_id": 32314, + "token_id": 32253, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278358,7 +277847,7 @@ }, { "str": ".", - "token_id": 32315, + "token_id": 32254, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278367,7 +277856,7 @@ }, { "str": "you", - "token_id": 32316, + "token_id": 32255, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278376,7 +277865,7 @@ }, { "str": "get", - "token_id": 32317, + "token_id": 32256, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278385,7 +277874,7 @@ }, { "str": "these", - "token_id": 32318, + "token_id": 32257, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278394,7 +277883,7 @@ }, { "str": "when", - "token_id": 32319, + "token_id": 32258, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278403,7 +277892,7 @@ }, { "str": "you", - "token_id": 32320, + "token_id": 32259, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278412,7 +277901,7 @@ }, { "str": "spawn", - "token_id": 32321, + "token_id": 32260, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278421,7 +277910,7 @@ }, { "str": "in", - "token_id": 32322, + "token_id": 32261, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278430,7 +277919,7 @@ }, { "str": ",", - "token_id": 32323, + "token_id": 32262, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278439,7 +277928,7 @@ }, { "str": "and", - "token_id": 32324, + "token_id": 32263, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278448,7 +277937,7 @@ }, { "str": "also", - "token_id": 32325, + "token_id": 32264, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278457,7 +277946,7 @@ }, { "str": "when", - "token_id": 32326, + "token_id": 32265, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278466,7 +277955,7 @@ }, { "str": "you", - "token_id": 32327, + "token_id": 32266, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278475,7 +277964,7 @@ }, { "str": "splat", - "token_id": 32328, + "token_id": 32267, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278484,7 +277973,7 @@ }, { "str": "other", - "token_id": 32329, + "token_id": 32268, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278493,7 +277982,7 @@ }, { "str": "players", - "token_id": 32330, + "token_id": 32269, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278502,7 +277991,7 @@ }, { "str": "who", - "token_id": 32331, + "token_id": 32270, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278511,7 +278000,7 @@ }, { "str": "have", - "token_id": 32332, + "token_id": 32271, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278520,7 +278009,7 @@ }, { "str": "some", - "token_id": 32333, + "token_id": 32272, "o_rev_id": 1284961846, "in": [], "out": [ @@ -278529,7 +278018,7 @@ }, { "str": "which", - "token_id": 32334, + "token_id": 32273, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278538,7 +278027,7 @@ }, { "str": "include", - "token_id": 32335, + "token_id": 32274, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278547,7 +278036,7 @@ }, { "str": "clam", - "token_id": 32336, + "token_id": 32275, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278556,7 +278045,7 @@ }, { "str": "blitz", - "token_id": 32337, + "token_id": 32276, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278565,7 +278054,7 @@ }, { "str": ",", - "token_id": 32338, + "token_id": 32277, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278574,7 +278063,7 @@ }, { "str": "splat", - "token_id": 32339, + "token_id": 32278, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278583,7 +278072,7 @@ }, { "str": "zones", - "token_id": 32340, + "token_id": 32279, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278592,7 +278081,7 @@ }, { "str": ",", - "token_id": 32341, + "token_id": 32280, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278601,7 +278090,7 @@ }, { "str": "tower", - "token_id": 32342, + "token_id": 32281, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278610,7 +278099,7 @@ }, { "str": "control", - "token_id": 32343, + "token_id": 32282, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278619,7 +278108,7 @@ }, { "str": ",", - "token_id": 32344, + "token_id": 32283, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278628,7 +278117,7 @@ }, { "str": "and", - "token_id": 32345, + "token_id": 32284, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278637,7 +278126,7 @@ }, { "str": "rainmaker", - "token_id": 32346, + "token_id": 32285, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278646,7 +278135,7 @@ }, { "str": ".", - "token_id": 32347, + "token_id": 32286, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278655,7 +278144,7 @@ }, { "str": "one", - "token_id": 32348, + "token_id": 32287, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278664,7 +278153,7 @@ }, { "str": "of", - "token_id": 32349, + "token_id": 32288, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278673,7 +278162,7 @@ }, { "str": "the", - "token_id": 32350, + "token_id": 32289, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278682,7 +278171,7 @@ }, { "str": "key", - "token_id": 32351, + "token_id": 32290, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278691,7 +278180,7 @@ }, { "str": "differences", - "token_id": 32352, + "token_id": 32291, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278700,7 +278189,7 @@ }, { "str": "between", - "token_id": 32353, + "token_id": 32292, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278709,7 +278198,7 @@ }, { "str": "anarchy", - "token_id": 32354, + "token_id": 32293, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278718,7 +278207,7 @@ }, { "str": "battles", - "token_id": 32355, + "token_id": 32294, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278727,7 +278216,7 @@ }, { "str": "and", - "token_id": 32356, + "token_id": 32295, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278736,7 +278225,7 @@ }, { "str": "turf", - "token_id": 32357, + "token_id": 32296, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278745,7 +278234,7 @@ }, { "str": "war", - "token_id": 32358, + "token_id": 32297, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278754,7 +278243,7 @@ }, { "str": "is", - "token_id": 32359, + "token_id": 32298, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278763,7 +278252,7 @@ }, { "str": "that", - "token_id": 32360, + "token_id": 32299, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278772,7 +278261,7 @@ }, { "str": "anarchy", - "token_id": 32361, + "token_id": 32300, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278781,7 +278270,7 @@ }, { "str": "battles", - "token_id": 32362, + "token_id": 32301, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278790,7 +278279,7 @@ }, { "str": "put", - "token_id": 32363, + "token_id": 32302, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278799,7 +278288,7 @@ }, { "str": "you", - "token_id": 32364, + "token_id": 32303, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278808,7 +278297,7 @@ }, { "str": "on", - "token_id": 32365, + "token_id": 32304, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278817,7 +278306,7 @@ }, { "str": "a", - "token_id": 32366, + "token_id": 32305, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278826,7 +278315,7 @@ }, { "str": "ranking", - "token_id": 32367, + "token_id": 32306, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278835,7 +278324,7 @@ }, { "str": "system", - "token_id": 32368, + "token_id": 32307, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278844,7 +278333,7 @@ }, { "str": ".", - "token_id": 32369, + "token_id": 32308, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278853,7 +278342,7 @@ }, { "str": "based", - "token_id": 32370, + "token_id": 32309, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278862,7 +278351,7 @@ }, { "str": "on", - "token_id": 32371, + "token_id": 32310, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278871,7 +278360,7 @@ }, { "str": "how", - "token_id": 32372, + "token_id": 32311, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278880,7 +278369,7 @@ }, { "str": "well", - "token_id": 32373, + "token_id": 32312, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278889,7 +278378,7 @@ }, { "str": "you", - "token_id": 32374, + "token_id": 32313, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278898,7 +278387,7 @@ }, { "str": "play", - "token_id": 32375, + "token_id": 32314, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278907,7 +278396,7 @@ }, { "str": ",", - "token_id": 32376, + "token_id": 32315, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278916,7 +278405,7 @@ }, { "str": "you", - "token_id": 32377, + "token_id": 32316, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278925,7 +278414,7 @@ }, { "str": "will", - "token_id": 32378, + "token_id": 32317, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278934,7 +278423,7 @@ }, { "str": "be", - "token_id": 32379, + "token_id": 32318, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278943,7 +278432,7 @@ }, { "str": "assigned", - "token_id": 32380, + "token_id": 32319, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278952,7 +278441,7 @@ }, { "str": "a", - "token_id": 32381, + "token_id": 32320, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278961,7 +278450,7 @@ }, { "str": "letter", - "token_id": 32382, + "token_id": 32321, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278970,7 +278459,7 @@ }, { "str": "grade", - "token_id": 32383, + "token_id": 32322, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278979,7 +278468,7 @@ }, { "str": ".", - "token_id": 32384, + "token_id": 32323, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278988,7 +278477,7 @@ }, { "str": "this", - "token_id": 32385, + "token_id": 32324, "o_rev_id": 1284965656, "in": [], "out": [ @@ -278997,7 +278486,7 @@ }, { "str": "determines", - "token_id": 32386, + "token_id": 32325, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279006,7 +278495,7 @@ }, { "str": "the", - "token_id": 32387, + "token_id": 32326, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279015,7 +278504,7 @@ }, { "str": "skill", - "token_id": 32388, + "token_id": 32327, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279024,7 +278513,7 @@ }, { "str": "of", - "token_id": 32389, + "token_id": 32328, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279033,7 +278522,7 @@ }, { "str": "the", - "token_id": 32390, + "token_id": 32329, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279042,7 +278531,7 @@ }, { "str": "people", - "token_id": 32391, + "token_id": 32330, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279051,7 +278540,7 @@ }, { "str": "you", - "token_id": 32392, + "token_id": 32331, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279060,7 +278549,7 @@ }, { "str": "play", - "token_id": 32393, + "token_id": 32332, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279069,7 +278558,7 @@ }, { "str": "against", - "token_id": 32394, + "token_id": 32333, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279078,7 +278567,7 @@ }, { "str": "and", - "token_id": 32395, + "token_id": 32334, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279087,7 +278576,7 @@ }, { "str": "with", - "token_id": 32396, + "token_id": 32335, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279096,7 +278585,7 @@ }, { "str": ".", - "token_id": 32397, + "token_id": 32336, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279105,7 +278594,7 @@ }, { "str": "when", - "token_id": 32398, + "token_id": 32337, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279114,7 +278603,7 @@ }, { "str": "you", - "token_id": 32399, + "token_id": 32338, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279123,7 +278612,7 @@ }, { "str": "start", - "token_id": 32400, + "token_id": 32339, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279132,7 +278621,7 @@ }, { "str": "out", - "token_id": 32401, + "token_id": 32340, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279141,7 +278630,7 @@ }, { "str": "playing", - "token_id": 32402, + "token_id": 32341, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279150,7 +278639,7 @@ }, { "str": "you", - "token_id": 32403, + "token_id": 32342, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279159,7 +278648,7 @@ }, { "str": "will", - "token_id": 32404, + "token_id": 32343, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279168,7 +278657,7 @@ }, { "str": "have", - "token_id": 32405, + "token_id": 32344, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279177,7 +278666,7 @@ }, { "str": "a", - "token_id": 32406, + "token_id": 32345, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279186,7 +278675,7 @@ }, { "str": "letter", - "token_id": 32407, + "token_id": 32346, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279195,7 +278684,7 @@ }, { "str": "grade", - "token_id": 32408, + "token_id": 32347, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279204,7 +278693,7 @@ }, { "str": "of", - "token_id": 32409, + "token_id": 32348, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279213,7 +278702,7 @@ }, { "str": "a", - "token_id": 32410, + "token_id": 32349, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279222,7 +278711,7 @@ }, { "str": "c", - "token_id": 32411, + "token_id": 32350, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279231,7 +278720,7 @@ }, { "str": "-", - "token_id": 32412, + "token_id": 32351, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279240,7 +278729,7 @@ }, { "str": ".", - "token_id": 32413, + "token_id": 32352, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279249,7 +278738,7 @@ }, { "str": "when", - "token_id": 32414, + "token_id": 32353, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279258,7 +278747,7 @@ }, { "str": "you", - "token_id": 32415, + "token_id": 32354, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279267,7 +278756,7 @@ }, { "str": "get", - "token_id": 32416, + "token_id": 32355, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279276,7 +278765,7 @@ }, { "str": "enough", - "token_id": 32417, + "token_id": 32356, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279285,7 +278774,7 @@ }, { "str": "ranking", - "token_id": 32418, + "token_id": 32357, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279294,7 +278783,7 @@ }, { "str": "points", - "token_id": 32419, + "token_id": 32358, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279303,7 +278792,7 @@ }, { "str": "you", - "token_id": 32420, + "token_id": 32359, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279312,7 +278801,7 @@ }, { "str": "can", - "token_id": 32421, + "token_id": 32360, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279321,7 +278810,7 @@ }, { "str": "eventually", - "token_id": 32422, + "token_id": 32361, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279330,7 +278819,7 @@ }, { "str": "increase", - "token_id": 32423, + "token_id": 32362, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279339,7 +278828,7 @@ }, { "str": "your", - "token_id": 32424, + "token_id": 32363, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279348,7 +278837,7 @@ }, { "str": "letter", - "token_id": 32425, + "token_id": 32364, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279357,7 +278846,7 @@ }, { "str": "grade", - "token_id": 32426, + "token_id": 32365, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279366,7 +278855,7 @@ }, { "str": "by", - "token_id": 32427, + "token_id": 32366, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279375,7 +278864,7 @@ }, { "str": "participating", - "token_id": 32428, + "token_id": 32367, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279384,7 +278873,7 @@ }, { "str": "in", - "token_id": 32429, + "token_id": 32368, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279393,7 +278882,7 @@ }, { "str": "rank", - "token_id": 32430, + "token_id": 32369, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279402,7 +278891,7 @@ }, { "str": "-", - "token_id": 32431, + "token_id": 32370, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279411,7 +278900,7 @@ }, { "str": "up", - "token_id": 32432, + "token_id": 32371, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279420,7 +278909,7 @@ }, { "str": "battles", - "token_id": 32433, + "token_id": 32372, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279429,7 +278918,7 @@ }, { "str": ".", - "token_id": 32434, + "token_id": 32373, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279438,7 +278927,7 @@ }, { "str": "there", - "token_id": 32435, + "token_id": 32374, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279447,7 +278936,7 @@ }, { "str": "are", - "token_id": 32436, + "token_id": 32375, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279456,7 +278945,7 @@ }, { "str": "two", - "token_id": 32437, + "token_id": 32376, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279465,7 +278954,7 @@ }, { "str": "different", - "token_id": 32438, + "token_id": 32377, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279474,7 +278963,7 @@ }, { "str": "ways", - "token_id": 32439, + "token_id": 32378, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279483,7 +278972,7 @@ }, { "str": "you", - "token_id": 32440, + "token_id": 32379, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279492,7 +278981,7 @@ }, { "str": "can", - "token_id": 32441, + "token_id": 32380, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279501,7 +278990,7 @@ }, { "str": "play", - "token_id": 32442, + "token_id": 32381, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279510,7 +278999,7 @@ }, { "str": "anarchy", - "token_id": 32443, + "token_id": 32382, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279519,7 +279008,7 @@ }, { "str": "battles", - "token_id": 32444, + "token_id": 32383, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279528,7 +279017,7 @@ }, { "str": ".", - "token_id": 32445, + "token_id": 32384, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279537,7 +279026,7 @@ }, { "str": "you", - "token_id": 32446, + "token_id": 32385, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279546,7 +279035,7 @@ }, { "str": "can", - "token_id": 32447, + "token_id": 32386, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279555,7 +279044,7 @@ }, { "str": "choose", - "token_id": 32448, + "token_id": 32387, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279564,7 +279053,7 @@ }, { "str": "to", - "token_id": 32449, + "token_id": 32388, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279573,7 +279062,7 @@ }, { "str": "play", - "token_id": 32450, + "token_id": 32389, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279582,7 +279071,7 @@ }, { "str": "anarchy", - "token_id": 32451, + "token_id": 32390, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279591,7 +279080,7 @@ }, { "str": "(", - "token_id": 32452, + "token_id": 32391, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279600,7 +279089,7 @@ }, { "str": "open", - "token_id": 32453, + "token_id": 32392, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279609,7 +279098,7 @@ }, { "str": ")", - "token_id": 32454, + "token_id": 32393, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279618,7 +279107,7 @@ }, { "str": "or", - "token_id": 32455, + "token_id": 32394, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279627,7 +279116,7 @@ }, { "str": "anarchy", - "token_id": 32456, + "token_id": 32395, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279636,7 +279125,7 @@ }, { "str": "(", - "token_id": 32457, + "token_id": 32396, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279645,7 +279134,7 @@ }, { "str": "series", - "token_id": 32458, + "token_id": 32397, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279654,7 +279143,7 @@ }, { "str": ")", - "token_id": 32459, + "token_id": 32398, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279663,7 +279152,7 @@ }, { "str": ".", - "token_id": 32460, + "token_id": 32399, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279672,7 +279161,7 @@ }, { "str": "in", - "token_id": 32461, + "token_id": 32400, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279681,7 +279170,7 @@ }, { "str": "anarchy", - "token_id": 32462, + "token_id": 32401, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279690,7 +279179,7 @@ }, { "str": "(", - "token_id": 32463, + "token_id": 32402, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279699,7 +279188,7 @@ }, { "str": "open", - "token_id": 32464, + "token_id": 32403, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279708,7 +279197,7 @@ }, { "str": ")", - "token_id": 32465, + "token_id": 32404, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279717,7 +279206,7 @@ }, { "str": "each", - "token_id": 32466, + "token_id": 32405, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279726,7 +279215,7 @@ }, { "str": "win", - "token_id": 32467, + "token_id": 32406, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279735,7 +279224,7 @@ }, { "str": "gains", - "token_id": 32468, + "token_id": 32407, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279744,7 +279233,7 @@ }, { "str": "you", - "token_id": 32469, + "token_id": 32408, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279753,7 +279242,7 @@ }, { "str": "eight", - "token_id": 32470, + "token_id": 32409, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279762,7 +279251,7 @@ }, { "str": "points", - "token_id": 32471, + "token_id": 32410, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279771,7 +279260,7 @@ }, { "str": ",", - "token_id": 32472, + "token_id": 32411, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279780,7 +279269,7 @@ }, { "str": "and", - "token_id": 32473, + "token_id": 32412, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279789,7 +279278,7 @@ }, { "str": "each", - "token_id": 32474, + "token_id": 32413, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279798,7 +279287,7 @@ }, { "str": "lose", - "token_id": 32475, + "token_id": 32414, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279807,7 +279296,7 @@ }, { "str": "loses", - "token_id": 32476, + "token_id": 32415, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279816,7 +279305,7 @@ }, { "str": "you", - "token_id": 32477, + "token_id": 32416, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279825,7 +279314,7 @@ }, { "str": "a", - "token_id": 32478, + "token_id": 32417, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279834,7 +279323,7 @@ }, { "str": "set", - "token_id": 32479, + "token_id": 32418, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279843,7 +279332,7 @@ }, { "str": "amount", - "token_id": 32480, + "token_id": 32419, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279852,7 +279341,7 @@ }, { "str": "of", - "token_id": 32481, + "token_id": 32420, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279861,7 +279350,7 @@ }, { "str": "points", - "token_id": 32482, + "token_id": 32421, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279870,7 +279359,7 @@ }, { "str": "depending", - "token_id": 32483, + "token_id": 32422, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279879,7 +279368,7 @@ }, { "str": "on", - "token_id": 32484, + "token_id": 32423, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279888,7 +279377,7 @@ }, { "str": "your", - "token_id": 32485, + "token_id": 32424, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279897,7 +279386,7 @@ }, { "str": "rank", - "token_id": 32486, + "token_id": 32425, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279906,7 +279395,7 @@ }, { "str": ".", - "token_id": 32487, + "token_id": 32426, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279915,7 +279404,7 @@ }, { "str": "in", - "token_id": 32488, + "token_id": 32427, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279924,7 +279413,7 @@ }, { "str": "anarchy", - "token_id": 32489, + "token_id": 32428, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279933,7 +279422,7 @@ }, { "str": "(", - "token_id": 32490, + "token_id": 32429, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279942,7 +279431,7 @@ }, { "str": "series", - "token_id": 32491, + "token_id": 32430, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279951,7 +279440,7 @@ }, { "str": ")", - "token_id": 32492, + "token_id": 32431, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279960,7 +279449,7 @@ }, { "str": "you", - "token_id": 32493, + "token_id": 32432, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279969,7 +279458,7 @@ }, { "str": "have", - "token_id": 32494, + "token_id": 32433, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279978,7 +279467,7 @@ }, { "str": "to", - "token_id": 32495, + "token_id": 32434, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279987,7 +279476,7 @@ }, { "str": "\"", - "token_id": 32496, + "token_id": 32435, "o_rev_id": 1284965656, "in": [], "out": [ @@ -279996,7 +279485,7 @@ }, { "str": "pay", - "token_id": 32497, + "token_id": 32436, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280005,7 +279494,7 @@ }, { "str": "\"", - "token_id": 32498, + "token_id": 32437, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280014,7 +279503,7 @@ }, { "str": "a", - "token_id": 32499, + "token_id": 32438, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280023,7 +279512,7 @@ }, { "str": "certain", - "token_id": 32500, + "token_id": 32439, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280032,7 +279521,7 @@ }, { "str": "amount", - "token_id": 32501, + "token_id": 32440, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280041,7 +279530,7 @@ }, { "str": "of", - "token_id": 32502, + "token_id": 32441, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280050,7 +279539,7 @@ }, { "str": "points", - "token_id": 32503, + "token_id": 32442, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280059,7 +279548,7 @@ }, { "str": "to", - "token_id": 32504, + "token_id": 32443, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280068,7 +279557,7 @@ }, { "str": "gain", - "token_id": 32505, + "token_id": 32444, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280077,7 +279566,7 @@ }, { "str": "a", - "token_id": 32506, + "token_id": 32445, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280086,7 +279575,7 @@ }, { "str": "punch", - "token_id": 32507, + "token_id": 32446, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280095,7 +279584,7 @@ }, { "str": "sheet", - "token_id": 32508, + "token_id": 32447, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280104,7 +279593,7 @@ }, { "str": ".", - "token_id": 32509, + "token_id": 32448, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280113,7 +279602,7 @@ }, { "str": "each", - "token_id": 32510, + "token_id": 32449, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280122,7 +279611,7 @@ }, { "str": "time", - "token_id": 32511, + "token_id": 32450, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280131,7 +279620,7 @@ }, { "str": "you", - "token_id": 32512, + "token_id": 32451, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280140,7 +279629,7 @@ }, { "str": "win", - "token_id": 32513, + "token_id": 32452, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280149,7 +279638,7 @@ }, { "str": "/", - "token_id": 32514, + "token_id": 32453, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280158,7 +279647,7 @@ }, { "str": "lose", - "token_id": 32515, + "token_id": 32454, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280167,7 +279656,7 @@ }, { "str": "get", - "token_id": 32516, + "token_id": 32455, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280176,7 +279665,7 @@ }, { "str": "recorded", - "token_id": 32517, + "token_id": 32456, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280185,7 +279674,7 @@ }, { "str": "on", - "token_id": 32518, + "token_id": 32457, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280194,7 +279683,7 @@ }, { "str": "it", - "token_id": 32519, + "token_id": 32458, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280203,7 +279692,7 @@ }, { "str": "with", - "token_id": 32520, + "token_id": 32459, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280212,7 +279701,7 @@ }, { "str": "the", - "token_id": 32521, + "token_id": 32460, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280221,7 +279710,7 @@ }, { "str": "different", - "token_id": 32522, + "token_id": 32461, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280230,7 +279719,7 @@ }, { "str": "medals", - "token_id": 32523, + "token_id": 32462, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280239,7 +279728,7 @@ }, { "str": "you", - "token_id": 32524, + "token_id": 32463, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280248,7 +279737,7 @@ }, { "str": "got", - "token_id": 32525, + "token_id": 32464, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280257,7 +279746,7 @@ }, { "str": ",", - "token_id": 32526, + "token_id": 32465, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280266,7 +279755,7 @@ }, { "str": "until", - "token_id": 32527, + "token_id": 32466, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280275,7 +279764,7 @@ }, { "str": "you", - "token_id": 32528, + "token_id": 32467, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280284,7 +279773,7 @@ }, { "str": "either", - "token_id": 32529, + "token_id": 32468, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280293,7 +279782,7 @@ }, { "str": "get", - "token_id": 32530, + "token_id": 32469, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280302,7 +279791,7 @@ }, { "str": "five", - "token_id": 32531, + "token_id": 32470, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280311,7 +279800,7 @@ }, { "str": "wins", - "token_id": 32532, + "token_id": 32471, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280320,7 +279809,7 @@ }, { "str": "or", - "token_id": 32533, + "token_id": 32472, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280329,7 +279818,7 @@ }, { "str": "three", - "token_id": 32534, + "token_id": 32473, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280338,7 +279827,7 @@ }, { "str": "losses", - "token_id": 32535, + "token_id": 32474, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280347,7 +279836,7 @@ }, { "str": ",", - "token_id": 32536, + "token_id": 32475, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280356,7 +279845,7 @@ }, { "str": "in", - "token_id": 32537, + "token_id": 32476, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280365,7 +279854,7 @@ }, { "str": "where", - "token_id": 32538, + "token_id": 32477, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280374,7 +279863,7 @@ }, { "str": "the", - "token_id": 32539, + "token_id": 32478, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280383,7 +279872,7 @@ }, { "str": "game", - "token_id": 32540, + "token_id": 32479, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280392,7 +279881,7 @@ }, { "str": "calculates", - "token_id": 32541, + "token_id": 32480, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280401,7 +279890,7 @@ }, { "str": "how", - "token_id": 32542, + "token_id": 32481, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280410,7 +279899,7 @@ }, { "str": "much", - "token_id": 32543, + "token_id": 32482, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280419,7 +279908,7 @@ }, { "str": "points", - "token_id": 32544, + "token_id": 32483, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280428,7 +279917,7 @@ }, { "str": "you", - "token_id": 32545, + "token_id": 32484, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280437,7 +279926,7 @@ }, { "str": "earned", - "token_id": 32546, + "token_id": 32485, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280446,7 +279935,7 @@ }, { "str": ".", - "token_id": 32547, + "token_id": 32486, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280455,7 +279944,7 @@ }, { "str": "the", - "token_id": 32548, + "token_id": 32487, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280464,7 +279953,7 @@ }, { "str": "main", - "token_id": 32549, + "token_id": 32488, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280473,7 +279962,7 @@ }, { "str": "difference", - "token_id": 32550, + "token_id": 32489, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280482,7 +279971,7 @@ }, { "str": "between", - "token_id": 32551, + "token_id": 32490, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280491,7 +279980,7 @@ }, { "str": "these", - "token_id": 32552, + "token_id": 32491, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280500,7 +279989,7 @@ }, { "str": "is", - "token_id": 32553, + "token_id": 32492, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280509,7 +279998,7 @@ }, { "str": "that", - "token_id": 32554, + "token_id": 32493, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280518,7 +280007,7 @@ }, { "str": "you", - "token_id": 32555, + "token_id": 32494, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280527,7 +280016,7 @@ }, { "str": "can", - "token_id": 32556, + "token_id": 32495, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280536,7 +280025,7 @@ }, { "str": "gain", - "token_id": 32557, + "token_id": 32496, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280545,7 +280034,7 @@ }, { "str": "/", - "token_id": 32558, + "token_id": 32497, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280554,7 +280043,7 @@ }, { "str": "lose", - "token_id": 32559, + "token_id": 32498, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280563,7 +280052,7 @@ }, { "str": "a", - "token_id": 32560, + "token_id": 32499, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280572,7 +280061,7 @@ }, { "str": "lot", - "token_id": 32561, + "token_id": 32500, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280581,7 +280070,7 @@ }, { "str": "more", - "token_id": 32562, + "token_id": 32501, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280590,7 +280079,7 @@ }, { "str": "in", - "token_id": 32563, + "token_id": 32502, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280599,7 +280088,7 @@ }, { "str": "series", - "token_id": 32564, + "token_id": 32503, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280608,7 +280097,7 @@ }, { "str": "than", - "token_id": 32565, + "token_id": 32504, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280617,7 +280106,7 @@ }, { "str": "in", - "token_id": 32566, + "token_id": 32505, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280626,7 +280115,7 @@ }, { "str": "open", - "token_id": 32567, + "token_id": 32506, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280635,7 +280124,7 @@ }, { "str": ".", - "token_id": 32568, + "token_id": 32507, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280644,7 +280133,7 @@ }, { "str": "open", - "token_id": 32569, + "token_id": 32508, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280653,7 +280142,7 @@ }, { "str": "is", - "token_id": 32570, + "token_id": 32509, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280662,7 +280151,7 @@ }, { "str": "generally", - "token_id": 32571, + "token_id": 32510, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280671,7 +280160,7 @@ }, { "str": "more", - "token_id": 32572, + "token_id": 32511, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280680,7 +280169,7 @@ }, { "str": "casual", - "token_id": 32573, + "token_id": 32512, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280689,7 +280178,7 @@ }, { "str": "than", - "token_id": 32574, + "token_id": 32513, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280698,7 +280187,7 @@ }, { "str": "series", - "token_id": 32575, + "token_id": 32514, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280707,7 +280196,7 @@ }, { "str": ",", - "token_id": 32576, + "token_id": 32515, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280716,7 +280205,7 @@ }, { "str": "due", - "token_id": 32577, + "token_id": 32516, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280725,7 +280214,7 @@ }, { "str": "to", - "token_id": 32578, + "token_id": 32517, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280734,7 +280223,7 @@ }, { "str": "less", - "token_id": 32579, + "token_id": 32518, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280743,7 +280232,7 @@ }, { "str": "rank", - "token_id": 32580, + "token_id": 32519, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280752,7 +280241,7 @@ }, { "str": "losses", - "token_id": 32581, + "token_id": 32520, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280761,7 +280250,7 @@ }, { "str": "from", - "token_id": 32582, + "token_id": 32521, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280770,7 +280259,7 @@ }, { "str": "losing", - "token_id": 32583, + "token_id": 32522, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280779,7 +280268,7 @@ }, { "str": "and", - "token_id": 32584, + "token_id": 32523, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280788,7 +280277,7 @@ }, { "str": "being", - "token_id": 32585, + "token_id": 32524, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280797,7 +280286,7 @@ }, { "str": "easily", - "token_id": 32586, + "token_id": 32525, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280806,7 +280295,7 @@ }, { "str": "being", - "token_id": 32587, + "token_id": 32526, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280815,7 +280304,7 @@ }, { "str": "able", - "token_id": 32588, + "token_id": 32527, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280824,7 +280313,7 @@ }, { "str": "to", - "token_id": 32589, + "token_id": 32528, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280833,7 +280322,7 @@ }, { "str": "switch", - "token_id": 32590, + "token_id": 32529, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280842,7 +280331,7 @@ }, { "str": "weapons", - "token_id": 32591, + "token_id": 32530, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280851,7 +280340,7 @@ }, { "str": "between", - "token_id": 32592, + "token_id": 32531, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280860,7 +280349,7 @@ }, { "str": "battles", - "token_id": 32593, + "token_id": 32532, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280869,7 +280358,7 @@ }, { "str": ".", - "token_id": 32594, + "token_id": 32533, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280878,7 +280367,7 @@ }, { "str": "in", - "token_id": 32595, + "token_id": 32534, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280887,7 +280376,7 @@ }, { "str": "rank", - "token_id": 32596, + "token_id": 32535, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280896,7 +280385,7 @@ }, { "str": "-", - "token_id": 32597, + "token_id": 32536, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280905,7 +280394,7 @@ }, { "str": "up", - "token_id": 32598, + "token_id": 32537, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280914,7 +280403,7 @@ }, { "str": "battles", - "token_id": 32599, + "token_id": 32538, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280923,7 +280412,7 @@ }, { "str": ",", - "token_id": 32600, + "token_id": 32539, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280932,7 +280421,7 @@ }, { "str": "you", - "token_id": 32601, + "token_id": 32540, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280941,7 +280430,7 @@ }, { "str": "have", - "token_id": 32602, + "token_id": 32541, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280950,7 +280439,7 @@ }, { "str": "the", - "token_id": 32603, + "token_id": 32542, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280959,7 +280448,7 @@ }, { "str": "same", - "token_id": 32604, + "token_id": 32543, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280968,7 +280457,7 @@ }, { "str": "punch", - "token_id": 32605, + "token_id": 32544, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280977,7 +280466,7 @@ }, { "str": "card", - "token_id": 32606, + "token_id": 32545, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280986,7 +280475,7 @@ }, { "str": "in", - "token_id": 32607, + "token_id": 32546, "o_rev_id": 1284965656, "in": [], "out": [ @@ -280995,7 +280484,7 @@ }, { "str": "series", - "token_id": 32608, + "token_id": 32547, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281004,7 +280493,7 @@ }, { "str": "except", - "token_id": 32609, + "token_id": 32548, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281013,7 +280502,7 @@ }, { "str": "you", - "token_id": 32610, + "token_id": 32549, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281022,7 +280511,7 @@ }, { "str": "have", - "token_id": 32611, + "token_id": 32550, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281031,7 +280520,7 @@ }, { "str": "only", - "token_id": 32612, + "token_id": 32551, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281040,7 +280529,7 @@ }, { "str": "three", - "token_id": 32613, + "token_id": 32552, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281049,7 +280538,7 @@ }, { "str": "wins", - "token_id": 32614, + "token_id": 32553, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281058,7 +280547,7 @@ }, { "str": "and", - "token_id": 32615, + "token_id": 32554, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281067,7 +280556,7 @@ }, { "str": "three", - "token_id": 32616, + "token_id": 32555, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281076,7 +280565,7 @@ }, { "str": "losses", - "token_id": 32617, + "token_id": 32556, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281085,7 +280574,7 @@ }, { "str": ".", - "token_id": 32618, + "token_id": 32557, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281094,7 +280583,7 @@ }, { "str": "if", - "token_id": 32619, + "token_id": 32558, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281103,7 +280592,7 @@ }, { "str": "you", - "token_id": 32620, + "token_id": 32559, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281112,7 +280601,7 @@ }, { "str": "win", - "token_id": 32621, + "token_id": 32560, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281121,7 +280610,7 @@ }, { "str": "the", - "token_id": 32622, + "token_id": 32561, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281130,7 +280619,7 @@ }, { "str": "series", - "token_id": 32623, + "token_id": 32562, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281139,7 +280628,7 @@ }, { "str": "(", - "token_id": 32624, + "token_id": 32563, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281148,7 +280637,7 @@ }, { "str": "by", - "token_id": 32625, + "token_id": 32564, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281157,7 +280646,7 @@ }, { "str": "getting", - "token_id": 32626, + "token_id": 32565, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281166,7 +280655,7 @@ }, { "str": "three", - "token_id": 32627, + "token_id": 32566, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281175,7 +280664,7 @@ }, { "str": "wins", - "token_id": 32628, + "token_id": 32567, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281184,7 +280673,7 @@ }, { "str": ")", - "token_id": 32629, + "token_id": 32568, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281193,7 +280682,7 @@ }, { "str": ",", - "token_id": 32630, + "token_id": 32569, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281202,7 +280691,7 @@ }, { "str": "you", - "token_id": 32631, + "token_id": 32570, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281211,7 +280700,7 @@ }, { "str": "move", - "token_id": 32632, + "token_id": 32571, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281220,7 +280709,7 @@ }, { "str": "on", - "token_id": 32633, + "token_id": 32572, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281229,7 +280718,7 @@ }, { "str": "to", - "token_id": 32634, + "token_id": 32573, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281238,7 +280727,7 @@ }, { "str": "the", - "token_id": 32635, + "token_id": 32574, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281247,7 +280736,7 @@ }, { "str": "next", - "token_id": 32636, + "token_id": 32575, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281256,7 +280745,7 @@ }, { "str": "letter", - "token_id": 32637, + "token_id": 32576, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281265,7 +280754,7 @@ }, { "str": "grade", - "token_id": 32638, + "token_id": 32577, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281274,7 +280763,7 @@ }, { "str": ".", - "token_id": 32639, + "token_id": 32578, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281283,7 +280772,7 @@ }, { "str": "if", - "token_id": 32640, + "token_id": 32579, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281292,7 +280781,7 @@ }, { "str": "you", - "token_id": 32641, + "token_id": 32580, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281301,7 +280790,7 @@ }, { "str": "lose", - "token_id": 32642, + "token_id": 32581, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281310,7 +280799,7 @@ }, { "str": "the", - "token_id": 32643, + "token_id": 32582, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281319,7 +280808,7 @@ }, { "str": "series", - "token_id": 32644, + "token_id": 32583, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281328,7 +280817,7 @@ }, { "str": "(", - "token_id": 32645, + "token_id": 32584, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281337,7 +280826,7 @@ }, { "str": "by", - "token_id": 32646, + "token_id": 32585, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281346,7 +280835,7 @@ }, { "str": "getting", - "token_id": 32647, + "token_id": 32586, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281355,7 +280844,7 @@ }, { "str": "three", - "token_id": 32648, + "token_id": 32587, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281364,7 +280853,7 @@ }, { "str": "losses", - "token_id": 32649, + "token_id": 32588, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281373,7 +280862,7 @@ }, { "str": ")", - "token_id": 32650, + "token_id": 32589, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281382,7 +280871,7 @@ }, { "str": ",", - "token_id": 32651, + "token_id": 32590, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281391,7 +280880,7 @@ }, { "str": "you", - "token_id": 32652, + "token_id": 32591, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281400,7 +280889,7 @@ }, { "str": "gain", - "token_id": 32653, + "token_id": 32592, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281409,7 +280898,7 @@ }, { "str": "nothing", - "token_id": 32654, + "token_id": 32593, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281418,7 +280907,7 @@ }, { "str": "and", - "token_id": 32655, + "token_id": 32594, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281427,7 +280916,7 @@ }, { "str": "potentially", - "token_id": 32656, + "token_id": 32595, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281436,7 +280925,7 @@ }, { "str": "have", - "token_id": 32657, + "token_id": 32596, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281445,7 +280934,7 @@ }, { "str": "to", - "token_id": 32658, + "token_id": 32597, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281454,7 +280943,7 @@ }, { "str": "earn", - "token_id": 32659, + "token_id": 32598, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281463,7 +280952,7 @@ }, { "str": "your", - "token_id": 32660, + "token_id": 32599, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281472,7 +280961,7 @@ }, { "str": "way", - "token_id": 32661, + "token_id": 32600, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281481,7 +280970,7 @@ }, { "str": "back", - "token_id": 32662, + "token_id": 32601, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281490,7 +280979,7 @@ }, { "str": "to", - "token_id": 32663, + "token_id": 32602, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281499,7 +280988,7 @@ }, { "str": "rank", - "token_id": 32664, + "token_id": 32603, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281508,7 +280997,7 @@ }, { "str": "-", - "token_id": 32665, + "token_id": 32604, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281517,7 +281006,7 @@ }, { "str": "up", - "token_id": 32666, + "token_id": 32605, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281526,7 +281015,7 @@ }, { "str": "battles", - "token_id": 32667, + "token_id": 32606, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281535,7 +281024,7 @@ }, { "str": "if", - "token_id": 32668, + "token_id": 32607, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281544,7 +281033,7 @@ }, { "str": "you", - "token_id": 32669, + "token_id": 32608, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281553,7 +281042,7 @@ }, { "str": "want", - "token_id": 32670, + "token_id": 32609, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281562,7 +281051,7 @@ }, { "str": "to", - "token_id": 32671, + "token_id": 32610, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281571,7 +281060,7 @@ }, { "str": "increase", - "token_id": 32672, + "token_id": 32611, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281580,7 +281069,7 @@ }, { "str": "your", - "token_id": 32673, + "token_id": 32612, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281589,7 +281078,7 @@ }, { "str": "rank", - "token_id": 32674, + "token_id": 32613, "o_rev_id": 1284965656, "in": [], "out": [ @@ -281598,7 +281087,7 @@ }, { "str": "losing", - "token_id": 32675, + "token_id": 32614, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281612,7 +281101,7 @@ }, { "str": "team", - "token_id": 32676, + "token_id": 32615, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281626,7 +281115,7 @@ }, { "str": "has", - "token_id": 32677, + "token_id": 32616, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281640,7 +281129,7 @@ }, { "str": "control", - "token_id": 32678, + "token_id": 32617, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281654,7 +281143,7 @@ }, { "str": "over", - "token_id": 32679, + "token_id": 32618, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281668,7 +281157,7 @@ }, { "str": "the", - "token_id": 32680, + "token_id": 32619, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281682,7 +281171,7 @@ }, { "str": "objective", - "token_id": 32681, + "token_id": 32620, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281696,7 +281185,7 @@ }, { "str": ",", - "token_id": 32682, + "token_id": 32621, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281710,7 +281199,7 @@ }, { "str": "or", - "token_id": 32683, + "token_id": 32622, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281724,7 +281213,7 @@ }, { "str": "in", - "token_id": 32684, + "token_id": 32623, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281738,7 +281227,7 @@ }, { "str": "the", - "token_id": 32685, + "token_id": 32624, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281752,7 +281241,7 @@ }, { "str": "case", - "token_id": 32686, + "token_id": 32625, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281766,7 +281255,7 @@ }, { "str": "of", - "token_id": 32687, + "token_id": 32626, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281780,7 +281269,7 @@ }, { "str": "clam", - "token_id": 32688, + "token_id": 32627, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281794,7 +281283,7 @@ }, { "str": "blitz", - "token_id": 32689, + "token_id": 32628, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281808,7 +281297,7 @@ }, { "str": "has", - "token_id": 32690, + "token_id": 32629, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281822,7 +281311,7 @@ }, { "str": "at", - "token_id": 32691, + "token_id": 32630, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281836,7 +281325,7 @@ }, { "str": "least", - "token_id": 32692, + "token_id": 32631, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281850,7 +281339,7 @@ }, { "str": "one", - "token_id": 32693, + "token_id": 32632, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281864,7 +281353,7 @@ }, { "str": "power", - "token_id": 32694, + "token_id": 32633, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281878,7 +281367,7 @@ }, { "str": "clam", - "token_id": 32695, + "token_id": 32634, "o_rev_id": 1285075363, "in": [ 1285606684, @@ -281892,7 +281381,7 @@ }, { "str": "overtime", - "token_id": 32696, + "token_id": 32635, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -281906,7 +281395,7 @@ }, { "str": "lasts", - "token_id": 32697, + "token_id": 32636, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -281920,7 +281409,7 @@ }, { "str": "until", - "token_id": 32698, + "token_id": 32637, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -281934,7 +281423,7 @@ }, { "str": "the", - "token_id": 32699, + "token_id": 32638, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -281948,7 +281437,7 @@ }, { "str": "losing", - "token_id": 32700, + "token_id": 32639, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -281962,7 +281451,7 @@ }, { "str": "team", - "token_id": 32701, + "token_id": 32640, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -281976,7 +281465,7 @@ }, { "str": "either", - "token_id": 32702, + "token_id": 32641, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -281990,7 +281479,7 @@ }, { "str": "takes", - "token_id": 32703, + "token_id": 32642, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282004,7 +281493,7 @@ }, { "str": "the", - "token_id": 32704, + "token_id": 32643, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282018,7 +281507,7 @@ }, { "str": "lead", - "token_id": 32705, + "token_id": 32644, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282032,7 +281521,7 @@ }, { "str": "or", - "token_id": 32706, + "token_id": 32645, "o_rev_id": 1285080986, "in": [], "out": [ @@ -282041,7 +281530,7 @@ }, { "str": "loses", - "token_id": 32707, + "token_id": 32646, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282055,7 +281544,7 @@ }, { "str": "control", - "token_id": 32708, + "token_id": 32647, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282069,7 +281558,7 @@ }, { "str": "of", - "token_id": 32709, + "token_id": 32648, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282083,7 +281572,7 @@ }, { "str": "the", - "token_id": 32710, + "token_id": 32649, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282097,7 +281586,7 @@ }, { "str": "objective", - "token_id": 32711, + "token_id": 32650, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282111,7 +281600,7 @@ }, { "str": ".", - "token_id": 32712, + "token_id": 32651, "o_rev_id": 1285080986, "in": [ 1285606684, @@ -282125,7 +281614,7 @@ }, { "str": ".", - "token_id": 32713, + "token_id": 32652, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282139,7 +281628,7 @@ }, { "str": "the", - "token_id": 32714, + "token_id": 32653, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282153,7 +281642,7 @@ }, { "str": "game", - "token_id": 32715, + "token_id": 32654, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282167,7 +281656,7 @@ }, { "str": "can", - "token_id": 32716, + "token_id": 32655, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282181,7 +281670,7 @@ }, { "str": "end", - "token_id": 32717, + "token_id": 32656, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282195,7 +281684,7 @@ }, { "str": "sooner", - "token_id": 32718, + "token_id": 32657, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282209,7 +281698,7 @@ }, { "str": "when", - "token_id": 32719, + "token_id": 32658, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282223,7 +281712,7 @@ }, { "str": "a", - "token_id": 32720, + "token_id": 32659, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282237,7 +281726,7 @@ }, { "str": "team", - "token_id": 32721, + "token_id": 32660, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282251,7 +281740,7 @@ }, { "str": "gets", - "token_id": 32722, + "token_id": 32661, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282265,7 +281754,7 @@ }, { "str": "the", - "token_id": 32723, + "token_id": 32662, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282279,7 +281768,7 @@ }, { "str": "maximum", - "token_id": 32724, + "token_id": 32663, "o_rev_id": 1285081483, "in": [], "out": [ @@ -282288,7 +281777,7 @@ }, { "str": "amount", - "token_id": 32725, + "token_id": 32664, "o_rev_id": 1285081483, "in": [], "out": [ @@ -282297,7 +281786,7 @@ }, { "str": "of", - "token_id": 32726, + "token_id": 32665, "o_rev_id": 1285081483, "in": [], "out": [ @@ -282306,7 +281795,7 @@ }, { "str": "points", - "token_id": 32727, + "token_id": 32666, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282320,7 +281809,7 @@ }, { "str": "possible", - "token_id": 32728, + "token_id": 32667, "o_rev_id": 1285081483, "in": [], "out": [ @@ -282329,7 +281818,7 @@ }, { "str": ".", - "token_id": 32729, + "token_id": 32668, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282343,7 +281832,7 @@ }, { "str": "this", - "token_id": 32730, + "token_id": 32669, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282357,7 +281846,7 @@ }, { "str": "is", - "token_id": 32731, + "token_id": 32670, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282371,7 +281860,7 @@ }, { "str": "called", - "token_id": 32732, + "token_id": 32671, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282385,7 +281874,7 @@ }, { "str": "a", - "token_id": 32733, + "token_id": 32672, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282399,7 +281888,7 @@ }, { "str": "knockout", - "token_id": 32734, + "token_id": 32673, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282413,7 +281902,7 @@ }, { "str": ",", - "token_id": 32735, + "token_id": 32674, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282427,7 +281916,7 @@ }, { "str": "similar", - "token_id": 32736, + "token_id": 32675, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282441,7 +281930,7 @@ }, { "str": "to", - "token_id": 32737, + "token_id": 32676, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282455,7 +281944,7 @@ }, { "str": "the", - "token_id": 32738, + "token_id": 32677, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282469,7 +281958,7 @@ }, { "str": "mercy", - "token_id": 32739, + "token_id": 32678, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282483,7 +281972,7 @@ }, { "str": "rule", - "token_id": 32740, + "token_id": 32679, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282497,7 +281986,7 @@ }, { "str": "in", - "token_id": 32741, + "token_id": 32680, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282511,7 +282000,7 @@ }, { "str": "many", - "token_id": 32742, + "token_id": 32681, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282525,7 +282014,7 @@ }, { "str": "sports", - "token_id": 32743, + "token_id": 32682, "o_rev_id": 1285081483, "in": [ 1285606684, @@ -282539,7 +282028,7 @@ }, { "str": "turf", - "token_id": 32744, + "token_id": 32683, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282553,7 +282042,7 @@ }, { "str": "war", - "token_id": 32745, + "token_id": 32684, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282567,7 +282056,7 @@ }, { "str": "=", - "token_id": 32746, + "token_id": 32685, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282581,7 +282070,7 @@ }, { "str": "=", - "token_id": 32747, + "token_id": 32686, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282595,7 +282084,7 @@ }, { "str": "=", - "token_id": 32748, + "token_id": 32687, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282609,7 +282098,7 @@ }, { "str": "=", - "token_id": 32749, + "token_id": 32688, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282623,7 +282112,7 @@ }, { "str": "=", - "token_id": 32750, + "token_id": 32689, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282637,7 +282126,7 @@ }, { "str": "=", - "token_id": 32751, + "token_id": 32690, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282651,7 +282140,7 @@ }, { "str": "=", - "token_id": 32752, + "token_id": 32691, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282665,7 +282154,7 @@ }, { "str": "=", - "token_id": 32753, + "token_id": 32692, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282679,7 +282168,7 @@ }, { "str": "anarchy", - "token_id": 32754, + "token_id": 32693, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282693,7 +282182,7 @@ }, { "str": "battles", - "token_id": 32755, + "token_id": 32694, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282707,7 +282196,7 @@ }, { "str": "[[", - "token_id": 32756, + "token_id": 32695, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282721,7 +282210,7 @@ }, { "str": "]]", - "token_id": 32757, + "token_id": 32696, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282735,7 +282224,7 @@ }, { "str": "=", - "token_id": 32758, + "token_id": 32697, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282749,7 +282238,7 @@ }, { "str": "=", - "token_id": 32759, + "token_id": 32698, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282763,7 +282252,7 @@ }, { "str": "=", - "token_id": 32760, + "token_id": 32699, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282777,7 +282266,7 @@ }, { "str": "=", - "token_id": 32761, + "token_id": 32700, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282791,7 +282280,7 @@ }, { "str": "anarchy", - "token_id": 32762, + "token_id": 32701, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282805,7 +282294,7 @@ }, { "str": "battle", - "token_id": 32763, + "token_id": 32702, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282819,7 +282308,7 @@ }, { "str": "modes", - "token_id": 32764, + "token_id": 32703, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282833,7 +282322,7 @@ }, { "str": "=", - "token_id": 32765, + "token_id": 32704, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282847,7 +282336,7 @@ }, { "str": "=", - "token_id": 32766, + "token_id": 32705, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282861,7 +282350,7 @@ }, { "str": "=", - "token_id": 32767, + "token_id": 32706, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282875,7 +282364,7 @@ }, { "str": "=", - "token_id": 32768, + "token_id": 32707, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282889,7 +282378,7 @@ }, { "str": "=", - "token_id": 32769, + "token_id": 32708, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282903,7 +282392,7 @@ }, { "str": "=", - "token_id": 32770, + "token_id": 32709, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282917,7 +282406,7 @@ }, { "str": "=", - "token_id": 32771, + "token_id": 32710, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282931,7 +282420,7 @@ }, { "str": "=", - "token_id": 32772, + "token_id": 32711, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282945,7 +282434,7 @@ }, { "str": "x", - "token_id": 32773, + "token_id": 32712, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282959,7 +282448,7 @@ }, { "str": "rank", - "token_id": 32774, + "token_id": 32713, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282973,7 +282462,7 @@ }, { "str": "=", - "token_id": 32775, + "token_id": 32714, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -282987,7 +282476,7 @@ }, { "str": "=", - "token_id": 32776, + "token_id": 32715, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283001,7 +282490,7 @@ }, { "str": "=", - "token_id": 32777, + "token_id": 32716, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283015,7 +282504,7 @@ }, { "str": "=", - "token_id": 32778, + "token_id": 32717, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283029,7 +282518,7 @@ }, { "str": "once", - "token_id": 32779, + "token_id": 32718, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283043,7 +282532,7 @@ }, { "str": "a", - "token_id": 32780, + "token_id": 32719, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283057,7 +282546,7 @@ }, { "str": "player", - "token_id": 32781, + "token_id": 32720, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283071,7 +282560,7 @@ }, { "str": "gets", - "token_id": 32782, + "token_id": 32721, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283085,7 +282574,7 @@ }, { "str": "to", - "token_id": 32783, + "token_id": 32722, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283099,7 +282588,7 @@ }, { "str": "a", - "token_id": 32784, + "token_id": 32723, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283113,7 +282602,7 @@ }, { "str": "rank", - "token_id": 32785, + "token_id": 32724, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283127,7 +282616,7 @@ }, { "str": "of", - "token_id": 32786, + "token_id": 32725, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283141,7 +282630,7 @@ }, { "str": "s", - "token_id": 32787, + "token_id": 32726, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283155,7 +282644,7 @@ }, { "str": "+", - "token_id": 32788, + "token_id": 32727, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283169,7 +282658,7 @@ }, { "str": "0", - "token_id": 32789, + "token_id": 32728, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283183,7 +282672,7 @@ }, { "str": "in", - "token_id": 32790, + "token_id": 32729, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283197,7 +282686,7 @@ }, { "str": "anarchy", - "token_id": 32791, + "token_id": 32730, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283211,7 +282700,7 @@ }, { "str": "mode", - "token_id": 32792, + "token_id": 32731, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283225,7 +282714,7 @@ }, { "str": ",", - "token_id": 32793, + "token_id": 32732, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283239,7 +282728,7 @@ }, { "str": "they", - "token_id": 32794, + "token_id": 32733, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283253,7 +282742,7 @@ }, { "str": "get", - "token_id": 32795, + "token_id": 32734, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283267,7 +282756,7 @@ }, { "str": "to", - "token_id": 32796, + "token_id": 32735, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283281,7 +282770,7 @@ }, { "str": "be", - "token_id": 32797, + "token_id": 32736, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283295,7 +282784,7 @@ }, { "str": "able", - "token_id": 32798, + "token_id": 32737, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283309,7 +282798,7 @@ }, { "str": "to", - "token_id": 32799, + "token_id": 32738, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283323,7 +282812,7 @@ }, { "str": "participate", - "token_id": 32800, + "token_id": 32739, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283337,7 +282826,7 @@ }, { "str": "in", - "token_id": 32801, + "token_id": 32740, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283351,7 +282840,7 @@ }, { "str": "x", - "token_id": 32802, + "token_id": 32741, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283365,7 +282854,7 @@ }, { "str": "rank", - "token_id": 32803, + "token_id": 32742, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283379,7 +282868,7 @@ }, { "str": "battles", - "token_id": 32804, + "token_id": 32743, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283393,7 +282882,7 @@ }, { "str": "players", - "token_id": 32805, + "token_id": 32744, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283407,7 +282896,7 @@ }, { "str": "who", - "token_id": 32806, + "token_id": 32745, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283421,7 +282910,7 @@ }, { "str": "unlock", - "token_id": 32807, + "token_id": 32746, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283435,7 +282924,7 @@ }, { "str": "x", - "token_id": 32808, + "token_id": 32747, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283449,7 +282938,7 @@ }, { "str": "rank", - "token_id": 32809, + "token_id": 32748, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283463,7 +282952,7 @@ }, { "str": "will", - "token_id": 32810, + "token_id": 32749, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283477,7 +282966,7 @@ }, { "str": ",", - "token_id": 32811, + "token_id": 32750, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283491,7 +282980,7 @@ }, { "str": "after", - "token_id": 32812, + "token_id": 32751, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283505,7 +282994,7 @@ }, { "str": "confirming", - "token_id": 32813, + "token_id": 32752, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283519,7 +283008,7 @@ }, { "str": "their", - "token_id": 32814, + "token_id": 32753, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283533,7 +283022,7 @@ }, { "str": "divisions", - "token_id": 32815, + "token_id": 32754, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283547,7 +283036,7 @@ }, { "str": "(", - "token_id": 32816, + "token_id": 32755, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283561,7 +283050,7 @@ }, { "str": "tentatek", - "token_id": 32817, + "token_id": 32756, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283575,7 +283064,7 @@ }, { "str": "for", - "token_id": 32818, + "token_id": 32757, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283589,7 +283078,7 @@ }, { "str": "us", - "token_id": 32819, + "token_id": 32758, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283603,7 +283092,7 @@ }, { "str": "and", - "token_id": 32820, + "token_id": 32759, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283617,7 +283106,7 @@ }, { "str": "europe", - "token_id": 32821, + "token_id": 32760, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283631,7 +283120,7 @@ }, { "str": "and", - "token_id": 32822, + "token_id": 32761, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283645,7 +283134,7 @@ }, { "str": "takoroka", - "token_id": 32823, + "token_id": 32762, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283659,7 +283148,7 @@ }, { "str": "for", - "token_id": 32824, + "token_id": 32763, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283673,7 +283162,7 @@ }, { "str": "asia", - "token_id": 32825, + "token_id": 32764, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283687,7 +283176,7 @@ }, { "str": ")", - "token_id": 32826, + "token_id": 32765, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283701,7 +283190,7 @@ }, { "str": "and", - "token_id": 32827, + "token_id": 32766, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283715,7 +283204,7 @@ }, { "str": "playing", - "token_id": 32828, + "token_id": 32767, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283729,7 +283218,7 @@ }, { "str": "five", - "token_id": 32829, + "token_id": 32768, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283743,7 +283232,7 @@ }, { "str": "battles", - "token_id": 32830, + "token_id": 32769, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283757,7 +283246,7 @@ }, { "str": "in", - "token_id": 32831, + "token_id": 32770, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283771,7 +283260,7 @@ }, { "str": "a", - "token_id": 32832, + "token_id": 32771, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283785,7 +283274,7 @@ }, { "str": "specific", - "token_id": 32833, + "token_id": 32772, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283799,7 +283288,7 @@ }, { "str": "anarchy", - "token_id": 32834, + "token_id": 32773, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283813,7 +283302,7 @@ }, { "str": "mode", - "token_id": 32835, + "token_id": 32774, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283827,7 +283316,7 @@ }, { "str": ",", - "token_id": 32836, + "token_id": 32775, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283841,7 +283330,7 @@ }, { "str": "will", - "token_id": 32837, + "token_id": 32776, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283855,7 +283344,7 @@ }, { "str": "have", - "token_id": 32838, + "token_id": 32777, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283869,7 +283358,7 @@ }, { "str": "their", - "token_id": 32839, + "token_id": 32778, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283883,7 +283372,7 @@ }, { "str": "x", - "token_id": 32840, + "token_id": 32779, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283897,7 +283386,7 @@ }, { "str": "power", - "token_id": 32841, + "token_id": 32780, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283911,7 +283400,7 @@ }, { "str": "displayed", - "token_id": 32842, + "token_id": 32781, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283925,7 +283414,7 @@ }, { "str": "and", - "token_id": 32843, + "token_id": 32782, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283939,7 +283428,7 @@ }, { "str": "their", - "token_id": 32844, + "token_id": 32783, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283953,7 +283442,7 @@ }, { "str": "standings", - "token_id": 32845, + "token_id": 32784, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283967,7 +283456,7 @@ }, { "str": "compared", - "token_id": 32846, + "token_id": 32785, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283981,7 +283470,7 @@ }, { "str": "to", - "token_id": 32847, + "token_id": 32786, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -283995,7 +283484,7 @@ }, { "str": "the", - "token_id": 32848, + "token_id": 32787, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284009,7 +283498,7 @@ }, { "str": "rest", - "token_id": 32849, + "token_id": 32788, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284023,7 +283512,7 @@ }, { "str": "of", - "token_id": 32850, + "token_id": 32789, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284037,7 +283526,7 @@ }, { "str": "their", - "token_id": 32851, + "token_id": 32790, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284051,7 +283540,7 @@ }, { "str": "division", - "token_id": 32852, + "token_id": 32791, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284065,7 +283554,7 @@ }, { "str": ".", - "token_id": 32853, + "token_id": 32792, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284079,7 +283568,7 @@ }, { "str": "the", - "token_id": 32854, + "token_id": 32793, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284093,7 +283582,7 @@ }, { "str": "top", - "token_id": 32855, + "token_id": 32794, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284107,7 +283596,7 @@ }, { "str": "five", - "token_id": 32856, + "token_id": 32795, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284121,7 +283610,7 @@ }, { "str": "-", - "token_id": 32857, + "token_id": 32796, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284135,7 +283624,7 @@ }, { "str": "hundred", - "token_id": 32858, + "token_id": 32797, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284149,7 +283638,7 @@ }, { "str": "players", - "token_id": 32859, + "token_id": 32798, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284163,7 +283652,7 @@ }, { "str": "in", - "token_id": 32860, + "token_id": 32799, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284177,7 +283666,7 @@ }, { "str": "their", - "token_id": 32861, + "token_id": 32800, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284191,7 +283680,7 @@ }, { "str": "division", - "token_id": 32862, + "token_id": 32801, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284205,7 +283694,7 @@ }, { "str": "will", - "token_id": 32863, + "token_id": 32802, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284219,7 +283708,7 @@ }, { "str": "have", - "token_id": 32864, + "token_id": 32803, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284233,7 +283722,7 @@ }, { "str": "a", - "token_id": 32865, + "token_id": 32804, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284247,7 +283736,7 @@ }, { "str": "crown", - "token_id": 32866, + "token_id": 32805, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284261,7 +283750,7 @@ }, { "str": "shown", - "token_id": 32867, + "token_id": 32806, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284275,7 +283764,7 @@ }, { "str": "above", - "token_id": 32868, + "token_id": 32807, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284289,7 +283778,7 @@ }, { "str": "their", - "token_id": 32869, + "token_id": 32808, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284303,7 +283792,7 @@ }, { "str": "head", - "token_id": 32870, + "token_id": 32809, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284317,7 +283806,7 @@ }, { "str": "when", - "token_id": 32871, + "token_id": 32810, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284331,7 +283820,7 @@ }, { "str": "playing", - "token_id": 32872, + "token_id": 32811, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284345,7 +283834,7 @@ }, { "str": "their", - "token_id": 32873, + "token_id": 32812, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284359,7 +283848,7 @@ }, { "str": "matches", - "token_id": 32874, + "token_id": 32813, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284373,7 +283862,7 @@ }, { "str": ".", - "token_id": 32875, + "token_id": 32814, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284387,7 +283876,7 @@ }, { "str": "=", - "token_id": 32876, + "token_id": 32815, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284401,7 +283890,7 @@ }, { "str": "=", - "token_id": 32877, + "token_id": 32816, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284415,7 +283904,7 @@ }, { "str": "=", - "token_id": 32878, + "token_id": 32817, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284429,7 +283918,7 @@ }, { "str": "=", - "token_id": 32879, + "token_id": 32818, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284443,7 +283932,7 @@ }, { "str": "splatfest", - "token_id": 32880, + "token_id": 32819, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284457,7 +283946,7 @@ }, { "str": "=", - "token_id": 32881, + "token_id": 32820, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284471,7 +283960,7 @@ }, { "str": "=", - "token_id": 32882, + "token_id": 32821, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284485,7 +283974,7 @@ }, { "str": "=", - "token_id": 32883, + "token_id": 32822, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284499,7 +283988,7 @@ }, { "str": "=", - "token_id": 32884, + "token_id": 32823, "o_rev_id": 1285111616, "in": [ 1285606684, @@ -284513,7 +284002,7 @@ }, { "str": ",", - "token_id": 32885, + "token_id": 32824, "o_rev_id": 1285111856, "in": [ 1285606684, @@ -284527,7 +284016,7 @@ }, { "str": "or", - "token_id": 32886, + "token_id": 32825, "o_rev_id": 1285111856, "in": [ 1285606684, @@ -284541,7 +284030,7 @@ }, { "str": "runs", - "token_id": 32887, + "token_id": 32826, "o_rev_id": 1285111856, "in": [ 1285606684, @@ -284555,7 +284044,7 @@ }, { "str": "out", - "token_id": 32888, + "token_id": 32827, "o_rev_id": 1285111856, "in": [ 1285606684, @@ -284569,7 +284058,7 @@ }, { "str": "of", - "token_id": 32889, + "token_id": 32828, "o_rev_id": 1285111856, "in": [ 1285606684, @@ -284583,7 +284072,7 @@ }, { "str": "time", - "token_id": 32890, + "token_id": 32829, "o_rev_id": 1285111856, "in": [ 1285606684, @@ -284597,7 +284086,7 @@ }, { "str": "remaining", - "token_id": 32891, + "token_id": 32830, "o_rev_id": 1285112273, "in": [ 1285606684, @@ -284611,7 +284100,7 @@ }, { "str": "down", - "token_id": 32892, + "token_id": 32831, "o_rev_id": 1285112273, "in": [ 1285606684, @@ -284625,7 +284114,7 @@ }, { "str": "to", - "token_id": 32893, + "token_id": 32832, "o_rev_id": 1285112273, "in": [ 1285606684, @@ -284639,7 +284128,7 @@ }, { "str": "zero", - "token_id": 32894, + "token_id": 32833, "o_rev_id": 1285112273, "in": [ 1285606684, @@ -284653,7 +284142,7 @@ }, { "str": "website", - "token_id": 32895, + "token_id": 32834, "o_rev_id": 1285145440, "in": [ 1285607024 @@ -284664,7 +284153,7 @@ }, { "str": "at", - "token_id": 32896, + "token_id": 32835, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284676,7 +284165,7 @@ }, { "str": "the", - "token_id": 32897, + "token_id": 32836, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284688,7 +284177,7 @@ }, { "str": "start", - "token_id": 32898, + "token_id": 32837, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284700,7 +284189,7 @@ }, { "str": "of", - "token_id": 32899, + "token_id": 32838, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284712,7 +284201,7 @@ }, { "str": "each", - "token_id": 32900, + "token_id": 32839, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284724,7 +284213,7 @@ }, { "str": "regular", - "token_id": 32901, + "token_id": 32840, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284736,7 +284225,7 @@ }, { "str": "game", - "token_id": 32902, + "token_id": 32841, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284748,7 +284237,7 @@ }, { "str": "played", - "token_id": 32903, + "token_id": 32842, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284760,7 +284249,7 @@ }, { "str": ",", - "token_id": 32904, + "token_id": 32843, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284772,7 +284261,7 @@ }, { "str": "there", - "token_id": 32905, + "token_id": 32844, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284784,7 +284273,7 @@ }, { "str": "is", - "token_id": 32906, + "token_id": 32845, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284796,7 +284285,7 @@ }, { "str": "chance", - "token_id": 32907, + "token_id": 32846, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284808,7 +284297,7 @@ }, { "str": "that", - "token_id": 32908, + "token_id": 32847, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284820,7 +284309,7 @@ }, { "str": "the", - "token_id": 32909, + "token_id": 32848, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284832,7 +284321,7 @@ }, { "str": "battle", - "token_id": 32910, + "token_id": 32849, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284844,7 +284333,7 @@ }, { "str": "will", - "token_id": 32911, + "token_id": 32850, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284856,7 +284345,7 @@ }, { "str": "be", - "token_id": 32912, + "token_id": 32851, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284868,7 +284357,7 @@ }, { "str": "worth", - "token_id": 32913, + "token_id": 32852, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284880,7 +284369,7 @@ }, { "str": "more", - "token_id": 32914, + "token_id": 32853, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284892,7 +284381,7 @@ }, { "str": "points", - "token_id": 32915, + "token_id": 32854, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284904,7 +284393,7 @@ }, { "str": "than", - "token_id": 32916, + "token_id": 32855, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284916,7 +284405,7 @@ }, { "str": "regular", - "token_id": 32917, + "token_id": 32856, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284928,7 +284417,7 @@ }, { "str": ".", - "token_id": 32918, + "token_id": 32857, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284940,7 +284429,7 @@ }, { "str": "this", - "token_id": 32919, + "token_id": 32858, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284952,7 +284441,7 @@ }, { "str": "can", - "token_id": 32920, + "token_id": 32859, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284964,7 +284453,7 @@ }, { "str": "be", - "token_id": 32921, + "token_id": 32860, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284976,7 +284465,7 @@ }, { "str": "ten", - "token_id": 32922, + "token_id": 32861, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -284988,7 +284477,7 @@ }, { "str": "times", - "token_id": 32923, + "token_id": 32862, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285000,7 +284489,7 @@ }, { "str": ",", - "token_id": 32924, + "token_id": 32863, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285012,7 +284501,7 @@ }, { "str": "one", - "token_id": 32925, + "token_id": 32864, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285024,7 +284513,7 @@ }, { "str": "-", - "token_id": 32926, + "token_id": 32865, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285036,7 +284525,7 @@ }, { "str": "hundred", - "token_id": 32927, + "token_id": 32866, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285048,7 +284537,7 @@ }, { "str": "times", - "token_id": 32928, + "token_id": 32867, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285060,7 +284549,7 @@ }, { "str": "and", - "token_id": 32929, + "token_id": 32868, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285072,7 +284561,7 @@ }, { "str": "even", - "token_id": 32930, + "token_id": 32869, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285084,7 +284573,7 @@ }, { "str": "333", - "token_id": 32931, + "token_id": 32870, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285096,7 +284585,7 @@ }, { "str": "times", - "token_id": 32932, + "token_id": 32871, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285108,7 +284597,7 @@ }, { "str": "as", - "token_id": 32933, + "token_id": 32872, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285120,7 +284609,7 @@ }, { "str": "much", - "token_id": 32934, + "token_id": 32873, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285132,7 +284621,7 @@ }, { "str": "points", - "token_id": 32935, + "token_id": 32874, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285144,7 +284633,7 @@ }, { "str": "you", - "token_id": 32936, + "token_id": 32875, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285156,7 +284645,7 @@ }, { "str": "would", - "token_id": 32937, + "token_id": 32876, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285168,7 +284657,7 @@ }, { "str": "get", - "token_id": 32938, + "token_id": 32877, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285180,7 +284669,7 @@ }, { "str": "in", - "token_id": 32939, + "token_id": 32878, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285192,7 +284681,7 @@ }, { "str": "a", - "token_id": 32940, + "token_id": 32879, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285204,7 +284693,7 @@ }, { "str": "regular", - "token_id": 32941, + "token_id": 32880, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285216,7 +284705,7 @@ }, { "str": "game", - "token_id": 32942, + "token_id": 32881, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285228,7 +284717,7 @@ }, { "str": "turf", - "token_id": 32943, + "token_id": 32882, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285240,7 +284729,7 @@ }, { "str": "war", - "token_id": 32944, + "token_id": 32883, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285252,7 +284741,7 @@ }, { "str": ".", - "token_id": 32945, + "token_id": 32884, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285264,7 +284753,7 @@ }, { "str": "if", - "token_id": 32946, + "token_id": 32885, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285276,7 +284765,7 @@ }, { "str": "you", - "token_id": 32947, + "token_id": 32886, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285288,7 +284777,7 @@ }, { "str": "win", - "token_id": 32948, + "token_id": 32887, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285300,7 +284789,7 @@ }, { "str": "these", - "token_id": 32949, + "token_id": 32888, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285312,7 +284801,7 @@ }, { "str": "games", - "token_id": 32950, + "token_id": 32889, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285324,7 +284813,7 @@ }, { "str": "you", - "token_id": 32951, + "token_id": 32890, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285336,7 +284825,7 @@ }, { "str": "can", - "token_id": 32952, + "token_id": 32891, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285348,7 +284837,7 @@ }, { "str": "collect", - "token_id": 32953, + "token_id": 32892, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285360,7 +284849,7 @@ }, { "str": "conch", - "token_id": 32954, + "token_id": 32893, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285372,7 +284861,7 @@ }, { "str": "shells", - "token_id": 32955, + "token_id": 32894, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285384,7 +284873,7 @@ }, { "str": ",", - "token_id": 32956, + "token_id": 32895, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285396,7 +284885,7 @@ }, { "str": "which", - "token_id": 32957, + "token_id": 32896, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285408,7 +284897,7 @@ }, { "str": "give", - "token_id": 32958, + "token_id": 32897, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285420,7 +284909,7 @@ }, { "str": "you", - "token_id": 32959, + "token_id": 32898, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285432,7 +284921,7 @@ }, { "str": "free", - "token_id": 32960, + "token_id": 32899, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285444,7 +284933,7 @@ }, { "str": "spins", - "token_id": 32961, + "token_id": 32900, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285456,7 +284945,7 @@ }, { "str": "for", - "token_id": 32962, + "token_id": 32901, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285468,7 +284957,7 @@ }, { "str": "the", - "token_id": 32963, + "token_id": 32902, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285480,7 +284969,7 @@ }, { "str": "vending", - "token_id": 32964, + "token_id": 32903, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285492,7 +284981,7 @@ }, { "str": "machine", - "token_id": 32965, + "token_id": 32904, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285504,7 +284993,7 @@ }, { "str": ".", - "token_id": 32966, + "token_id": 32905, "o_rev_id": 1285606684, "in": [ 1285608097 @@ -285516,7 +285005,7 @@ }, { "str": "addition", - "token_id": 32967, + "token_id": 32906, "o_rev_id": 1285606684, "in": [], "out": [ @@ -285525,42 +285014,42 @@ }, { "str": ".", - "token_id": 32968, + "token_id": 32907, "o_rev_id": 1288122708, "in": [], "out": [] }, { "str": "addition", - "token_id": 32969, + "token_id": 32908, "o_rev_id": 1288132958, "in": [], "out": [] }, { "str": "toshiyuki", - "token_id": 32970, + "token_id": 32909, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "sudo", - "token_id": 32971, + "token_id": 32910, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "|", - "token_id": 32972, + "token_id": 32911, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "ryo", - "token_id": 32973, + "token_id": 32912, "o_rev_id": 1289846338, "in": [], "out": [ @@ -285569,63 +285058,63 @@ }, { "str": "nagamatsu", - "token_id": 32974, + "token_id": 32913, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "|", - "token_id": 32975, + "token_id": 32914, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "|", - "token_id": 32976, + "token_id": 32915, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "sayako", - "token_id": 32977, + "token_id": 32916, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "doi", - "token_id": 32978, + "token_id": 32917, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "|", - "token_id": 32979, + "token_id": 32918, "o_rev_id": 1289846338, "in": [], "out": [] }, { "str": "and", - "token_id": 32980, + "token_id": 32919, "o_rev_id": 1290251152, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 32981, + "token_id": 32920, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "announced", - "token_id": 32982, + "token_id": 32921, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285634,42 +285123,42 @@ }, { "str": "an", - "token_id": 32983, + "token_id": 32922, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "update", - "token_id": 32984, + "token_id": 32923, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "for", - "token_id": 32985, + "token_id": 32924, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "the", - "token_id": 32986, + "token_id": 32925, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "game", - "token_id": 32987, + "token_id": 32926, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "would", - "token_id": 32988, + "token_id": 32927, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285678,7 +285167,7 @@ }, { "str": "be", - "token_id": 32989, + "token_id": 32928, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285687,7 +285176,7 @@ }, { "str": "released", - "token_id": 32990, + "token_id": 32929, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285696,147 +285185,147 @@ }, { "str": "on", - "token_id": 32991, + "token_id": 32930, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "12", - "token_id": 32992, + "token_id": 32931, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "june", - "token_id": 32993, + "token_id": 32932, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "2025", - "token_id": 32994, + "token_id": 32933, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": ",", - "token_id": 32995, + "token_id": 32934, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "which", - "token_id": 32996, + "token_id": 32935, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "includes", - "token_id": 32997, + "token_id": 32936, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "enhanced", - "token_id": 32998, + "token_id": 32937, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "visuals", - "token_id": 32999, + "token_id": 32938, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "and", - "token_id": 33000, + "token_id": 32939, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "performance", - "token_id": 33001, + "token_id": 32940, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "on", - "token_id": 33002, + "token_id": 32941, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "the", - "token_id": 33003, + "token_id": 32942, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "[[", - "token_id": 33004, + "token_id": 32943, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 33005, + "token_id": 32944, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "switch", - "token_id": 33006, + "token_id": 32945, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "2", - "token_id": 33007, + "token_id": 32946, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "]]", - "token_id": 33008, + "token_id": 32947, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "console", - "token_id": 33009, + "token_id": 32948, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": ".", - "token_id": 33010, + "token_id": 32949, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "<", - "token_id": 33011, + "token_id": 32950, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285845,7 +285334,7 @@ }, { "str": "ref", - "token_id": 33012, + "token_id": 32951, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285854,7 +285343,7 @@ }, { "str": ">", - "token_id": 33013, + "token_id": 32952, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285863,7 +285352,7 @@ }, { "str": "{{", - "token_id": 33014, + "token_id": 32953, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285872,7 +285361,7 @@ }, { "str": "cite", - "token_id": 33015, + "token_id": 32954, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285881,7 +285370,7 @@ }, { "str": "web", - "token_id": 33016, + "token_id": 32955, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285890,7 +285379,7 @@ }, { "str": "|", - "token_id": 33017, + "token_id": 32956, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285899,7 +285388,7 @@ }, { "str": "date", - "token_id": 33018, + "token_id": 32957, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285908,7 +285397,7 @@ }, { "str": "=", - "token_id": 33019, + "token_id": 32958, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285917,7 +285406,7 @@ }, { "str": "2025", - "token_id": 33020, + "token_id": 32959, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285926,7 +285415,7 @@ }, { "str": "-", - "token_id": 33021, + "token_id": 32960, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285935,7 +285424,7 @@ }, { "str": "06", - "token_id": 33022, + "token_id": 32961, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285944,7 +285433,7 @@ }, { "str": "-", - "token_id": 33023, + "token_id": 32962, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285953,7 +285442,7 @@ }, { "str": "10", - "token_id": 33024, + "token_id": 32963, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285962,7 +285451,7 @@ }, { "str": "|", - "token_id": 33025, + "token_id": 32964, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285971,7 +285460,7 @@ }, { "str": "title", - "token_id": 33026, + "token_id": 32965, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285980,7 +285469,7 @@ }, { "str": "=", - "token_id": 33027, + "token_id": 32966, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285989,7 +285478,7 @@ }, { "str": "splatoon", - "token_id": 33028, + "token_id": 32967, "o_rev_id": 1294902560, "in": [], "out": [ @@ -285998,7 +285487,7 @@ }, { "str": "raiders", - "token_id": 33029, + "token_id": 32968, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286007,7 +285496,7 @@ }, { "str": ",", - "token_id": 33030, + "token_id": 32969, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286016,7 +285505,7 @@ }, { "str": "the", - "token_id": 33031, + "token_id": 32970, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286025,7 +285514,7 @@ }, { "str": "first", - "token_id": 33032, + "token_id": 32971, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286034,7 +285523,7 @@ }, { "str": "-", - "token_id": 33033, + "token_id": 32972, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286043,7 +285532,7 @@ }, { "str": "ever", - "token_id": 33034, + "token_id": 32973, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286052,7 +285541,7 @@ }, { "str": "splatoon", - "token_id": 33035, + "token_id": 32974, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286061,7 +285550,7 @@ }, { "str": "spinoff", - "token_id": 33036, + "token_id": 32975, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286070,7 +285559,7 @@ }, { "str": "game", - "token_id": 33037, + "token_id": 32976, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286079,7 +285568,7 @@ }, { "str": ",", - "token_id": 33038, + "token_id": 32977, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286088,7 +285577,7 @@ }, { "str": "is", - "token_id": 33039, + "token_id": 32978, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286097,7 +285586,7 @@ }, { "str": "coming", - "token_id": 33040, + "token_id": 32979, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286106,7 +285595,7 @@ }, { "str": "to", - "token_id": 33041, + "token_id": 32980, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286115,7 +285604,7 @@ }, { "str": "nintendo", - "token_id": 33042, + "token_id": 32981, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286124,7 +285613,7 @@ }, { "str": "switch", - "token_id": 33043, + "token_id": 32982, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286133,7 +285622,7 @@ }, { "str": "2", - "token_id": 33044, + "token_id": 32983, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286142,7 +285631,7 @@ }, { "str": "!", - "token_id": 33045, + "token_id": 32984, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286151,7 +285640,7 @@ }, { "str": "|", - "token_id": 33046, + "token_id": 32985, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286160,7 +285649,7 @@ }, { "str": "url", - "token_id": 33047, + "token_id": 32986, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286169,7 +285658,7 @@ }, { "str": "=", - "token_id": 33048, + "token_id": 32987, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286178,7 +285667,7 @@ }, { "str": "https", - "token_id": 33049, + "token_id": 32988, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286187,7 +285676,7 @@ }, { "str": ":", - "token_id": 33050, + "token_id": 32989, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286196,7 +285685,7 @@ }, { "str": "/", - "token_id": 33051, + "token_id": 32990, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286205,7 +285694,7 @@ }, { "str": "/", - "token_id": 33052, + "token_id": 32991, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286214,7 +285703,7 @@ }, { "str": "www", - "token_id": 33053, + "token_id": 32992, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286223,7 +285712,7 @@ }, { "str": ".", - "token_id": 33054, + "token_id": 32993, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286232,7 +285721,7 @@ }, { "str": "nintendo", - "token_id": 33055, + "token_id": 32994, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286241,7 +285730,7 @@ }, { "str": ".", - "token_id": 33056, + "token_id": 32995, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286250,7 +285739,7 @@ }, { "str": "com", - "token_id": 33057, + "token_id": 32996, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286259,7 +285748,7 @@ }, { "str": "/", - "token_id": 33058, + "token_id": 32997, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286268,7 +285757,7 @@ }, { "str": "us", - "token_id": 33059, + "token_id": 32998, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286277,7 +285766,7 @@ }, { "str": "/", - "token_id": 33060, + "token_id": 32999, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286286,7 +285775,7 @@ }, { "str": "whatsnew", - "token_id": 33061, + "token_id": 33000, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286295,7 +285784,7 @@ }, { "str": "/", - "token_id": 33062, + "token_id": 33001, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286304,7 +285793,7 @@ }, { "str": "splatoon", - "token_id": 33063, + "token_id": 33002, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286313,7 +285802,7 @@ }, { "str": "-", - "token_id": 33064, + "token_id": 33003, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286322,7 +285811,7 @@ }, { "str": "raiders", - "token_id": 33065, + "token_id": 33004, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286331,7 +285820,7 @@ }, { "str": "-", - "token_id": 33066, + "token_id": 33005, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286340,7 +285829,7 @@ }, { "str": "the", - "token_id": 33067, + "token_id": 33006, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286349,7 +285838,7 @@ }, { "str": "-", - "token_id": 33068, + "token_id": 33007, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286358,7 +285847,7 @@ }, { "str": "first", - "token_id": 33069, + "token_id": 33008, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286367,7 +285856,7 @@ }, { "str": "-", - "token_id": 33070, + "token_id": 33009, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286376,7 +285865,7 @@ }, { "str": "ever", - "token_id": 33071, + "token_id": 33010, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286385,7 +285874,7 @@ }, { "str": "-", - "token_id": 33072, + "token_id": 33011, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286394,7 +285883,7 @@ }, { "str": "splatoon", - "token_id": 33073, + "token_id": 33012, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286403,7 +285892,7 @@ }, { "str": "-", - "token_id": 33074, + "token_id": 33013, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286412,7 +285901,7 @@ }, { "str": "spinoff", - "token_id": 33075, + "token_id": 33014, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286421,7 +285910,7 @@ }, { "str": "-", - "token_id": 33076, + "token_id": 33015, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286430,7 +285919,7 @@ }, { "str": "game", - "token_id": 33077, + "token_id": 33016, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286439,7 +285928,7 @@ }, { "str": "-", - "token_id": 33078, + "token_id": 33017, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286448,7 +285937,7 @@ }, { "str": "is", - "token_id": 33079, + "token_id": 33018, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286457,7 +285946,7 @@ }, { "str": "-", - "token_id": 33080, + "token_id": 33019, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286466,7 +285955,7 @@ }, { "str": "coming", - "token_id": 33081, + "token_id": 33020, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286475,7 +285964,7 @@ }, { "str": "-", - "token_id": 33082, + "token_id": 33021, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286484,7 +285973,7 @@ }, { "str": "to", - "token_id": 33083, + "token_id": 33022, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286493,7 +285982,7 @@ }, { "str": "-", - "token_id": 33084, + "token_id": 33023, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286502,7 +285991,7 @@ }, { "str": "nintendo", - "token_id": 33085, + "token_id": 33024, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286511,7 +286000,7 @@ }, { "str": "-", - "token_id": 33086, + "token_id": 33025, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286520,7 +286009,7 @@ }, { "str": "switch", - "token_id": 33087, + "token_id": 33026, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286529,7 +286018,7 @@ }, { "str": "-", - "token_id": 33088, + "token_id": 33027, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286538,7 +286027,7 @@ }, { "str": "2", - "token_id": 33089, + "token_id": 33028, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286547,7 +286036,7 @@ }, { "str": "/", - "token_id": 33090, + "token_id": 33029, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286556,7 +286045,7 @@ }, { "str": "|", - "token_id": 33091, + "token_id": 33030, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286565,7 +286054,7 @@ }, { "str": "access", - "token_id": 33092, + "token_id": 33031, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286574,7 +286063,7 @@ }, { "str": "-", - "token_id": 33093, + "token_id": 33032, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286583,7 +286072,7 @@ }, { "str": "date", - "token_id": 33094, + "token_id": 33033, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286592,7 +286081,7 @@ }, { "str": "=", - "token_id": 33095, + "token_id": 33034, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286601,7 +286090,7 @@ }, { "str": "2025", - "token_id": 33096, + "token_id": 33035, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286610,7 +286099,7 @@ }, { "str": "-", - "token_id": 33097, + "token_id": 33036, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286619,7 +286108,7 @@ }, { "str": "06", - "token_id": 33098, + "token_id": 33037, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286628,7 +286117,7 @@ }, { "str": "-", - "token_id": 33099, + "token_id": 33038, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286637,7 +286126,7 @@ }, { "str": "10", - "token_id": 33100, + "token_id": 33039, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286646,7 +286135,7 @@ }, { "str": "|", - "token_id": 33101, + "token_id": 33040, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286655,7 +286144,7 @@ }, { "str": "website", - "token_id": 33102, + "token_id": 33041, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286664,7 +286153,7 @@ }, { "str": "=", - "token_id": 33103, + "token_id": 33042, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286673,7 +286162,7 @@ }, { "str": "nintendo", - "token_id": 33104, + "token_id": 33043, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286682,7 +286171,7 @@ }, { "str": "|", - "token_id": 33105, + "token_id": 33044, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286691,7 +286180,7 @@ }, { "str": "language", - "token_id": 33106, + "token_id": 33045, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286700,7 +286189,7 @@ }, { "str": "=", - "token_id": 33107, + "token_id": 33046, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286709,7 +286198,7 @@ }, { "str": "en", - "token_id": 33108, + "token_id": 33047, "o_rev_id": 1294902560, "in": [], "out": [ @@ -286718,280 +286207,273 @@ }, { "str": "}}", - "token_id": 33109, + "token_id": 33048, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "<", - "token_id": 33110, + "token_id": 33049, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "/", - "token_id": 33111, + "token_id": 33050, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "ref", - "token_id": 33112, + "token_id": 33051, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": ">", - "token_id": 33113, + "token_id": 33052, "o_rev_id": 1294902560, "in": [], "out": [] }, { "str": "june", - "token_id": 33114, + "token_id": 33053, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "2025", - "token_id": 33115, - "o_rev_id": 1294910906, - "in": [], - "out": [] - }, - { - "str": "splatoon", - "token_id": 33116, + "token_id": 33054, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "series", - "token_id": 33117, + "token_id": 33055, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "and", - "token_id": 33118, + "token_id": 33056, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "the", - "token_id": 33119, + "token_id": 33057, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "sequel", - "token_id": 33120, + "token_id": 33058, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "to", - "token_id": 33121, + "token_id": 33059, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "'", - "token_id": 33122, + "token_id": 33060, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "'", - "token_id": 33123, + "token_id": 33061, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "[[", - "token_id": 33124, + "token_id": 33062, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 33125, + "token_id": 33063, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "2", - "token_id": 33126, + "token_id": 33064, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "]]", - "token_id": 33127, + "token_id": 33065, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "'", - "token_id": 33128, + "token_id": 33066, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "'", - "token_id": 33129, + "token_id": 33067, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": ".", - "token_id": 33130, + "token_id": 33068, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "name", - "token_id": 33131, + "token_id": 33069, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33132, + "token_id": 33070, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "\"", - "token_id": 33133, + "token_id": 33071, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": ":", - "token_id": 33134, + "token_id": 33072, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "0", - "token_id": 33135, + "token_id": 33073, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "\"", - "token_id": 33136, + "token_id": 33074, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33137, + "token_id": 33075, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "last", - "token_id": 33138, + "token_id": 33076, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33139, + "token_id": 33077, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "romano", - "token_id": 33140, + "token_id": 33078, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33141, + "token_id": 33079, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "first", - "token_id": 33142, + "token_id": 33080, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33143, + "token_id": 33081, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "sal", - "token_id": 33144, + "token_id": 33082, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33145, + "token_id": 33083, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "date", - "token_id": 33146, + "token_id": 33084, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33147, + "token_id": 33085, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "2022", - "token_id": 33148, + "token_id": 33086, "o_rev_id": 1294910906, "in": [ 1310084806 @@ -287002,469 +286484,469 @@ }, { "str": "-", - "token_id": 33149, + "token_id": 33087, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "04", - "token_id": 33150, + "token_id": 33088, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33151, + "token_id": 33089, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "22", - "token_id": 33152, + "token_id": 33090, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "launches", - "token_id": 33153, + "token_id": 33091, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "september", - "token_id": 33154, + "token_id": 33092, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "9", - "token_id": 33155, + "token_id": 33093, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "gematsu", - "token_id": 33156, + "token_id": 33094, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "2022", - "token_id": 33157, + "token_id": 33095, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "04", - "token_id": 33158, + "token_id": 33096, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "launches", - "token_id": 33159, + "token_id": 33097, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "september", - "token_id": 33160, + "token_id": 33098, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "9", - "token_id": 33161, + "token_id": 33099, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33162, + "token_id": 33100, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "url", - "token_id": 33163, + "token_id": 33101, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "status", - "token_id": 33164, + "token_id": 33102, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33165, + "token_id": 33103, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "live", - "token_id": 33166, + "token_id": 33104, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "20250124222904", - "token_id": 33167, + "token_id": 33105, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "gematsu", - "token_id": 33168, + "token_id": 33106, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "2022", - "token_id": 33169, + "token_id": 33107, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "04", - "token_id": 33170, + "token_id": 33108, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "launches", - "token_id": 33171, + "token_id": 33109, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33172, + "token_id": 33110, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "september", - "token_id": 33173, + "token_id": 33111, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33174, + "token_id": 33112, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "9", - "token_id": 33175, + "token_id": 33113, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33176, + "token_id": 33114, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "archive", - "token_id": 33177, + "token_id": 33115, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33178, + "token_id": 33116, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "date", - "token_id": 33179, + "token_id": 33117, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33180, + "token_id": 33118, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "2025", - "token_id": 33181, + "token_id": 33119, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33182, + "token_id": 33120, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "01", - "token_id": 33183, + "token_id": 33121, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33184, + "token_id": 33122, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "24", - "token_id": 33185, + "token_id": 33123, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33186, + "token_id": 33124, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "access", - "token_id": 33187, + "token_id": 33125, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33188, + "token_id": 33126, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "date", - "token_id": 33189, + "token_id": 33127, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33190, + "token_id": 33128, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "2025", - "token_id": 33191, + "token_id": 33129, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33192, + "token_id": 33130, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "06", - "token_id": 33193, + "token_id": 33131, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33194, + "token_id": 33132, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "10", - "token_id": 33195, + "token_id": 33133, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33196, + "token_id": 33134, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "website", - "token_id": 33197, + "token_id": 33135, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33198, + "token_id": 33136, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "gematsu", - "token_id": 33199, + "token_id": 33137, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33200, + "token_id": 33138, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "language", - "token_id": 33201, + "token_id": 33139, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33202, + "token_id": 33140, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "en", - "token_id": 33203, + "token_id": 33141, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33204, + "token_id": 33142, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "us", - "token_id": 33205, + "token_id": 33143, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "}}", - "token_id": 33206, + "token_id": 33144, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "<", - "token_id": 33207, + "token_id": 33145, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "ref", - "token_id": 33208, + "token_id": 33146, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": ">", - "token_id": 33209, + "token_id": 33147, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "announcing", - "token_id": 33210, + "token_id": 33148, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "the", - "token_id": 33211, + "token_id": 33149, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": ":", - "token_id": 33212, + "token_id": 33150, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "0", - "token_id": 33213, + "token_id": 33151, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": ">", - "token_id": 33214, + "token_id": 33152, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "additionally", - "token_id": 33215, + "token_id": 33153, "o_rev_id": 1294910906, "in": [], "out": [ @@ -287473,7 +286955,7 @@ }, { "str": ",", - "token_id": 33216, + "token_id": 33154, "o_rev_id": 1294910906, "in": [], "out": [ @@ -287482,7 +286964,7 @@ }, { "str": "'", - "token_id": 33217, + "token_id": 33155, "o_rev_id": 1294910906, "in": [], "out": [ @@ -287491,7 +286973,7 @@ }, { "str": "'", - "token_id": 33218, + "token_id": 33156, "o_rev_id": 1294910906, "in": [], "out": [ @@ -287500,7 +286982,7 @@ }, { "str": "[[", - "token_id": 33219, + "token_id": 33157, "o_rev_id": 1294910906, "in": [], "out": [ @@ -287509,7 +286991,7 @@ }, { "str": "splatoon", - "token_id": 33220, + "token_id": 33158, "o_rev_id": 1294910906, "in": [], "out": [ @@ -287518,7 +287000,7 @@ }, { "str": "2", - "token_id": 33221, + "token_id": 33159, "o_rev_id": 1294910906, "in": [], "out": [ @@ -287527,7 +287009,7 @@ }, { "str": ":", - "token_id": 33222, + "token_id": 33160, "o_rev_id": 1294910906, "in": [], "out": [ @@ -287536,371 +287018,392 @@ }, { "str": "|", - "token_id": 33223, + "token_id": 33161, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "url", - "token_id": 33224, + "token_id": 33162, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33225, + "token_id": 33163, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "status", - "token_id": 33226, + "token_id": 33164, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33227, + "token_id": 33165, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "live", - "token_id": 33228, + "token_id": 33166, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33229, + "token_id": 33167, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "archive", - "token_id": 33230, + "token_id": 33168, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33231, + "token_id": 33169, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "url", - "token_id": 33232, + "token_id": 33170, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33233, + "token_id": 33171, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33234, + "token_id": 33172, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "archive", - "token_id": 33235, + "token_id": 33173, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33236, + "token_id": 33174, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "date", - "token_id": 33237, + "token_id": 33175, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33238, + "token_id": 33176, + "o_rev_id": 1294910906, + "in": [], + "out": [] + }, + { + "str": "24", + "token_id": 33177, + "o_rev_id": 1294910906, + "in": [], + "out": [] + }, + { + "str": "august", + "token_id": 33178, + "o_rev_id": 1294910906, + "in": [], + "out": [] + }, + { + "str": "2022", + "token_id": 33179, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33239, + "token_id": 33180, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "access", - "token_id": 33240, + "token_id": 33181, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "-", - "token_id": 33241, + "token_id": 33182, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "date", - "token_id": 33242, + "token_id": 33183, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33243, + "token_id": 33184, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "29", - "token_id": 33244, + "token_id": 33185, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "august", - "token_id": 33245, + "token_id": 33186, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "2022", - "token_id": 33246, + "token_id": 33187, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33247, + "token_id": 33188, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "website", - "token_id": 33248, + "token_id": 33189, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33249, + "token_id": 33190, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "techradar", - "token_id": 33250, + "token_id": 33191, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "|", - "token_id": 33251, + "token_id": 33192, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "language", - "token_id": 33252, + "token_id": 33193, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "=", - "token_id": 33253, + "token_id": 33194, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "en", - "token_id": 33254, + "token_id": 33195, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "}}", - "token_id": 33255, + "token_id": 33196, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "<", - "token_id": 33256, + "token_id": 33197, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "/", - "token_id": 33257, + "token_id": 33198, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "ref", - "token_id": 33258, + "token_id": 33199, "o_rev_id": 1294910906, "in": [], "out": [] }, { "str": "released", - "token_id": 33259, + "token_id": 33200, "o_rev_id": 1295214140, "in": [], "out": [] }, { "str": "alongside", - "token_id": 33260, + "token_id": 33201, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "the", - "token_id": 33261, + "token_id": 33202, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "enhanced", - "token_id": 33262, + "token_id": 33203, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "visuals", - "token_id": 33263, + "token_id": 33204, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "and", - "token_id": 33264, + "token_id": 33205, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "performance", - "token_id": 33265, + "token_id": 33206, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "for", - "token_id": 33266, + "token_id": 33207, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "the", - "token_id": 33267, + "token_id": 33208, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "next", - "token_id": 33268, + "token_id": 33209, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "generation", - "token_id": 33269, + "token_id": 33210, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "of", - "token_id": 33270, + "token_id": 33211, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "the", - "token_id": 33271, + "token_id": 33212, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 33272, + "token_id": 33213, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "switch", - "token_id": 33273, + "token_id": 33214, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": ",", - "token_id": 33274, + "token_id": 33215, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "30", - "token_id": 33275, + "token_id": 33216, "o_rev_id": 1295848419, "in": [], "out": [ @@ -287909,371 +287412,371 @@ }, { "str": "new", - "token_id": 33276, + "token_id": 33217, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "weapons", - "token_id": 33277, + "token_id": 33218, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "were", - "token_id": 33278, + "token_id": 33219, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "added", - "token_id": 33279, + "token_id": 33220, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "to", - "token_id": 33280, + "token_id": 33221, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "the", - "token_id": 33281, + "token_id": 33222, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "game", - "token_id": 33282, + "token_id": 33223, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": ",", - "token_id": 33283, + "token_id": 33224, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "along", - "token_id": 33284, + "token_id": 33225, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "with", - "token_id": 33285, + "token_id": 33226, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "a", - "token_id": 33286, + "token_id": 33227, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "teaser", - "token_id": 33287, + "token_id": 33228, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "trailer", - "token_id": 33288, + "token_id": 33229, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "for", - "token_id": 33289, + "token_id": 33230, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "the", - "token_id": 33290, + "token_id": 33231, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "first", - "token_id": 33291, + "token_id": 33232, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "spin", - "token_id": 33292, + "token_id": 33233, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "-", - "token_id": 33293, + "token_id": 33234, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "off", - "token_id": 33294, + "token_id": 33235, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "game", - "token_id": 33295, + "token_id": 33236, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "of", - "token_id": 33296, + "token_id": 33237, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "the", - "token_id": 33297, + "token_id": 33238, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33298, + "token_id": 33239, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33299, + "token_id": 33240, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 33300, + "token_id": 33241, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33301, + "token_id": 33242, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33302, + "token_id": 33243, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "franchise", - "token_id": 33303, + "token_id": 33244, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": ",", - "token_id": 33304, + "token_id": 33245, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33305, + "token_id": 33246, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33306, + "token_id": 33247, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 33307, + "token_id": 33248, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "raiders", - "token_id": 33308, + "token_id": 33249, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33309, + "token_id": 33250, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33310, + "token_id": 33251, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": ",", - "token_id": 33311, + "token_id": 33252, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "which", - "token_id": 33312, + "token_id": 33253, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "would", - "token_id": 33313, + "token_id": 33254, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "include", - "token_id": 33314, + "token_id": 33255, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "deep", - "token_id": 33315, + "token_id": 33256, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "cut", - "token_id": 33316, + "token_id": 33257, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "as", - "token_id": 33317, + "token_id": 33258, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "part", - "token_id": 33318, + "token_id": 33259, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "of", - "token_id": 33319, + "token_id": 33260, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "the", - "token_id": 33320, + "token_id": 33261, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "new", - "token_id": 33321, + "token_id": 33262, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "game", - "token_id": 33322, + "token_id": 33263, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "'", - "token_id": 33323, + "token_id": 33264, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "s", - "token_id": 33324, + "token_id": 33265, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "main", - "token_id": 33325, + "token_id": 33266, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "story", - "token_id": 33326, + "token_id": 33267, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": ".", - "token_id": 33327, + "token_id": 33268, "o_rev_id": 1295848419, "in": [], "out": [] }, { "str": "name", - "token_id": 33328, + "token_id": 33269, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288282,7 +287785,7 @@ }, { "str": "=", - "token_id": 33329, + "token_id": 33270, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288291,7 +287794,7 @@ }, { "str": "\"", - "token_id": 33330, + "token_id": 33271, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288300,7 +287803,7 @@ }, { "str": "raiders", - "token_id": 33331, + "token_id": 33272, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288309,7 +287812,7 @@ }, { "str": "-", - "token_id": 33332, + "token_id": 33273, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288318,7 +287821,7 @@ }, { "str": "20250610", - "token_id": 33333, + "token_id": 33274, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288327,7 +287830,7 @@ }, { "str": "\"", - "token_id": 33334, + "token_id": 33275, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288336,21 +287839,21 @@ }, { "str": "<", - "token_id": 33335, + "token_id": 33276, "o_rev_id": 1295851241, "in": [], "out": [] }, { "str": "ref", - "token_id": 33336, + "token_id": 33277, "o_rev_id": 1295851241, "in": [], "out": [] }, { "str": "name", - "token_id": 33337, + "token_id": 33278, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288359,7 +287862,7 @@ }, { "str": "=", - "token_id": 33338, + "token_id": 33279, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288368,7 +287871,7 @@ }, { "str": "\"", - "token_id": 33339, + "token_id": 33280, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288377,21 +287880,21 @@ }, { "str": "raiders", - "token_id": 33340, + "token_id": 33281, "o_rev_id": 1295851241, "in": [], "out": [] }, { "str": "-", - "token_id": 33341, + "token_id": 33282, "o_rev_id": 1295851241, "in": [], "out": [] }, { "str": "20250610", - "token_id": 33342, + "token_id": 33283, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288400,7 +287903,7 @@ }, { "str": "\"", - "token_id": 33343, + "token_id": 33284, "o_rev_id": 1295851241, "in": [], "out": [ @@ -288409,21 +287912,21 @@ }, { "str": "/", - "token_id": 33344, + "token_id": 33285, "o_rev_id": 1295851241, "in": [], "out": [] }, { "str": ">", - "token_id": 33345, + "token_id": 33286, "o_rev_id": 1295851241, "in": [], "out": [] }, { "str": "[[", - "token_id": 33346, + "token_id": 33287, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288432,7 +287935,7 @@ }, { "str": "category", - "token_id": 33347, + "token_id": 33288, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288441,7 +287944,7 @@ }, { "str": ":", - "token_id": 33348, + "token_id": 33289, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288450,7 +287953,7 @@ }, { "str": "nintendo", - "token_id": 33349, + "token_id": 33290, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288459,7 +287962,7 @@ }, { "str": "music", - "token_id": 33350, + "token_id": 33291, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288468,7 +287971,7 @@ }, { "str": "(", - "token_id": 33351, + "token_id": 33292, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288477,7 +287980,7 @@ }, { "str": "application", - "token_id": 33352, + "token_id": 33293, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288486,7 +287989,7 @@ }, { "str": ")", - "token_id": 33353, + "token_id": 33294, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288495,7 +287998,7 @@ }, { "str": "]]", - "token_id": 33354, + "token_id": 33295, "o_rev_id": 1301848676, "in": [], "out": [ @@ -288504,112 +288007,112 @@ }, { "str": "[[", - "token_id": 33355, + "token_id": 33296, "o_rev_id": 1303563817, "in": [], "out": [] }, { "str": "shiver", - "token_id": 33356, + "token_id": 33297, "o_rev_id": 1303563817, "in": [], "out": [] }, { "str": ",", - "token_id": 33357, + "token_id": 33298, "o_rev_id": 1303563817, "in": [], "out": [] }, { "str": "frye", - "token_id": 33358, + "token_id": 33299, "o_rev_id": 1303563817, "in": [], "out": [] }, { "str": "and", - "token_id": 33359, + "token_id": 33300, "o_rev_id": 1303563817, "in": [], "out": [] }, { "str": "]]", - "token_id": 33360, + "token_id": 33301, "o_rev_id": 1303563817, "in": [], "out": [] }, { "str": "[[", - "token_id": 33361, + "token_id": 33302, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": "category", - "token_id": 33362, + "token_id": 33303, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": ":", - "token_id": 33363, + "token_id": 33304, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 33364, + "token_id": 33305, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": "switch", - "token_id": 33365, + "token_id": 33306, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": "2", - "token_id": 33366, + "token_id": 33307, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": "enhanced", - "token_id": 33367, + "token_id": 33308, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": "games", - "token_id": 33368, + "token_id": 33309, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": "]]", - "token_id": 33369, + "token_id": 33310, "o_rev_id": 1303715992, "in": [], "out": [] }, { "str": "2", - "token_id": 33370, + "token_id": 33311, "o_rev_id": 1305459302, "in": [], "out": [ @@ -288618,7 +288121,7 @@ }, { "str": "2017", - "token_id": 33371, + "token_id": 33312, "o_rev_id": 1310081275, "in": [], "out": [ @@ -288627,7 +288130,7 @@ }, { "str": "2017", - "token_id": 33372, + "token_id": 33313, "o_rev_id": 1310081275, "in": [], "out": [ @@ -288636,7 +288139,7 @@ }, { "str": "2017", - "token_id": 33373, + "token_id": 33314, "o_rev_id": 1310081275, "in": [], "out": [ @@ -288645,7 +288148,7 @@ }, { "str": "2017", - "token_id": 33374, + "token_id": 33315, "o_rev_id": 1310081275, "in": [], "out": [ @@ -288654,35 +288157,35 @@ }, { "str": "[[", - "token_id": 33375, + "token_id": 33316, "o_rev_id": 1312076753, "in": [], "out": [] }, { "str": "sequel", - "token_id": 33376, + "token_id": 33317, "o_rev_id": 1312076753, "in": [], "out": [] }, { "str": "games", - "token_id": 33377, + "token_id": 33318, "o_rev_id": 1312076753, "in": [], "out": [] }, { "str": "]]", - "token_id": 33378, + "token_id": 33319, "o_rev_id": 1312076753, "in": [], "out": [] }, { "str": "an", - "token_id": 33379, + "token_id": 33320, "o_rev_id": 1316275858, "in": [], "out": [ @@ -288691,7 +288194,7 @@ }, { "str": "ifinite", - "token_id": 33380, + "token_id": 33321, "o_rev_id": 1316275858, "in": [], "out": [ @@ -288700,7 +288203,7 @@ }, { "str": "don", - "token_id": 33381, + "token_id": 33322, "o_rev_id": 1316275994, "in": [], "out": [ @@ -288709,7 +288212,7 @@ }, { "str": "'", - "token_id": 33382, + "token_id": 33323, "o_rev_id": 1316275994, "in": [], "out": [ @@ -288718,7 +288221,7 @@ }, { "str": "t", - "token_id": 33383, + "token_id": 33324, "o_rev_id": 1316275994, "in": [], "out": [ @@ -288727,7 +288230,7 @@ }, { "str": "named", - "token_id": 33384, + "token_id": 33325, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288736,7 +288239,7 @@ }, { "str": "‘memverse", - "token_id": 33385, + "token_id": 33326, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288745,7 +288248,7 @@ }, { "str": "’", - "token_id": 33386, + "token_id": 33327, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288754,7 +288257,7 @@ }, { "str": "created", - "token_id": 33387, + "token_id": 33328, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288763,7 +288266,7 @@ }, { "str": "by", - "token_id": 33388, + "token_id": 33329, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288772,7 +288275,7 @@ }, { "str": "marina", - "token_id": 33389, + "token_id": 33330, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288781,7 +288284,7 @@ }, { "str": "because", - "token_id": 33390, + "token_id": 33331, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288790,7 +288293,7 @@ }, { "str": "of", - "token_id": 33391, + "token_id": 33332, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288799,7 +288302,7 @@ }, { "str": "order", - "token_id": 33392, + "token_id": 33333, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288808,7 +288311,7 @@ }, { "str": ",", - "token_id": 33393, + "token_id": 33334, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288817,7 +288320,7 @@ }, { "str": "the", - "token_id": 33394, + "token_id": 33335, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288826,7 +288329,7 @@ }, { "str": "final", - "token_id": 33395, + "token_id": 33336, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288835,7 +288338,7 @@ }, { "str": "boss", - "token_id": 33396, + "token_id": 33337, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288844,7 +288347,7 @@ }, { "str": "of", - "token_id": 33397, + "token_id": 33338, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288853,7 +288356,7 @@ }, { "str": "side", - "token_id": 33398, + "token_id": 33339, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288862,7 +288365,7 @@ }, { "str": "order", - "token_id": 33399, + "token_id": 33340, "o_rev_id": 1322456507, "in": [], "out": [ @@ -288871,7 +288374,7 @@ }, { "str": "her", - "token_id": 33400, + "token_id": 33341, "o_rev_id": 1323424605, "in": [ 1327668959 @@ -288883,7 +288386,7 @@ }, { "str": "[[", - "token_id": 33401, + "token_id": 33342, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288892,7 +288395,7 @@ }, { "str": "category", - "token_id": 33402, + "token_id": 33343, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288901,7 +288404,7 @@ }, { "str": ":", - "token_id": 33403, + "token_id": 33344, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288910,7 +288413,7 @@ }, { "str": "tentacles", - "token_id": 33404, + "token_id": 33345, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288919,7 +288422,7 @@ }, { "str": "/", - "token_id": 33405, + "token_id": 33346, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288928,7 +288431,7 @@ }, { "str": "tentacle", - "token_id": 33406, + "token_id": 33347, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288937,7 +288440,7 @@ }, { "str": "monsters", - "token_id": 33407, + "token_id": 33348, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288946,7 +288449,7 @@ }, { "str": "in", - "token_id": 33408, + "token_id": 33349, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288955,7 +288458,7 @@ }, { "str": "fiction", - "token_id": 33409, + "token_id": 33350, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288964,7 +288467,7 @@ }, { "str": "]]", - "token_id": 33410, + "token_id": 33351, "o_rev_id": 1325082081, "in": [], "out": [ @@ -288973,98 +288476,98 @@ }, { "str": "[[", - "token_id": 33411, + "token_id": 33352, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": "shiver", - "token_id": 33412, + "token_id": 33353, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": ",", - "token_id": 33413, + "token_id": 33354, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": "frye", - "token_id": 33414, + "token_id": 33355, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": "and", - "token_id": 33415, + "token_id": 33356, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": "big", - "token_id": 33416, + "token_id": 33357, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": "man", - "token_id": 33417, + "token_id": 33358, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": "|", - "token_id": 33418, + "token_id": 33359, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": "]]", - "token_id": 33419, + "token_id": 33360, "o_rev_id": 1325757032, "in": [], "out": [] }, { "str": "[[", - "token_id": 33420, + "token_id": 33361, "o_rev_id": 1326099978, "in": [], "out": [] }, { "str": "singapore", - "token_id": 33421, + "token_id": 33362, "o_rev_id": 1326099978, "in": [], "out": [] }, { "str": "|", - "token_id": 33422, + "token_id": 33363, "o_rev_id": 1326099978, "in": [], "out": [] }, { "str": "]]", - "token_id": 33423, + "token_id": 33364, "o_rev_id": 1326099978, "in": [], "out": [] }, { "str": "former", - "token_id": 33424, + "token_id": 33365, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289073,7 +288576,7 @@ }, { "str": "captain", - "token_id": 33425, + "token_id": 33366, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289082,7 +288585,7 @@ }, { "str": ",", - "token_id": 33426, + "token_id": 33367, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289091,14 +288594,14 @@ }, { "str": ",", - "token_id": 33427, + "token_id": 33368, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "highly", - "token_id": 33428, + "token_id": 33369, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289107,7 +288610,7 @@ }, { "str": "dangerous", - "token_id": 33429, + "token_id": 33370, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289116,7 +288619,7 @@ }, { "str": "neo", - "token_id": 33430, + "token_id": 33371, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289125,70 +288628,70 @@ }, { "str": "companion", - "token_id": 33431, + "token_id": 33372, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": ",", - "token_id": 33432, + "token_id": 33373, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "clear", - "token_id": 33433, + "token_id": 33374, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "away", - "token_id": 33434, + "token_id": 33375, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "most", - "token_id": 33435, + "token_id": 33376, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "fuzzy", - "token_id": 33436, + "token_id": 33377, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "by", - "token_id": 33437, + "token_id": 33378, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "the", - "token_id": 33438, + "token_id": 33379, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "ooze", - "token_id": 33439, + "token_id": 33380, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "whom", - "token_id": 33440, + "token_id": 33381, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289197,28 +288700,28 @@ }, { "str": "appears", - "token_id": 33441, + "token_id": 33382, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "in", - "token_id": 33442, + "token_id": 33383, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "his", - "token_id": 33443, + "token_id": 33384, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "octobot", - "token_id": 33444, + "token_id": 33385, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289227,21 +288730,21 @@ }, { "str": "mech", - "token_id": 33445, + "token_id": 33386, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": ",", - "token_id": 33446, + "token_id": 33387, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "and", - "token_id": 33447, + "token_id": 33388, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289250,35 +288753,35 @@ }, { "str": "the", - "token_id": 33448, + "token_id": 33389, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "new", - "token_id": 33449, + "token_id": 33390, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "squidbeak", - "token_id": 33450, + "token_id": 33391, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 33451, + "token_id": 33392, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "for", - "token_id": 33452, + "token_id": 33393, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289287,7 +288790,7 @@ }, { "str": "him", - "token_id": 33453, + "token_id": 33394, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289296,14 +288799,14 @@ }, { "str": ",", - "token_id": 33454, + "token_id": 33395, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": ",", - "token_id": 33455, + "token_id": 33396, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289312,7 +288815,7 @@ }, { "str": "is", - "token_id": 33456, + "token_id": 33397, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289321,7 +288824,7 @@ }, { "str": "seen", - "token_id": 33457, + "token_id": 33398, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289330,49 +288833,49 @@ }, { "str": "being", - "token_id": 33458, + "token_id": 33399, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "taken", - "token_id": 33459, + "token_id": 33400, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "away", - "token_id": 33460, + "token_id": 33401, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "by", - "token_id": 33461, + "token_id": 33402, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "fuzzy", - "token_id": 33462, + "token_id": 33403, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "ooze", - "token_id": 33463, + "token_id": 33404, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": ",", - "token_id": 33464, + "token_id": 33405, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289381,7 +288884,7 @@ }, { "str": "neo", - "token_id": 33465, + "token_id": 33406, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289390,28 +288893,28 @@ }, { "str": "former", - "token_id": 33466, + "token_id": 33407, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "human", - "token_id": 33467, + "token_id": 33408, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": "settlement", - "token_id": 33468, + "token_id": 33409, "o_rev_id": 1327601720, "in": [], "out": [] }, { "str": ",", - "token_id": 33469, + "token_id": 33410, "o_rev_id": 1327601720, "in": [], "out": [ @@ -289420,7 +288923,7 @@ }, { "str": "soldiers", - "token_id": 33470, + "token_id": 33411, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289429,7 +288932,7 @@ }, { "str": ",", - "token_id": 33471, + "token_id": 33412, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289438,7 +288941,7 @@ }, { "str": "whom", - "token_id": 33472, + "token_id": 33413, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289447,7 +288950,7 @@ }, { "str": "he", - "token_id": 33473, + "token_id": 33414, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289456,7 +288959,7 @@ }, { "str": "claims", - "token_id": 33474, + "token_id": 33415, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289465,7 +288968,7 @@ }, { "str": "have", - "token_id": 33475, + "token_id": 33416, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289474,7 +288977,7 @@ }, { "str": "recently", - "token_id": 33476, + "token_id": 33417, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289483,7 +288986,7 @@ }, { "str": "been", - "token_id": 33477, + "token_id": 33418, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289492,7 +288995,7 @@ }, { "str": "going", - "token_id": 33478, + "token_id": 33419, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289501,7 +289004,7 @@ }, { "str": "missing", - "token_id": 33479, + "token_id": 33420, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289510,7 +289013,7 @@ }, { "str": ",", - "token_id": 33480, + "token_id": 33421, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289519,7 +289022,7 @@ }, { "str": "and", - "token_id": 33481, + "token_id": 33422, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289528,7 +289031,7 @@ }, { "str": "proceeds", - "token_id": 33482, + "token_id": 33423, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289537,7 +289040,7 @@ }, { "str": "to", - "token_id": 33483, + "token_id": 33424, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289546,7 +289049,7 @@ }, { "str": "start", - "token_id": 33484, + "token_id": 33425, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289555,7 +289058,7 @@ }, { "str": "a", - "token_id": 33485, + "token_id": 33426, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289564,7 +289067,7 @@ }, { "str": "battle", - "token_id": 33486, + "token_id": 33427, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289573,7 +289076,7 @@ }, { "str": "with", - "token_id": 33487, + "token_id": 33428, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289582,7 +289085,7 @@ }, { "str": "the", - "token_id": 33488, + "token_id": 33429, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289591,7 +289094,7 @@ }, { "str": "player", - "token_id": 33489, + "token_id": 33430, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289600,7 +289103,7 @@ }, { "str": "as", - "token_id": 33490, + "token_id": 33431, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289609,7 +289112,7 @@ }, { "str": "falls", - "token_id": 33491, + "token_id": 33432, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289618,7 +289121,7 @@ }, { "str": "upon", - "token_id": 33492, + "token_id": 33433, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289627,7 +289130,7 @@ }, { "str": "falling", - "token_id": 33493, + "token_id": 33434, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289636,7 +289139,7 @@ }, { "str": "into", - "token_id": 33494, + "token_id": 33435, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289645,7 +289148,7 @@ }, { "str": "the", - "token_id": 33495, + "token_id": 33436, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289654,7 +289157,7 @@ }, { "str": "new", - "token_id": 33496, + "token_id": 33437, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289663,7 +289166,7 @@ }, { "str": "squidbeak", - "token_id": 33497, + "token_id": 33438, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289672,7 +289175,7 @@ }, { "str": "splatoon", - "token_id": 33498, + "token_id": 33439, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289681,7 +289184,7 @@ }, { "str": "explores", - "token_id": 33499, + "token_id": 33440, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289690,7 +289193,7 @@ }, { "str": "is", - "token_id": 33500, + "token_id": 33441, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289699,7 +289202,7 @@ }, { "str": "-", - "token_id": 33501, + "token_id": 33442, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289708,7 +289211,7 @@ }, { "str": "from", - "token_id": 33502, + "token_id": 33443, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289717,7 +289220,7 @@ }, { "str": "false", - "token_id": 33503, + "token_id": 33444, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289726,7 +289229,7 @@ }, { "str": "because", - "token_id": 33504, + "token_id": 33445, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289735,7 +289238,7 @@ }, { "str": "of", - "token_id": 33505, + "token_id": 33446, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289744,7 +289247,7 @@ }, { "str": "metal", - "token_id": 33506, + "token_id": 33447, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289753,7 +289256,7 @@ }, { "str": "interference", - "token_id": 33507, + "token_id": 33448, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289762,7 +289265,7 @@ }, { "str": "-", - "token_id": 33508, + "token_id": 33449, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289771,7 +289274,7 @@ }, { "str": ",", - "token_id": 33509, + "token_id": 33450, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289780,7 +289283,7 @@ }, { "str": "three", - "token_id": 33510, + "token_id": 33451, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289789,7 +289292,7 @@ }, { "str": "to", - "token_id": 33511, + "token_id": 33452, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289798,7 +289301,7 @@ }, { "str": "progress", - "token_id": 33512, + "token_id": 33453, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289807,7 +289310,7 @@ }, { "str": "the", - "token_id": 33513, + "token_id": 33454, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289816,7 +289319,7 @@ }, { "str": "story", - "token_id": 33514, + "token_id": 33455, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289825,7 +289328,7 @@ }, { "str": ".", - "token_id": 33515, + "token_id": 33456, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289834,7 +289337,7 @@ }, { "str": "as", - "token_id": 33516, + "token_id": 33457, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289843,7 +289346,7 @@ }, { "str": "neo", - "token_id": 33517, + "token_id": 33458, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289852,7 +289355,7 @@ }, { "str": "agent", - "token_id": 33518, + "token_id": 33459, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289861,7 +289364,7 @@ }, { "str": "3", - "token_id": 33519, + "token_id": 33460, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289870,7 +289373,7 @@ }, { "str": "advances", - "token_id": 33520, + "token_id": 33461, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289879,7 +289382,7 @@ }, { "str": "toward", - "token_id": 33521, + "token_id": 33462, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289888,7 +289391,7 @@ }, { "str": "the", - "token_id": 33522, + "token_id": 33463, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289897,16 +289400,7 @@ }, { "str": "rocket", - "token_id": 33523, - "o_rev_id": 1327622667, - "in": [], - "out": [ - 1327668959 - ] - }, - { - "str": "grizz", - "token_id": 33524, + "token_id": 33464, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289915,7 +289409,7 @@ }, { "str": "the", - "token_id": 33525, + "token_id": 33465, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289924,70 +289418,7 @@ }, { "str": "gamemode", - "token_id": 33526, - "o_rev_id": 1327622667, - "in": [], - "out": [ - 1327668959 - ] - }, - { - "str": "salmon", - "token_id": 33527, - "o_rev_id": 1327622667, - "in": [], - "out": [ - 1327668959 - ] - }, - { - "str": "run", - "token_id": 33528, - "o_rev_id": 1327622667, - "in": [], - "out": [ - 1327668959 - ] - }, - { - "str": "proving", - "token_id": 33529, - "o_rev_id": 1327622667, - "in": [], - "out": [ - 1327668959 - ] - }, - { - "str": "octavio", - "token_id": 33530, - "o_rev_id": 1327622667, - "in": [], - "out": [ - 1327668959 - ] - }, - { - "str": "s", - "token_id": 33531, - "o_rev_id": 1327622667, - "in": [], - "out": [ - 1327668959 - ] - }, - { - "str": "innocence", - "token_id": 33532, - "o_rev_id": 1327622667, - "in": [], - "out": [ - 1327668959 - ] - }, - { - "str": "mr", - "token_id": 33533, + "token_id": 33466, "o_rev_id": 1327622667, "in": [], "out": [ @@ -289996,7 +289427,7 @@ }, { "str": ",", - "token_id": 33534, + "token_id": 33467, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290005,7 +289436,7 @@ }, { "str": "life", - "token_id": 33535, + "token_id": 33468, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290014,7 +289445,7 @@ }, { "str": "accidentally", - "token_id": 33536, + "token_id": 33469, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290023,7 +289454,7 @@ }, { "str": "their", - "token_id": 33537, + "token_id": 33470, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290032,7 +289463,7 @@ }, { "str": "after", - "token_id": 33538, + "token_id": 33471, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290041,7 +289472,7 @@ }, { "str": "crying", - "token_id": 33539, + "token_id": 33472, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290050,7 +289481,7 @@ }, { "str": "over", - "token_id": 33540, + "token_id": 33473, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290059,7 +289490,7 @@ }, { "str": "his", - "token_id": 33541, + "token_id": 33474, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290068,7 +289499,7 @@ }, { "str": "'", - "token_id": 33542, + "token_id": 33475, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290077,7 +289508,7 @@ }, { "str": "loss", - "token_id": 33543, + "token_id": 33476, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290086,7 +289517,7 @@ }, { "str": "'", - "token_id": 33544, + "token_id": 33477, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290095,7 +289526,7 @@ }, { "str": ",", - "token_id": 33545, + "token_id": 33478, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290104,7 +289535,7 @@ }, { "str": ".", - "token_id": 33546, + "token_id": 33479, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290113,7 +289544,7 @@ }, { "str": "desperate", - "token_id": 33547, + "token_id": 33480, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290122,7 +289553,7 @@ }, { "str": "to", - "token_id": 33548, + "token_id": 33481, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290131,7 +289562,7 @@ }, { "str": "stop", - "token_id": 33549, + "token_id": 33482, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290140,7 +289571,7 @@ }, { "str": "the", - "token_id": 33550, + "token_id": 33483, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290149,7 +289580,7 @@ }, { "str": "expiration", - "token_id": 33551, + "token_id": 33484, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290158,7 +289589,7 @@ }, { "str": "of", - "token_id": 33552, + "token_id": 33485, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290167,7 +289598,7 @@ }, { "str": "marine", - "token_id": 33553, + "token_id": 33486, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290176,7 +289607,7 @@ }, { "str": "life", - "token_id": 33554, + "token_id": 33487, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290185,7 +289616,7 @@ }, { "str": ",", - "token_id": 33555, + "token_id": 33488, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290194,7 +289625,7 @@ }, { "str": "deep", - "token_id": 33556, + "token_id": 33489, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290203,7 +289634,7 @@ }, { "str": "cut", - "token_id": 33557, + "token_id": 33490, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290212,7 +289643,7 @@ }, { "str": "reappears", - "token_id": 33558, + "token_id": 33491, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290221,7 +289652,7 @@ }, { "str": "neo", - "token_id": 33559, + "token_id": 33492, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290230,7 +289661,7 @@ }, { "str": "the", - "token_id": 33560, + "token_id": 33493, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290239,7 +289670,7 @@ }, { "str": "same", - "token_id": 33561, + "token_id": 33494, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290248,7 +289679,7 @@ }, { "str": "rocket", - "token_id": 33562, + "token_id": 33495, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290257,7 +289688,7 @@ }, { "str": "a", - "token_id": 33563, + "token_id": 33496, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290266,7 +289697,7 @@ }, { "str": "fight", - "token_id": 33564, + "token_id": 33497, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290275,7 +289706,7 @@ }, { "str": "between", - "token_id": 33565, + "token_id": 33498, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290284,7 +289715,7 @@ }, { "str": "mr", - "token_id": 33566, + "token_id": 33499, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290293,7 +289724,7 @@ }, { "str": ".", - "token_id": 33567, + "token_id": 33500, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290302,7 +289733,7 @@ }, { "str": "grizz", - "token_id": 33568, + "token_id": 33501, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290311,7 +289742,7 @@ }, { "str": "and", - "token_id": 33569, + "token_id": 33502, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290320,7 +289751,7 @@ }, { "str": "agent", - "token_id": 33570, + "token_id": 33503, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290329,7 +289760,7 @@ }, { "str": "3", - "token_id": 33571, + "token_id": 33504, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290338,7 +289769,7 @@ }, { "str": "commences", - "token_id": 33572, + "token_id": 33505, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290347,7 +289778,7 @@ }, { "str": ",", - "token_id": 33573, + "token_id": 33506, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290356,7 +289787,7 @@ }, { "str": "but", - "token_id": 33574, + "token_id": 33507, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290365,7 +289796,7 @@ }, { "str": "agent", - "token_id": 33575, + "token_id": 33508, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290374,7 +289805,7 @@ }, { "str": "3", - "token_id": 33576, + "token_id": 33509, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290383,7 +289814,7 @@ }, { "str": "gets", - "token_id": 33577, + "token_id": 33510, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290392,7 +289823,7 @@ }, { "str": "knocked", - "token_id": 33578, + "token_id": 33511, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290401,7 +289832,7 @@ }, { "str": "off", - "token_id": 33579, + "token_id": 33512, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290410,7 +289841,7 @@ }, { "str": "the", - "token_id": 33580, + "token_id": 33513, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290419,7 +289850,7 @@ }, { "str": "rocket", - "token_id": 33581, + "token_id": 33514, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290428,7 +289859,7 @@ }, { "str": ",", - "token_id": 33582, + "token_id": 33515, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290437,7 +289868,7 @@ }, { "str": "and", - "token_id": 33583, + "token_id": 33516, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290446,7 +289877,7 @@ }, { "str": "all", - "token_id": 33584, + "token_id": 33517, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290455,7 +289886,7 @@ }, { "str": "hope", - "token_id": 33585, + "token_id": 33518, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290464,7 +289895,7 @@ }, { "str": "seems", - "token_id": 33586, + "token_id": 33519, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290473,7 +289904,7 @@ }, { "str": "lost", - "token_id": 33587, + "token_id": 33520, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290482,7 +289913,7 @@ }, { "str": ".", - "token_id": 33588, + "token_id": 33521, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290491,7 +289922,7 @@ }, { "str": "however", - "token_id": 33589, + "token_id": 33522, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290500,7 +289931,7 @@ }, { "str": ",", - "token_id": 33590, + "token_id": 33523, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290509,7 +289940,7 @@ }, { "str": "dj", - "token_id": 33591, + "token_id": 33524, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290518,7 +289949,7 @@ }, { "str": "octavio", - "token_id": 33592, + "token_id": 33525, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290527,7 +289958,7 @@ }, { "str": ",", - "token_id": 33593, + "token_id": 33526, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290536,7 +289967,7 @@ }, { "str": "who", - "token_id": 33594, + "token_id": 33527, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290545,7 +289976,7 @@ }, { "str": "has", - "token_id": 33595, + "token_id": 33528, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290554,7 +289985,7 @@ }, { "str": "forgiven", - "token_id": 33596, + "token_id": 33529, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290563,7 +289994,7 @@ }, { "str": "neo", - "token_id": 33597, + "token_id": 33530, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290572,7 +290003,7 @@ }, { "str": "shows", - "token_id": 33598, + "token_id": 33531, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290581,7 +290012,7 @@ }, { "str": "up", - "token_id": 33599, + "token_id": 33532, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290590,7 +290021,7 @@ }, { "str": "and", - "token_id": 33600, + "token_id": 33533, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290599,7 +290030,7 @@ }, { "str": "offers", - "token_id": 33601, + "token_id": 33534, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290608,7 +290039,7 @@ }, { "str": "them", - "token_id": 33602, + "token_id": 33535, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290617,7 +290048,7 @@ }, { "str": "a", - "token_id": 33603, + "token_id": 33536, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290626,7 +290057,7 @@ }, { "str": "ride", - "token_id": 33604, + "token_id": 33537, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290635,7 +290066,7 @@ }, { "str": "on", - "token_id": 33605, + "token_id": 33538, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290644,7 +290075,7 @@ }, { "str": "his", - "token_id": 33606, + "token_id": 33539, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290653,7 +290084,7 @@ }, { "str": "octobot", - "token_id": 33607, + "token_id": 33540, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290662,7 +290093,7 @@ }, { "str": ",", - "token_id": 33608, + "token_id": 33541, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290671,7 +290102,7 @@ }, { "str": "who", - "token_id": 33609, + "token_id": 33542, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290680,7 +290111,7 @@ }, { "str": "can", - "token_id": 33610, + "token_id": 33543, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290689,7 +290120,7 @@ }, { "str": "take", - "token_id": 33611, + "token_id": 33544, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290698,7 +290129,7 @@ }, { "str": "out", - "token_id": 33612, + "token_id": 33545, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290707,7 +290138,7 @@ }, { "str": "grizz", - "token_id": 33613, + "token_id": 33546, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290716,7 +290147,7 @@ }, { "str": "with", - "token_id": 33614, + "token_id": 33547, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290725,7 +290156,7 @@ }, { "str": "its", - "token_id": 33615, + "token_id": 33548, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290734,7 +290165,7 @@ }, { "str": "inkvac", - "token_id": 33616, + "token_id": 33549, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290743,7 +290174,7 @@ }, { "str": "technology", - "token_id": 33617, + "token_id": 33550, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290752,7 +290183,7 @@ }, { "str": ".", - "token_id": 33618, + "token_id": 33551, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290761,7 +290192,7 @@ }, { "str": "with", - "token_id": 33619, + "token_id": 33552, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290770,7 +290201,7 @@ }, { "str": "3", - "token_id": 33620, + "token_id": 33553, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290779,7 +290210,7 @@ }, { "str": "minutes", - "token_id": 33621, + "token_id": 33554, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290788,7 +290219,7 @@ }, { "str": "and", - "token_id": 33622, + "token_id": 33555, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290797,7 +290228,7 @@ }, { "str": "33", - "token_id": 33623, + "token_id": 33556, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290806,7 +290237,7 @@ }, { "str": "seconds", - "token_id": 33624, + "token_id": 33557, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290815,7 +290246,7 @@ }, { "str": "to", - "token_id": 33625, + "token_id": 33558, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290824,7 +290255,7 @@ }, { "str": "defeat", - "token_id": 33626, + "token_id": 33559, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290833,7 +290264,7 @@ }, { "str": "mr", - "token_id": 33627, + "token_id": 33560, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290842,7 +290273,7 @@ }, { "str": ".", - "token_id": 33628, + "token_id": 33561, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290851,7 +290282,7 @@ }, { "str": "grizz", - "token_id": 33629, + "token_id": 33562, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290860,7 +290291,7 @@ }, { "str": ",", - "token_id": 33630, + "token_id": 33563, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290869,7 +290300,7 @@ }, { "str": "deep", - "token_id": 33631, + "token_id": 33564, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290878,7 +290309,7 @@ }, { "str": "cut", - "token_id": 33632, + "token_id": 33565, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290887,7 +290318,7 @@ }, { "str": "and", - "token_id": 33633, + "token_id": 33566, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290896,7 +290327,7 @@ }, { "str": "the", - "token_id": 33634, + "token_id": 33567, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290905,7 +290336,7 @@ }, { "str": "squid", - "token_id": 33635, + "token_id": 33568, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290914,7 +290345,7 @@ }, { "str": "sisters", - "token_id": 33636, + "token_id": 33569, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290923,7 +290354,7 @@ }, { "str": "perform", - "token_id": 33637, + "token_id": 33570, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290932,7 +290363,7 @@ }, { "str": "a", - "token_id": 33638, + "token_id": 33571, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290941,7 +290372,7 @@ }, { "str": "mix", - "token_id": 33639, + "token_id": 33572, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290950,7 +290381,7 @@ }, { "str": "of", - "token_id": 33640, + "token_id": 33573, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290959,7 +290390,7 @@ }, { "str": "the", - "token_id": 33641, + "token_id": 33574, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290968,7 +290399,7 @@ }, { "str": "squid", - "token_id": 33642, + "token_id": 33575, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290977,7 +290408,7 @@ }, { "str": "sister", - "token_id": 33643, + "token_id": 33576, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290986,7 +290417,7 @@ }, { "str": "'", - "token_id": 33644, + "token_id": 33577, "o_rev_id": 1327622667, "in": [], "out": [ @@ -290995,7 +290426,7 @@ }, { "str": "s", - "token_id": 33645, + "token_id": 33578, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291004,7 +290435,7 @@ }, { "str": "most", - "token_id": 33646, + "token_id": 33579, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291013,7 +290444,7 @@ }, { "str": "popular", - "token_id": 33647, + "token_id": 33580, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291022,7 +290453,7 @@ }, { "str": "song", - "token_id": 33648, + "token_id": 33581, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291031,7 +290462,7 @@ }, { "str": ",", - "token_id": 33649, + "token_id": 33582, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291040,7 +290471,7 @@ }, { "str": "calamari", - "token_id": 33650, + "token_id": 33583, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291049,7 +290480,7 @@ }, { "str": "inkantation", - "token_id": 33651, + "token_id": 33584, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291058,7 +290489,7 @@ }, { "str": ".", - "token_id": 33652, + "token_id": 33585, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291067,7 +290498,7 @@ }, { "str": "neo", - "token_id": 33653, + "token_id": 33586, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291076,7 +290507,7 @@ }, { "str": "agent", - "token_id": 33654, + "token_id": 33587, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291085,7 +290516,7 @@ }, { "str": "3", - "token_id": 33655, + "token_id": 33588, "o_rev_id": 1327622667, "in": [], "out": [ @@ -291094,7 +290525,7 @@ }, { "str": "2023", - "token_id": 33656, + "token_id": 33589, "o_rev_id": 1328234886, "in": [], "out": [ @@ -291103,49 +290534,49 @@ }, { "str": "date", - "token_id": 33657, + "token_id": 33590, "o_rev_id": 1328619466, "in": [], "out": [] }, { "str": "=", - "token_id": 33658, + "token_id": 33591, "o_rev_id": 1328619466, "in": [], "out": [] }, { "str": "28", - "token_id": 33659, + "token_id": 33592, "o_rev_id": 1328619466, "in": [], "out": [] }, { "str": "august", - "token_id": 33660, + "token_id": 33593, "o_rev_id": 1328619466, "in": [], "out": [] }, { "str": "2022", - "token_id": 33661, + "token_id": 33594, "o_rev_id": 1328619466, "in": [], "out": [] }, { "str": "|", - "token_id": 33662, + "token_id": 33595, "o_rev_id": 1328619466, "in": [], "out": [] }, { "str": "{{", - "token_id": 33663, + "token_id": 33596, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291154,7 +290585,7 @@ }, { "str": "efn", - "token_id": 33664, + "token_id": 33597, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291163,7 +290594,7 @@ }, { "str": "|", - "token_id": 33665, + "token_id": 33598, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291172,7 +290603,7 @@ }, { "str": "the", - "token_id": 33666, + "token_id": 33599, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291181,7 +290612,7 @@ }, { "str": "codename", - "token_id": 33667, + "token_id": 33600, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291190,7 +290621,7 @@ }, { "str": "\"", - "token_id": 33668, + "token_id": 33601, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291199,7 +290630,7 @@ }, { "str": "agent", - "token_id": 33669, + "token_id": 33602, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291208,7 +290639,7 @@ }, { "str": "3", - "token_id": 33670, + "token_id": 33603, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291217,7 +290648,7 @@ }, { "str": "\"", - "token_id": 33671, + "token_id": 33604, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291226,7 +290657,7 @@ }, { "str": "was", - "token_id": 33672, + "token_id": 33605, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291235,7 +290666,7 @@ }, { "str": "formerly", - "token_id": 33673, + "token_id": 33606, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291244,7 +290675,7 @@ }, { "str": "used", - "token_id": 33674, + "token_id": 33607, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291253,7 +290684,7 @@ }, { "str": "for", - "token_id": 33675, + "token_id": 33608, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291262,7 +290693,7 @@ }, { "str": "the", - "token_id": 33676, + "token_id": 33609, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291271,7 +290702,7 @@ }, { "str": "player", - "token_id": 33677, + "token_id": 33610, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291280,7 +290711,7 @@ }, { "str": "character", - "token_id": 33678, + "token_id": 33611, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291289,7 +290720,7 @@ }, { "str": "of", - "token_id": 33679, + "token_id": 33612, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291298,7 +290729,7 @@ }, { "str": "the", - "token_id": 33680, + "token_id": 33613, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291307,7 +290738,7 @@ }, { "str": "first", - "token_id": 33681, + "token_id": 33614, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291316,7 +290747,7 @@ }, { "str": "'", - "token_id": 33682, + "token_id": 33615, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291325,7 +290756,7 @@ }, { "str": "'", - "token_id": 33683, + "token_id": 33616, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291334,7 +290765,7 @@ }, { "str": "[[", - "token_id": 33684, + "token_id": 33617, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291343,7 +290774,7 @@ }, { "str": "splatoon", - "token_id": 33685, + "token_id": 33618, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291352,7 +290783,7 @@ }, { "str": "]]", - "token_id": 33686, + "token_id": 33619, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291361,7 +290792,7 @@ }, { "str": "'", - "token_id": 33687, + "token_id": 33620, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291370,7 +290801,7 @@ }, { "str": "'", - "token_id": 33688, + "token_id": 33621, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291379,7 +290810,7 @@ }, { "str": "game", - "token_id": 33689, + "token_id": 33622, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291388,7 +290819,7 @@ }, { "str": ".", - "token_id": 33690, + "token_id": 33623, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291397,7 +290828,7 @@ }, { "str": "when", - "token_id": 33691, + "token_id": 33624, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291406,7 +290837,7 @@ }, { "str": "said", - "token_id": 33692, + "token_id": 33625, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291415,7 +290846,7 @@ }, { "str": "character", - "token_id": 33693, + "token_id": 33626, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291424,7 +290855,7 @@ }, { "str": "was", - "token_id": 33694, + "token_id": 33627, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291433,7 +290864,7 @@ }, { "str": "promoted", - "token_id": 33695, + "token_id": 33628, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291442,7 +290873,7 @@ }, { "str": "to", - "token_id": 33696, + "token_id": 33629, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291451,7 +290882,7 @@ }, { "str": "the", - "token_id": 33697, + "token_id": 33630, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291460,7 +290891,7 @@ }, { "str": "title", - "token_id": 33698, + "token_id": 33631, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291469,7 +290900,7 @@ }, { "str": "of", - "token_id": 33699, + "token_id": 33632, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291478,7 +290909,7 @@ }, { "str": "captain", - "token_id": 33700, + "token_id": 33633, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291487,7 +290918,7 @@ }, { "str": ",", - "token_id": 33701, + "token_id": 33634, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291496,7 +290927,7 @@ }, { "str": "the", - "token_id": 33702, + "token_id": 33635, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291505,7 +290936,7 @@ }, { "str": "former", - "token_id": 33703, + "token_id": 33636, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291514,7 +290945,7 @@ }, { "str": "agent", - "token_id": 33704, + "token_id": 33637, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291523,7 +290954,7 @@ }, { "str": "3", - "token_id": 33705, + "token_id": 33638, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291532,7 +290963,7 @@ }, { "str": "rank", - "token_id": 33706, + "token_id": 33639, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291541,7 +290972,7 @@ }, { "str": "became", - "token_id": 33707, + "token_id": 33640, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291550,7 +290981,7 @@ }, { "str": "vacant", - "token_id": 33708, + "token_id": 33641, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291559,7 +290990,7 @@ }, { "str": ".", - "token_id": 33709, + "token_id": 33642, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291568,7 +290999,7 @@ }, { "str": "cuttlefish", - "token_id": 33710, + "token_id": 33643, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291577,7 +291008,7 @@ }, { "str": "has", - "token_id": 33711, + "token_id": 33644, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291586,7 +291017,7 @@ }, { "str": "the", - "token_id": 33712, + "token_id": 33645, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291595,7 +291026,7 @@ }, { "str": "player", - "token_id": 33713, + "token_id": 33646, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291604,7 +291035,7 @@ }, { "str": "character", - "token_id": 33714, + "token_id": 33647, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291613,7 +291044,7 @@ }, { "str": "of", - "token_id": 33715, + "token_id": 33648, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291622,7 +291053,7 @@ }, { "str": "'", - "token_id": 33716, + "token_id": 33649, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291631,7 +291062,7 @@ }, { "str": "'", - "token_id": 33717, + "token_id": 33650, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291640,7 +291071,7 @@ }, { "str": "splatoon", - "token_id": 33718, + "token_id": 33651, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291649,7 +291080,7 @@ }, { "str": "3", - "token_id": 33719, + "token_id": 33652, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291658,7 +291089,7 @@ }, { "str": "'", - "token_id": 33720, + "token_id": 33653, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291667,7 +291098,7 @@ }, { "str": "'", - "token_id": 33721, + "token_id": 33654, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291676,7 +291107,7 @@ }, { "str": "fill", - "token_id": 33722, + "token_id": 33655, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291685,7 +291116,7 @@ }, { "str": "this", - "token_id": 33723, + "token_id": 33656, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291694,7 +291125,7 @@ }, { "str": "vacancy", - "token_id": 33724, + "token_id": 33657, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291703,7 +291134,7 @@ }, { "str": ".", - "token_id": 33725, + "token_id": 33658, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291712,7 +291143,7 @@ }, { "str": "}}", - "token_id": 33726, + "token_id": 33659, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291721,140 +291152,140 @@ }, { "str": "{{", - "token_id": 33727, + "token_id": 33660, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "efn", - "token_id": 33728, + "token_id": 33661, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "|", - "token_id": 33729, + "token_id": 33662, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "an", - "token_id": 33730, + "token_id": 33663, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "[[", - "token_id": 33731, + "token_id": 33664, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "acronym", - "token_id": 33732, + "token_id": 33665, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "]]", - "token_id": 33733, + "token_id": 33666, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "for", - "token_id": 33734, + "token_id": 33667, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "\"", - "token_id": 33735, + "token_id": 33668, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "omniscient", - "token_id": 33736, + "token_id": 33669, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "recording", - "token_id": 33737, + "token_id": 33670, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "computer", - "token_id": 33738, + "token_id": 33671, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "of", - "token_id": 33739, + "token_id": 33672, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "alterna", - "token_id": 33740, + "token_id": 33673, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "\"", - "token_id": 33741, + "token_id": 33674, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "}}", - "token_id": 33742, + "token_id": 33675, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "industries", - "token_id": 33743, + "token_id": 33676, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "[[", - "token_id": 33744, + "token_id": 33677, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "]]", - "token_id": 33745, + "token_id": 33678, "o_rev_id": 1330183493, "in": [], "out": [] }, { "str": "[[", - "token_id": 33746, + "token_id": 33679, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291863,7 +291294,7 @@ }, { "str": "]]", - "token_id": 33747, + "token_id": 33680, "o_rev_id": 1330183493, "in": [], "out": [ @@ -291872,147 +291303,147 @@ }, { "str": "limited", - "token_id": 33748, + "token_id": 33681, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "that", - "token_id": 33749, + "token_id": 33682, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "replenishes", - "token_id": 33750, + "token_id": 33683, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "over", - "token_id": 33751, + "token_id": 33684, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "time", - "token_id": 33752, + "token_id": 33685, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "but", - "token_id": 33753, + "token_id": 33686, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": ".", - "token_id": 33754, + "token_id": 33687, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "some", - "token_id": 33755, + "token_id": 33688, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "weapons", - "token_id": 33756, + "token_id": 33689, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "consume", - "token_id": 33757, + "token_id": 33690, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "more", - "token_id": 33758, + "token_id": 33691, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "ink", - "token_id": 33759, + "token_id": 33692, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "then", - "token_id": 33760, + "token_id": 33693, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "others", - "token_id": 33761, + "token_id": 33694, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": ",", - "token_id": 33762, + "token_id": 33695, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "such", - "token_id": 33763, + "token_id": 33696, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "as", - "token_id": 33764, + "token_id": 33697, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "the", - "token_id": 33765, + "token_id": 33698, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "dynamo", - "token_id": 33766, + "token_id": 33699, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "roller", - "token_id": 33767, + "token_id": 33700, "o_rev_id": 1332211902, "in": [], "out": [] }, { "str": "(", - "token_id": 33768, + "token_id": 33701, "o_rev_id": 1333835188, "in": [], "out": [ @@ -292021,7 +291452,7 @@ }, { "str": ")", - "token_id": 33769, + "token_id": 33702, "o_rev_id": 1333835188, "in": [], "out": [ @@ -292030,7 +291461,7 @@ }, { "str": "{{", - "token_id": 33770, + "token_id": 33703, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292039,7 +291470,7 @@ }, { "str": "unreliable", - "token_id": 33771, + "token_id": 33704, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292048,7 +291479,7 @@ }, { "str": "source", - "token_id": 33772, + "token_id": 33705, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292057,7 +291488,7 @@ }, { "str": "?", - "token_id": 33773, + "token_id": 33706, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292066,7 +291497,7 @@ }, { "str": "|", - "token_id": 33774, + "token_id": 33707, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292075,14 +291506,14 @@ }, { "str": "date", - "token_id": 33775, + "token_id": 33708, "o_rev_id": 1333838058, "in": [], "out": [] }, { "str": "=", - "token_id": 33776, + "token_id": 33709, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292091,7 +291522,7 @@ }, { "str": "january", - "token_id": 33777, + "token_id": 33710, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292100,7 +291531,7 @@ }, { "str": "2026", - "token_id": 33778, + "token_id": 33711, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292109,7 +291540,7 @@ }, { "str": "|", - "token_id": 33779, + "token_id": 33712, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292118,7 +291549,7 @@ }, { "str": "certain", - "token_id": 33780, + "token_id": 33713, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292127,7 +291558,7 @@ }, { "str": "=", - "token_id": 33781, + "token_id": 33714, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292136,7 +291567,7 @@ }, { "str": "yes", - "token_id": 33782, + "token_id": 33715, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292145,7 +291576,7 @@ }, { "str": "|", - "token_id": 33783, + "token_id": 33716, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292154,7 +291585,7 @@ }, { "str": "reason", - "token_id": 33784, + "token_id": 33717, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292163,7 +291594,7 @@ }, { "str": "=", - "token_id": 33785, + "token_id": 33718, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292172,7 +291603,7 @@ }, { "str": "ign", - "token_id": 33786, + "token_id": 33719, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292181,7 +291612,7 @@ }, { "str": "wikis", - "token_id": 33787, + "token_id": 33720, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292190,7 +291621,7 @@ }, { "str": "are", - "token_id": 33788, + "token_id": 33721, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292199,7 +291630,7 @@ }, { "str": "not", - "token_id": 33789, + "token_id": 33722, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292208,7 +291639,7 @@ }, { "str": "reliable", - "token_id": 33790, + "token_id": 33723, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292217,7 +291648,7 @@ }, { "str": "per", - "token_id": 33791, + "token_id": 33724, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292226,7 +291657,7 @@ }, { "str": "[[", - "token_id": 33792, + "token_id": 33725, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292235,7 +291666,7 @@ }, { "str": "wp", - "token_id": 33793, + "token_id": 33726, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292244,7 +291675,7 @@ }, { "str": ":", - "token_id": 33794, + "token_id": 33727, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292253,7 +291684,7 @@ }, { "str": "vg", - "token_id": 33795, + "token_id": 33728, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292262,14 +291693,14 @@ }, { "str": "/", - "token_id": 33796, + "token_id": 33729, "o_rev_id": 1333838058, "in": [], "out": [] }, { "str": "s", - "token_id": 33797, + "token_id": 33730, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292278,7 +291709,7 @@ }, { "str": "]]", - "token_id": 33798, + "token_id": 33731, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292287,21 +291718,21 @@ }, { "str": ",", - "token_id": 33799, + "token_id": 33732, "o_rev_id": 1333838058, "in": [], "out": [] }, { "str": "as", - "token_id": 33800, + "token_id": 33733, "o_rev_id": 1333838058, "in": [], "out": [] }, { "str": "they", - "token_id": 33801, + "token_id": 33734, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292310,7 +291741,7 @@ }, { "str": "are", - "token_id": 33802, + "token_id": 33735, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292319,7 +291750,7 @@ }, { "str": "[[", - "token_id": 33803, + "token_id": 33736, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292328,7 +291759,7 @@ }, { "str": "wp", - "token_id": 33804, + "token_id": 33737, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292337,7 +291768,7 @@ }, { "str": ":", - "token_id": 33805, + "token_id": 33738, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292346,7 +291777,7 @@ }, { "str": "ugc", - "token_id": 33806, + "token_id": 33739, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292355,7 +291786,7 @@ }, { "str": "|", - "token_id": 33807, + "token_id": 33740, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292364,7 +291795,7 @@ }, { "str": "user", - "token_id": 33808, + "token_id": 33741, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292373,7 +291804,7 @@ }, { "str": "-", - "token_id": 33809, + "token_id": 33742, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292382,7 +291813,7 @@ }, { "str": "generated", - "token_id": 33810, + "token_id": 33743, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292391,7 +291822,7 @@ }, { "str": "]]", - "token_id": 33811, + "token_id": 33744, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292400,7 +291831,7 @@ }, { "str": ".", - "token_id": 33812, + "token_id": 33745, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292409,7 +291840,7 @@ }, { "str": "}}", - "token_id": 33813, + "token_id": 33746, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292418,7 +291849,7 @@ }, { "str": "{{", - "token_id": 33814, + "token_id": 33747, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292427,7 +291858,7 @@ }, { "str": "unreliable", - "token_id": 33815, + "token_id": 33748, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292436,7 +291867,7 @@ }, { "str": "source", - "token_id": 33816, + "token_id": 33749, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292445,7 +291876,7 @@ }, { "str": "?", - "token_id": 33817, + "token_id": 33750, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292454,7 +291885,7 @@ }, { "str": "|", - "token_id": 33818, + "token_id": 33751, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292463,14 +291894,14 @@ }, { "str": "date", - "token_id": 33819, + "token_id": 33752, "o_rev_id": 1333838058, "in": [], "out": [] }, { "str": "=", - "token_id": 33820, + "token_id": 33753, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292479,21 +291910,21 @@ }, { "str": "january", - "token_id": 33821, + "token_id": 33754, "o_rev_id": 1333838058, "in": [], "out": [] }, { "str": "2026", - "token_id": 33822, + "token_id": 33755, "o_rev_id": 1333838058, "in": [], "out": [] }, { "str": "|", - "token_id": 33823, + "token_id": 33756, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292502,7 +291933,7 @@ }, { "str": "certain", - "token_id": 33824, + "token_id": 33757, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292511,7 +291942,7 @@ }, { "str": "=", - "token_id": 33825, + "token_id": 33758, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292520,7 +291951,7 @@ }, { "str": "yes", - "token_id": 33826, + "token_id": 33759, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292529,7 +291960,7 @@ }, { "str": "|", - "token_id": 33827, + "token_id": 33760, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292538,7 +291969,7 @@ }, { "str": "reason", - "token_id": 33828, + "token_id": 33761, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292547,7 +291978,7 @@ }, { "str": "=", - "token_id": 33829, + "token_id": 33762, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292556,7 +291987,7 @@ }, { "str": "ign", - "token_id": 33830, + "token_id": 33763, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292565,7 +291996,7 @@ }, { "str": "wikis", - "token_id": 33831, + "token_id": 33764, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292574,7 +292005,7 @@ }, { "str": "are", - "token_id": 33832, + "token_id": 33765, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292583,7 +292014,7 @@ }, { "str": "not", - "token_id": 33833, + "token_id": 33766, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292592,7 +292023,7 @@ }, { "str": "reliable", - "token_id": 33834, + "token_id": 33767, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292601,7 +292032,7 @@ }, { "str": "per", - "token_id": 33835, + "token_id": 33768, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292610,7 +292041,7 @@ }, { "str": "[[", - "token_id": 33836, + "token_id": 33769, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292619,7 +292050,7 @@ }, { "str": "wp", - "token_id": 33837, + "token_id": 33770, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292628,7 +292059,7 @@ }, { "str": ":", - "token_id": 33838, + "token_id": 33771, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292637,7 +292068,7 @@ }, { "str": "vg", - "token_id": 33839, + "token_id": 33772, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292646,14 +292077,14 @@ }, { "str": "/", - "token_id": 33840, + "token_id": 33773, "o_rev_id": 1333838058, "in": [], "out": [] }, { "str": "s", - "token_id": 33841, + "token_id": 33774, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292662,7 +292093,7 @@ }, { "str": "]]", - "token_id": 33842, + "token_id": 33775, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292671,7 +292102,7 @@ }, { "str": ",", - "token_id": 33843, + "token_id": 33776, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292680,7 +292111,7 @@ }, { "str": "as", - "token_id": 33844, + "token_id": 33777, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292689,7 +292120,7 @@ }, { "str": "they", - "token_id": 33845, + "token_id": 33778, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292698,7 +292129,7 @@ }, { "str": "are", - "token_id": 33846, + "token_id": 33779, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292707,7 +292138,7 @@ }, { "str": "[[", - "token_id": 33847, + "token_id": 33780, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292716,7 +292147,7 @@ }, { "str": "wp", - "token_id": 33848, + "token_id": 33781, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292725,7 +292156,7 @@ }, { "str": ":", - "token_id": 33849, + "token_id": 33782, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292734,7 +292165,7 @@ }, { "str": "ugc", - "token_id": 33850, + "token_id": 33783, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292743,7 +292174,7 @@ }, { "str": "|", - "token_id": 33851, + "token_id": 33784, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292752,7 +292183,7 @@ }, { "str": "user", - "token_id": 33852, + "token_id": 33785, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292761,7 +292192,7 @@ }, { "str": "-", - "token_id": 33853, + "token_id": 33786, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292770,7 +292201,7 @@ }, { "str": "generated", - "token_id": 33854, + "token_id": 33787, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292779,7 +292210,7 @@ }, { "str": "]]", - "token_id": 33855, + "token_id": 33788, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292788,7 +292219,7 @@ }, { "str": ".", - "token_id": 33856, + "token_id": 33789, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292797,7 +292228,7 @@ }, { "str": "}}", - "token_id": 33857, + "token_id": 33790, "o_rev_id": 1333838058, "in": [], "out": [ @@ -292806,7 +292237,7 @@ }, { "str": "{{", - "token_id": 33858, + "token_id": 33791, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292815,7 +292246,7 @@ }, { "str": "citation", - "token_id": 33859, + "token_id": 33792, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292824,7 +292255,7 @@ }, { "str": "needed", - "token_id": 33860, + "token_id": 33793, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292833,7 +292264,7 @@ }, { "str": "|", - "token_id": 33861, + "token_id": 33794, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292842,14 +292273,14 @@ }, { "str": "date", - "token_id": 33862, + "token_id": 33795, "o_rev_id": 1333839763, "in": [], "out": [] }, { "str": "=", - "token_id": 33863, + "token_id": 33796, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292858,21 +292289,21 @@ }, { "str": "january", - "token_id": 33864, + "token_id": 33797, "o_rev_id": 1333839763, "in": [], "out": [] }, { "str": "2026", - "token_id": 33865, + "token_id": 33798, "o_rev_id": 1333839763, "in": [], "out": [] }, { "str": "}}", - "token_id": 33866, + "token_id": 33799, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292881,7 +292312,7 @@ }, { "str": "{{", - "token_id": 33867, + "token_id": 33800, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292890,7 +292321,7 @@ }, { "str": "cleanup", - "token_id": 33868, + "token_id": 33801, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292899,7 +292330,7 @@ }, { "str": "rewrite", - "token_id": 33869, + "token_id": 33802, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292908,7 +292339,7 @@ }, { "str": "|", - "token_id": 33870, + "token_id": 33803, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292917,7 +292348,7 @@ }, { "str": "date", - "token_id": 33871, + "token_id": 33804, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292926,7 +292357,7 @@ }, { "str": "=", - "token_id": 33872, + "token_id": 33805, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292935,7 +292366,7 @@ }, { "str": "january", - "token_id": 33873, + "token_id": 33806, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292944,7 +292375,7 @@ }, { "str": "2026", - "token_id": 33874, + "token_id": 33807, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292953,7 +292384,7 @@ }, { "str": "|", - "token_id": 33875, + "token_id": 33808, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292962,7 +292393,7 @@ }, { "str": "section", - "token_id": 33876, + "token_id": 33809, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292971,7 +292402,7 @@ }, { "str": "=", - "token_id": 33877, + "token_id": 33810, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292980,7 +292411,7 @@ }, { "str": "yes", - "token_id": 33878, + "token_id": 33811, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292989,7 +292420,7 @@ }, { "str": "}}", - "token_id": 33879, + "token_id": 33812, "o_rev_id": 1333839763, "in": [], "out": [ @@ -292998,7 +292429,7 @@ }, { "str": "|", - "token_id": 33880, + "token_id": 33813, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293007,7 +292438,7 @@ }, { "str": "archive", - "token_id": 33881, + "token_id": 33814, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293016,14 +292447,14 @@ }, { "str": "-", - "token_id": 33882, + "token_id": 33815, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "date", - "token_id": 33883, + "token_id": 33816, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293032,7 +292463,7 @@ }, { "str": "=", - "token_id": 33884, + "token_id": 33817, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293041,7 +292472,7 @@ }, { "str": "28", - "token_id": 33885, + "token_id": 33818, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293050,7 +292481,7 @@ }, { "str": "february", - "token_id": 33886, + "token_id": 33819, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293059,7 +292490,7 @@ }, { "str": "2024", - "token_id": 33887, + "token_id": 33820, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293068,119 +292499,119 @@ }, { "str": "|", - "token_id": 33888, + "token_id": 33821, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "archive", - "token_id": 33889, + "token_id": 33822, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33890, + "token_id": 33823, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "url", - "token_id": 33891, + "token_id": 33824, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "=", - "token_id": 33892, + "token_id": 33825, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "https", - "token_id": 33893, + "token_id": 33826, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ":", - "token_id": 33894, + "token_id": 33827, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33895, + "token_id": 33828, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "web", - "token_id": 33896, + "token_id": 33829, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 33897, + "token_id": 33830, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "archive", - "token_id": 33898, + "token_id": 33831, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 33899, + "token_id": 33832, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "org", - "token_id": 33900, + "token_id": 33833, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33901, + "token_id": 33834, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "web", - "token_id": 33902, + "token_id": 33835, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33903, + "token_id": 33836, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "20240228161109", - "token_id": 33904, + "token_id": 33837, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293189,56 +292620,56 @@ }, { "str": "/", - "token_id": 33905, + "token_id": 33838, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "https", - "token_id": 33906, + "token_id": 33839, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ":", - "token_id": 33907, + "token_id": 33840, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33908, + "token_id": 33841, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33909, + "token_id": 33842, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "www", - "token_id": 33910, + "token_id": 33843, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 33911, + "token_id": 33844, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "digitaltrends", - "token_id": 33912, + "token_id": 33845, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293247,28 +292678,28 @@ }, { "str": ".", - "token_id": 33913, + "token_id": 33846, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "com", - "token_id": 33914, + "token_id": 33847, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33915, + "token_id": 33848, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "gaming", - "token_id": 33916, + "token_id": 33849, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293277,70 +292708,70 @@ }, { "str": "/", - "token_id": 33917, + "token_id": 33850, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 33918, + "token_id": 33851, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33919, + "token_id": 33852, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "3", - "token_id": 33920, + "token_id": 33853, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33921, + "token_id": 33854, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "side", - "token_id": 33922, + "token_id": 33855, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33923, + "token_id": 33856, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "order", - "token_id": 33924, + "token_id": 33857, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33925, + "token_id": 33858, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "impressions", - "token_id": 33926, + "token_id": 33859, "o_rev_id": 1333947148, "in": [], "out": [ @@ -293349,903 +292780,903 @@ }, { "str": "/", - "token_id": 33927, + "token_id": 33860, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "|", - "token_id": 33928, + "token_id": 33861, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "archive", - "token_id": 33929, + "token_id": 33862, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33930, + "token_id": 33863, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "date", - "token_id": 33931, + "token_id": 33864, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "=", - "token_id": 33932, + "token_id": 33865, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "28", - "token_id": 33933, + "token_id": 33866, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "january", - "token_id": 33934, + "token_id": 33867, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "2024", - "token_id": 33935, + "token_id": 33868, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "|", - "token_id": 33936, + "token_id": 33869, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "archive", - "token_id": 33937, + "token_id": 33870, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33938, + "token_id": 33871, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "url", - "token_id": 33939, + "token_id": 33872, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "=", - "token_id": 33940, + "token_id": 33873, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "https", - "token_id": 33941, + "token_id": 33874, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ":", - "token_id": 33942, + "token_id": 33875, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33943, + "token_id": 33876, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "web", - "token_id": 33944, + "token_id": 33877, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 33945, + "token_id": 33878, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "archive", - "token_id": 33946, + "token_id": 33879, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 33947, + "token_id": 33880, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "org", - "token_id": 33948, + "token_id": 33881, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33949, + "token_id": 33882, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "web", - "token_id": 33950, + "token_id": 33883, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33951, + "token_id": 33884, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "20240128024416", - "token_id": 33952, + "token_id": 33885, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33953, + "token_id": 33886, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "https", - "token_id": 33954, + "token_id": 33887, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ":", - "token_id": 33955, + "token_id": 33888, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33956, + "token_id": 33889, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33957, + "token_id": 33890, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "www", - "token_id": 33958, + "token_id": 33891, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 33959, + "token_id": 33892, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "ign", - "token_id": 33960, + "token_id": 33893, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 33961, + "token_id": 33894, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "com", - "token_id": 33962, + "token_id": 33895, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33963, + "token_id": 33896, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "articles", - "token_id": 33964, + "token_id": 33897, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 33965, + "token_id": 33898, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 33966, + "token_id": 33899, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33967, + "token_id": 33900, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "3", - "token_id": 33968, + "token_id": 33901, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33969, + "token_id": 33902, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "side", - "token_id": 33970, + "token_id": 33903, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33971, + "token_id": 33904, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "order", - "token_id": 33972, + "token_id": 33905, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33973, + "token_id": 33906, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "dlc", - "token_id": 33974, + "token_id": 33907, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33975, + "token_id": 33908, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "finally", - "token_id": 33976, + "token_id": 33909, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33977, + "token_id": 33910, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "gets", - "token_id": 33978, + "token_id": 33911, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33979, + "token_id": 33912, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "served", - "token_id": 33980, + "token_id": 33913, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33981, + "token_id": 33914, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "up", - "token_id": 33982, + "token_id": 33915, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33983, + "token_id": 33916, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "in", - "token_id": 33984, + "token_id": 33917, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33985, + "token_id": 33918, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "february", - "token_id": 33986, + "token_id": 33919, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "|", - "token_id": 33987, + "token_id": 33920, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "archive", - "token_id": 33988, + "token_id": 33921, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33989, + "token_id": 33922, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "date", - "token_id": 33990, + "token_id": 33923, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "=", - "token_id": 33991, + "token_id": 33924, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "16", - "token_id": 33992, + "token_id": 33925, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "september", - "token_id": 33993, + "token_id": 33926, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "2024", - "token_id": 33994, + "token_id": 33927, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "|", - "token_id": 33995, + "token_id": 33928, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "archive", - "token_id": 33996, + "token_id": 33929, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 33997, + "token_id": 33930, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "url", - "token_id": 33998, + "token_id": 33931, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "=", - "token_id": 33999, + "token_id": 33932, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "https", - "token_id": 34000, + "token_id": 33933, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ":", - "token_id": 34001, + "token_id": 33934, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34002, + "token_id": 33935, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34003, + "token_id": 33936, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "web", - "token_id": 34004, + "token_id": 33937, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 34005, + "token_id": 33938, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "archive", - "token_id": 34006, + "token_id": 33939, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 34007, + "token_id": 33940, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "org", - "token_id": 34008, + "token_id": 33941, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34009, + "token_id": 33942, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "web", - "token_id": 34010, + "token_id": 33943, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34011, + "token_id": 33944, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "20240916204241", - "token_id": 34012, + "token_id": 33945, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34013, + "token_id": 33946, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "https", - "token_id": 34014, + "token_id": 33947, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ":", - "token_id": 34015, + "token_id": 33948, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34016, + "token_id": 33949, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34017, + "token_id": 33950, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "www", - "token_id": 34018, + "token_id": 33951, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 34019, + "token_id": 33952, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "ign", - "token_id": 34020, + "token_id": 33953, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": ".", - "token_id": 34021, + "token_id": 33954, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "com", - "token_id": 34022, + "token_id": 33955, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34023, + "token_id": 33956, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "articles", - "token_id": 34024, + "token_id": 33957, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "/", - "token_id": 34025, + "token_id": 33958, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34026, + "token_id": 33959, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34027, + "token_id": 33960, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "3", - "token_id": 34028, + "token_id": 33961, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34029, + "token_id": 33962, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "regular", - "token_id": 34030, + "token_id": 33963, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34031, + "token_id": 33964, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "updates", - "token_id": 34032, + "token_id": 33965, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34033, + "token_id": 33966, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "to", - "token_id": 34034, + "token_id": 33967, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34035, + "token_id": 33968, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "end", - "token_id": 34036, + "token_id": 33969, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34037, + "token_id": 33970, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "2", - "token_id": 34038, + "token_id": 33971, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34039, + "token_id": 33972, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "years", - "token_id": 34040, + "token_id": 33973, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34041, + "token_id": 33974, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "after", - "token_id": 34042, + "token_id": 33975, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34043, + "token_id": 33976, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "launch", - "token_id": 34044, + "token_id": 33977, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34045, + "token_id": 33978, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 34046, + "token_id": 33979, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34047, + "token_id": 33980, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "says", - "token_id": 34048, + "token_id": 33981, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "|", - "token_id": 34049, + "token_id": 33982, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "url", - "token_id": 34050, + "token_id": 33983, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34051, + "token_id": 33984, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "status", - "token_id": 34052, + "token_id": 33985, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "=", - "token_id": 34053, + "token_id": 33986, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "live", - "token_id": 34054, + "token_id": 33987, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "|", - "token_id": 34055, + "token_id": 33988, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294254,7 +293685,7 @@ }, { "str": "archive", - "token_id": 34056, + "token_id": 33989, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294263,7 +293694,7 @@ }, { "str": "-", - "token_id": 34057, + "token_id": 33990, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294272,7 +293703,7 @@ }, { "str": "date", - "token_id": 34058, + "token_id": 33991, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294281,7 +293712,7 @@ }, { "str": "=", - "token_id": 34059, + "token_id": 33992, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294290,7 +293721,7 @@ }, { "str": "10", - "token_id": 34060, + "token_id": 33993, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294299,7 +293730,7 @@ }, { "str": "june", - "token_id": 34061, + "token_id": 33994, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294308,7 +293739,7 @@ }, { "str": "2025", - "token_id": 34062, + "token_id": 33995, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294317,7 +293748,7 @@ }, { "str": "|", - "token_id": 34063, + "token_id": 33996, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294326,7 +293757,7 @@ }, { "str": "archive", - "token_id": 34064, + "token_id": 33997, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294335,7 +293766,7 @@ }, { "str": "-", - "token_id": 34065, + "token_id": 33998, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294344,7 +293775,7 @@ }, { "str": "url", - "token_id": 34066, + "token_id": 33999, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294353,7 +293784,7 @@ }, { "str": "=", - "token_id": 34067, + "token_id": 34000, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294362,7 +293793,7 @@ }, { "str": "https", - "token_id": 34068, + "token_id": 34001, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294371,7 +293802,7 @@ }, { "str": ":", - "token_id": 34069, + "token_id": 34002, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294380,7 +293811,7 @@ }, { "str": "/", - "token_id": 34070, + "token_id": 34003, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294389,7 +293820,7 @@ }, { "str": "/", - "token_id": 34071, + "token_id": 34004, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294398,7 +293829,7 @@ }, { "str": "web", - "token_id": 34072, + "token_id": 34005, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294407,7 +293838,7 @@ }, { "str": ".", - "token_id": 34073, + "token_id": 34006, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294416,7 +293847,7 @@ }, { "str": "archive", - "token_id": 34074, + "token_id": 34007, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294425,7 +293856,7 @@ }, { "str": ".", - "token_id": 34075, + "token_id": 34008, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294434,7 +293865,7 @@ }, { "str": "org", - "token_id": 34076, + "token_id": 34009, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294443,7 +293874,7 @@ }, { "str": "/", - "token_id": 34077, + "token_id": 34010, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294452,7 +293883,7 @@ }, { "str": "web", - "token_id": 34078, + "token_id": 34011, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294461,7 +293892,7 @@ }, { "str": "/", - "token_id": 34079, + "token_id": 34012, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294470,7 +293901,7 @@ }, { "str": "20250610133554", - "token_id": 34080, + "token_id": 34013, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294479,7 +293910,7 @@ }, { "str": "/", - "token_id": 34081, + "token_id": 34014, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294488,7 +293919,7 @@ }, { "str": "https", - "token_id": 34082, + "token_id": 34015, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294497,7 +293928,7 @@ }, { "str": ":", - "token_id": 34083, + "token_id": 34016, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294506,7 +293937,7 @@ }, { "str": "/", - "token_id": 34084, + "token_id": 34017, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294515,7 +293946,7 @@ }, { "str": "/", - "token_id": 34085, + "token_id": 34018, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294524,7 +293955,7 @@ }, { "str": "www", - "token_id": 34086, + "token_id": 34019, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294533,7 +293964,7 @@ }, { "str": ".", - "token_id": 34087, + "token_id": 34020, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294542,7 +293973,7 @@ }, { "str": "nintendo", - "token_id": 34088, + "token_id": 34021, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294551,7 +293982,7 @@ }, { "str": ".", - "token_id": 34089, + "token_id": 34022, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294560,7 +293991,7 @@ }, { "str": "com", - "token_id": 34090, + "token_id": 34023, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294569,7 +294000,7 @@ }, { "str": "/", - "token_id": 34091, + "token_id": 34024, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294578,7 +294009,7 @@ }, { "str": "us", - "token_id": 34092, + "token_id": 34025, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294587,7 +294018,7 @@ }, { "str": "/", - "token_id": 34093, + "token_id": 34026, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294596,7 +294027,7 @@ }, { "str": "whatsnew", - "token_id": 34094, + "token_id": 34027, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294605,7 +294036,7 @@ }, { "str": "/", - "token_id": 34095, + "token_id": 34028, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294614,7 +294045,7 @@ }, { "str": "splatoon", - "token_id": 34096, + "token_id": 34029, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294623,7 +294054,7 @@ }, { "str": "-", - "token_id": 34097, + "token_id": 34030, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294632,7 +294063,7 @@ }, { "str": "raiders", - "token_id": 34098, + "token_id": 34031, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294641,7 +294072,7 @@ }, { "str": "-", - "token_id": 34099, + "token_id": 34032, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294650,7 +294081,7 @@ }, { "str": "the", - "token_id": 34100, + "token_id": 34033, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294659,7 +294090,7 @@ }, { "str": "-", - "token_id": 34101, + "token_id": 34034, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294668,7 +294099,7 @@ }, { "str": "first", - "token_id": 34102, + "token_id": 34035, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294677,7 +294108,7 @@ }, { "str": "-", - "token_id": 34103, + "token_id": 34036, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294686,7 +294117,7 @@ }, { "str": "ever", - "token_id": 34104, + "token_id": 34037, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294695,7 +294126,7 @@ }, { "str": "-", - "token_id": 34105, + "token_id": 34038, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294704,7 +294135,7 @@ }, { "str": "splatoon", - "token_id": 34106, + "token_id": 34039, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294713,7 +294144,7 @@ }, { "str": "-", - "token_id": 34107, + "token_id": 34040, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294722,7 +294153,7 @@ }, { "str": "spinoff", - "token_id": 34108, + "token_id": 34041, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294731,7 +294162,7 @@ }, { "str": "-", - "token_id": 34109, + "token_id": 34042, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294740,7 +294171,7 @@ }, { "str": "game", - "token_id": 34110, + "token_id": 34043, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294749,7 +294180,7 @@ }, { "str": "-", - "token_id": 34111, + "token_id": 34044, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294758,7 +294189,7 @@ }, { "str": "is", - "token_id": 34112, + "token_id": 34045, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294767,7 +294198,7 @@ }, { "str": "-", - "token_id": 34113, + "token_id": 34046, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294776,7 +294207,7 @@ }, { "str": "coming", - "token_id": 34114, + "token_id": 34047, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294785,7 +294216,7 @@ }, { "str": "-", - "token_id": 34115, + "token_id": 34048, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294794,7 +294225,7 @@ }, { "str": "to", - "token_id": 34116, + "token_id": 34049, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294803,7 +294234,7 @@ }, { "str": "-", - "token_id": 34117, + "token_id": 34050, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294812,7 +294243,7 @@ }, { "str": "nintendo", - "token_id": 34118, + "token_id": 34051, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294821,7 +294252,7 @@ }, { "str": "-", - "token_id": 34119, + "token_id": 34052, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294830,7 +294261,7 @@ }, { "str": "switch", - "token_id": 34120, + "token_id": 34053, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294839,7 +294270,7 @@ }, { "str": "-", - "token_id": 34121, + "token_id": 34054, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294848,7 +294279,7 @@ }, { "str": "2", - "token_id": 34122, + "token_id": 34055, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294857,7 +294288,7 @@ }, { "str": "/", - "token_id": 34123, + "token_id": 34056, "o_rev_id": 1333947148, "in": [], "out": [ @@ -294866,1274 +294297,1274 @@ }, { "str": "|", - "token_id": 34124, + "token_id": 34057, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "url", - "token_id": 34125, + "token_id": 34058, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "-", - "token_id": 34126, + "token_id": 34059, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "status", - "token_id": 34127, + "token_id": 34060, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "=", - "token_id": 34128, + "token_id": 34061, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "live", - "token_id": 34129, + "token_id": 34062, "o_rev_id": 1333947148, "in": [], "out": [] }, { "str": "'", - "token_id": 34130, + "token_id": 34063, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 34131, + "token_id": 34064, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "overall", - "token_id": 34132, + "token_id": 34065, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "presentation", - "token_id": 34133, + "token_id": 34066, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "commended", - "token_id": 34134, + "token_id": 34067, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "contemporary", - "token_id": 34135, + "token_id": 34068, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "shooters", - "token_id": 34136, + "token_id": 34069, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34137, + "token_id": 34070, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "focus", - "token_id": 34138, + "token_id": 34071, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "on", - "token_id": 34139, + "token_id": 34072, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34140, + "token_id": 34073, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34141, + "token_id": 34074, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34142, + "token_id": 34075, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "its", - "token_id": 34143, + "token_id": 34076, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "soundtrack", - "token_id": 34144, + "token_id": 34077, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 34145, + "token_id": 34078, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "acclaimed", - "token_id": 34146, + "token_id": 34079, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "by", - "token_id": 34147, + "token_id": 34080, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ben", - "token_id": 34148, + "token_id": 34081, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "johnson", - "token_id": 34149, + "token_id": 34082, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 34150, + "token_id": 34083, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34151, + "token_id": 34084, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34152, + "token_id": 34085, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "pocket", - "token_id": 34153, + "token_id": 34086, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "tactics", - "token_id": 34154, + "token_id": 34087, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34155, + "token_id": 34088, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34156, + "token_id": 34089, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 34157, + "token_id": 34090, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "who", - "token_id": 34158, + "token_id": 34091, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "characterized", - "token_id": 34159, + "token_id": 34092, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "its", - "token_id": 34160, + "token_id": 34093, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "songs", - "token_id": 34161, + "token_id": 34094, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 34162, + "token_id": 34095, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "experimental", - "token_id": 34163, + "token_id": 34096, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 34164, + "token_id": 34097, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "bold", - "token_id": 34165, + "token_id": 34098, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 34166, + "token_id": 34099, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "and", - "token_id": 34167, + "token_id": 34100, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "distinct", - "token_id": 34168, + "token_id": 34101, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34169, + "token_id": 34102, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34170, + "token_id": 34103, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34171, + "token_id": 34104, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34172, + "token_id": 34105, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34173, + "token_id": 34106, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34174, + "token_id": 34107, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "johnson2022", - "token_id": 34175, + "token_id": 34108, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34176, + "token_id": 34109, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34177, + "token_id": 34110, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "{{", - "token_id": 34178, + "token_id": 34111, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "cite", - "token_id": 34179, + "token_id": 34112, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34180, + "token_id": 34113, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34181, + "token_id": 34114, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "last", - "token_id": 34182, + "token_id": 34115, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34183, + "token_id": 34116, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "johnson", - "token_id": 34184, + "token_id": 34117, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34185, + "token_id": 34118, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "first", - "token_id": 34186, + "token_id": 34119, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34187, + "token_id": 34120, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ben", - "token_id": 34188, + "token_id": 34121, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34189, + "token_id": 34122, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34190, + "token_id": 34123, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34191, + "token_id": 34124, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "12", - "token_id": 34192, + "token_id": 34125, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "september", - "token_id": 34193, + "token_id": 34126, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 34194, + "token_id": 34127, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34195, + "token_id": 34128, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "title", - "token_id": 34196, + "token_id": 34129, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34197, + "token_id": 34130, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "we", - "token_id": 34198, + "token_id": 34131, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "need", - "token_id": 34199, + "token_id": 34132, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 34200, + "token_id": 34133, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "talk", - "token_id": 34201, + "token_id": 34134, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "about", - "token_id": 34202, + "token_id": 34135, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34203, + "token_id": 34136, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34204, + "token_id": 34137, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 34205, + "token_id": 34138, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "soundtrack", - "token_id": 34206, + "token_id": 34139, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34207, + "token_id": 34140, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34208, + "token_id": 34141, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34209, + "token_id": 34142, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34210, + "token_id": 34143, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34211, + "token_id": 34144, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34212, + "token_id": 34145, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34213, + "token_id": 34146, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "www", - "token_id": 34214, + "token_id": 34147, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34215, + "token_id": 34148, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "pockettactics", - "token_id": 34216, + "token_id": 34149, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34217, + "token_id": 34150, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 34218, + "token_id": 34151, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34219, + "token_id": 34152, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34220, + "token_id": 34153, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34221, + "token_id": 34154, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 34222, + "token_id": 34155, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34223, + "token_id": 34156, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "soundtrack", - "token_id": 34224, + "token_id": 34157, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34225, + "token_id": 34158, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34226, + "token_id": 34159, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34227, + "token_id": 34160, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "status", - "token_id": 34228, + "token_id": 34161, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34229, + "token_id": 34162, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "live", - "token_id": 34230, + "token_id": 34163, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34231, + "token_id": 34164, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34232, + "token_id": 34165, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34233, + "token_id": 34166, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34234, + "token_id": 34167, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34235, + "token_id": 34168, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34236, + "token_id": 34169, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34237, + "token_id": 34170, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34238, + "token_id": 34171, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34239, + "token_id": 34172, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34240, + "token_id": 34173, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34241, + "token_id": 34174, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34242, + "token_id": 34175, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34243, + "token_id": 34176, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "org", - "token_id": 34244, + "token_id": 34177, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34245, + "token_id": 34178, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34246, + "token_id": 34179, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34247, + "token_id": 34180, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "20230510121129", - "token_id": 34248, + "token_id": 34181, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34249, + "token_id": 34182, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34250, + "token_id": 34183, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34251, + "token_id": 34184, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34252, + "token_id": 34185, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34253, + "token_id": 34186, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "www", - "token_id": 34254, + "token_id": 34187, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34255, + "token_id": 34188, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "pockettactics", - "token_id": 34256, + "token_id": 34189, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34257, + "token_id": 34190, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 34258, + "token_id": 34191, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34259, + "token_id": 34192, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34260, + "token_id": 34193, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34261, + "token_id": 34194, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 34262, + "token_id": 34195, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34263, + "token_id": 34196, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "soundtrack", - "token_id": 34264, + "token_id": 34197, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34265, + "token_id": 34198, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34266, + "token_id": 34199, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34267, + "token_id": 34200, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34268, + "token_id": 34201, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34269, + "token_id": 34202, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "10", - "token_id": 34270, + "token_id": 34203, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "may", - "token_id": 34271, + "token_id": 34204, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2023", - "token_id": 34272, + "token_id": 34205, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34273, + "token_id": 34206, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "access", - "token_id": 34274, + "token_id": 34207, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34275, + "token_id": 34208, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34276, + "token_id": 34209, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34277, + "token_id": 34210, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "1", - "token_id": 34278, + "token_id": 34211, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "may", - "token_id": 34279, + "token_id": 34212, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2023", - "token_id": 34280, + "token_id": 34213, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34281, + "token_id": 34214, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "website", - "token_id": 34282, + "token_id": 34215, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34283, + "token_id": 34216, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 34284, + "token_id": 34217, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "pocket", - "token_id": 34285, + "token_id": 34218, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "tactics", - "token_id": 34286, + "token_id": 34219, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 34287, + "token_id": 34220, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34288, + "token_id": 34221, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "language", - "token_id": 34289, + "token_id": 34222, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34290, + "token_id": 34223, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "en", - "token_id": 34291, + "token_id": 34224, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34292, + "token_id": 34225, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "us", - "token_id": 34293, + "token_id": 34226, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "}}", - "token_id": 34294, + "token_id": 34227, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34295, + "token_id": 34228, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34296, + "token_id": 34229, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34297, + "token_id": 34230, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34298, + "token_id": 34231, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34299, + "token_id": 34232, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "soundtrack", - "token_id": 34300, + "token_id": 34233, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34301, + "token_id": 34234, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 34302, + "token_id": 34235, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "fusion", - "token_id": 34303, + "token_id": 34236, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 34304, + "token_id": 34237, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "genres", - "token_id": 34305, + "token_id": 34238, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296142,7 +295573,7 @@ }, { "str": "and", - "token_id": 34306, + "token_id": 34239, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296151,21 +295582,21 @@ }, { "str": "cultural", - "token_id": 34307, + "token_id": 34240, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "styles", - "token_id": 34308, + "token_id": 34241, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 34309, + "token_id": 34242, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296174,7 +295605,7 @@ }, { "str": "praised", - "token_id": 34310, + "token_id": 34243, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296183,7 +295614,7 @@ }, { "str": "by", - "token_id": 34311, + "token_id": 34244, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296192,7 +295623,7 @@ }, { "str": "'", - "token_id": 34312, + "token_id": 34245, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296201,7 +295632,7 @@ }, { "str": "'", - "token_id": 34313, + "token_id": 34246, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296210,7 +295641,7 @@ }, { "str": "ign", - "token_id": 34314, + "token_id": 34247, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296219,7 +295650,7 @@ }, { "str": "'", - "token_id": 34315, + "token_id": 34248, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296228,7 +295659,7 @@ }, { "str": "'", - "token_id": 34316, + "token_id": 34249, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296237,7 +295668,7 @@ }, { "str": "staff", - "token_id": 34317, + "token_id": 34250, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296246,14 +295677,14 @@ }, { "str": ",", - "token_id": 34318, + "token_id": 34251, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "writing", - "token_id": 34319, + "token_id": 34252, "o_rev_id": 1334176815, "in": [], "out": [ @@ -296262,959 +295693,959 @@ }, { "str": "that", - "token_id": 34320, + "token_id": 34253, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "it", - "token_id": 34321, + "token_id": 34254, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34322, + "token_id": 34255, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "could", - "token_id": 34323, + "token_id": 34256, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "easily", - "token_id": 34324, + "token_id": 34257, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "be", - "token_id": 34325, + "token_id": 34258, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "considered", - "token_id": 34326, + "token_id": 34259, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "its", - "token_id": 34327, + "token_id": 34260, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "own", - "token_id": 34328, + "token_id": 34261, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "genre", - "token_id": 34329, + "token_id": 34262, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34330, + "token_id": 34263, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34331, + "token_id": 34264, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34332, + "token_id": 34265, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34333, + "token_id": 34266, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34334, + "token_id": 34267, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "{{", - "token_id": 34335, + "token_id": 34268, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "cite", - "token_id": 34336, + "token_id": 34269, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34337, + "token_id": 34270, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34338, + "token_id": 34271, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "last", - "token_id": 34339, + "token_id": 34272, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34340, + "token_id": 34273, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ign", - "token_id": 34341, + "token_id": 34274, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "staff", - "token_id": 34342, + "token_id": 34275, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34343, + "token_id": 34276, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34344, + "token_id": 34277, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34345, + "token_id": 34278, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "12", - "token_id": 34346, + "token_id": 34279, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "december", - "token_id": 34347, + "token_id": 34280, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 34348, + "token_id": 34281, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34349, + "token_id": 34282, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "title", - "token_id": 34350, + "token_id": 34283, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34351, + "token_id": 34284, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34352, + "token_id": 34285, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "best", - "token_id": 34353, + "token_id": 34286, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "video", - "token_id": 34354, + "token_id": 34287, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "game", - "token_id": 34355, + "token_id": 34288, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "music", - "token_id": 34356, + "token_id": 34289, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 34357, + "token_id": 34290, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 34358, + "token_id": 34291, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34359, + "token_id": 34292, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34360, + "token_id": 34293, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34361, + "token_id": 34294, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34362, + "token_id": 34295, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34363, + "token_id": 34296, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34364, + "token_id": 34297, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34365, + "token_id": 34298, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "www", - "token_id": 34366, + "token_id": 34299, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34367, + "token_id": 34300, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ign", - "token_id": 34368, + "token_id": 34301, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34369, + "token_id": 34302, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 34370, + "token_id": 34303, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34371, + "token_id": 34304, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "articles", - "token_id": 34372, + "token_id": 34305, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34373, + "token_id": 34306, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "best", - "token_id": 34374, + "token_id": 34307, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34375, + "token_id": 34308, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "video", - "token_id": 34376, + "token_id": 34309, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34377, + "token_id": 34310, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "game", - "token_id": 34378, + "token_id": 34311, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34379, + "token_id": 34312, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "music", - "token_id": 34380, + "token_id": 34313, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34381, + "token_id": 34314, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 34382, + "token_id": 34315, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34383, + "token_id": 34316, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34384, + "token_id": 34317, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34385, + "token_id": 34318, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "status", - "token_id": 34386, + "token_id": 34319, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34387, + "token_id": 34320, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "live", - "token_id": 34388, + "token_id": 34321, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34389, + "token_id": 34322, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34390, + "token_id": 34323, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34391, + "token_id": 34324, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34392, + "token_id": 34325, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34393, + "token_id": 34326, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34394, + "token_id": 34327, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34395, + "token_id": 34328, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34396, + "token_id": 34329, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34397, + "token_id": 34330, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34398, + "token_id": 34331, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34399, + "token_id": 34332, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34400, + "token_id": 34333, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34401, + "token_id": 34334, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "org", - "token_id": 34402, + "token_id": 34335, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34403, + "token_id": 34336, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34404, + "token_id": 34337, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34405, + "token_id": 34338, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "20250401225915", - "token_id": 34406, + "token_id": 34339, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34407, + "token_id": 34340, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34408, + "token_id": 34341, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34409, + "token_id": 34342, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34410, + "token_id": 34343, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34411, + "token_id": 34344, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "www", - "token_id": 34412, + "token_id": 34345, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34413, + "token_id": 34346, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ign", - "token_id": 34414, + "token_id": 34347, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34415, + "token_id": 34348, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 34416, + "token_id": 34349, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34417, + "token_id": 34350, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "articles", - "token_id": 34418, + "token_id": 34351, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34419, + "token_id": 34352, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "best", - "token_id": 34420, + "token_id": 34353, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34421, + "token_id": 34354, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "video", - "token_id": 34422, + "token_id": 34355, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34423, + "token_id": 34356, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "game", - "token_id": 34424, + "token_id": 34357, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34425, + "token_id": 34358, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "music", - "token_id": 34426, + "token_id": 34359, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34427, + "token_id": 34360, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 34428, + "token_id": 34361, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34429, + "token_id": 34362, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34430, + "token_id": 34363, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34431, + "token_id": 34364, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34432, + "token_id": 34365, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34433, + "token_id": 34366, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "1", - "token_id": 34434, + "token_id": 34367, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "april", - "token_id": 34435, + "token_id": 34368, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2025", - "token_id": 34436, + "token_id": 34369, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34437, + "token_id": 34370, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "access", - "token_id": 34438, + "token_id": 34371, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34439, + "token_id": 34372, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34440, + "token_id": 34373, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34441, + "token_id": 34374, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "21", - "token_id": 34442, + "token_id": 34375, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "january", - "token_id": 34443, + "token_id": 34376, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2026", - "token_id": 34444, + "token_id": 34377, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34445, + "token_id": 34378, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "website", - "token_id": 34446, + "token_id": 34379, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34447, + "token_id": 34380, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 34448, + "token_id": 34381, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ign", - "token_id": 34449, + "token_id": 34382, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 34450, + "token_id": 34383, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "}}", - "token_id": 34451, + "token_id": 34384, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34452, + "token_id": 34385, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34453, + "token_id": 34386, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34454, + "token_id": 34387, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34455, + "token_id": 34388, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "numerous", - "token_id": 34456, + "token_id": 34389, "o_rev_id": 1334176815, "in": [], "out": [ @@ -297223,7 +296654,7 @@ }, { "str": "critics", - "token_id": 34457, + "token_id": 34390, "o_rev_id": 1334176815, "in": [], "out": [ @@ -297232,7 +296663,7 @@ }, { "str": "praised", - "token_id": 34458, + "token_id": 34391, "o_rev_id": 1334176815, "in": [], "out": [ @@ -297241,378 +296672,378 @@ }, { "str": "'", - "token_id": 34459, + "token_id": 34392, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34460, + "token_id": 34393, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34461, + "token_id": 34394, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 34462, + "token_id": 34395, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34463, + "token_id": 34396, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34464, + "token_id": 34397, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34465, + "token_id": 34398, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nowiki", - "token_id": 34466, + "token_id": 34399, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34467, + "token_id": 34400, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34468, + "token_id": 34401, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34469, + "token_id": 34402, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 34470, + "token_id": 34403, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "fine", - "token_id": 34471, + "token_id": 34404, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34472, + "token_id": 34405, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "tuning", - "token_id": 34473, + "token_id": 34406, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 34474, + "token_id": 34407, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "returning", - "token_id": 34475, + "token_id": 34408, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gameplay", - "token_id": 34476, + "token_id": 34409, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "elements", - "token_id": 34477, + "token_id": 34410, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "from", - "token_id": 34478, + "token_id": 34411, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 34479, + "token_id": 34412, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34480, + "token_id": 34413, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2", - "token_id": 34481, + "token_id": 34414, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34482, + "token_id": 34415, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "its", - "token_id": 34483, + "token_id": 34416, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "predecessor", - "token_id": 34484, + "token_id": 34417, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 34485, + "token_id": 34418, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34486, + "token_id": 34419, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "alex", - "token_id": 34487, + "token_id": 34420, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "donaldson", - "token_id": 34488, + "token_id": 34421, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 34489, + "token_id": 34422, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34490, + "token_id": 34423, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34491, + "token_id": 34424, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "vg247", - "token_id": 34492, + "token_id": 34425, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34493, + "token_id": 34426, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34494, + "token_id": 34427, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "said", - "token_id": 34495, + "token_id": 34428, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 34496, + "token_id": 34429, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34497, + "token_id": 34430, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34498, + "token_id": 34431, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34499, + "token_id": 34432, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 34500, + "token_id": 34433, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34501, + "token_id": 34434, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34502, + "token_id": 34435, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34503, + "token_id": 34436, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nowiki", - "token_id": 34504, + "token_id": 34437, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34505, + "token_id": 34438, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34506, + "token_id": 34439, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34507, + "token_id": 34440, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 34508, + "token_id": 34441, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "focus", - "token_id": 34509, + "token_id": 34442, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "on", - "token_id": 34510, + "token_id": 34443, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "minute", - "token_id": 34511, + "token_id": 34444, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "refininements", - "token_id": 34512, + "token_id": 34445, "o_rev_id": 1334176815, "in": [], "out": [ @@ -297621,434 +297052,434 @@ }, { "str": "established", - "token_id": 34513, + "token_id": 34446, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "it", - "token_id": 34514, + "token_id": 34447, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 34515, + "token_id": 34448, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34516, + "token_id": 34449, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "most", - "token_id": 34517, + "token_id": 34450, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "polished", - "token_id": 34518, + "token_id": 34451, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "game", - "token_id": 34519, + "token_id": 34452, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "in", - "token_id": 34520, + "token_id": 34453, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34521, + "token_id": 34454, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "series", - "token_id": 34522, + "token_id": 34455, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34523, + "token_id": 34456, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34524, + "token_id": 34457, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34525, + "token_id": 34458, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34526, + "token_id": 34459, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34527, + "token_id": 34460, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34528, + "token_id": 34461, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "vg247", - "token_id": 34529, + "token_id": 34462, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34530, + "token_id": 34463, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34531, + "token_id": 34464, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34532, + "token_id": 34465, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34533, + "token_id": 34466, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "revamped", - "token_id": 34534, + "token_id": 34467, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "matchmaking", - "token_id": 34535, + "token_id": 34468, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "lobby", - "token_id": 34536, + "token_id": 34469, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 34537, + "token_id": 34470, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "which", - "token_id": 34538, + "token_id": 34471, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "adds", - "token_id": 34539, + "token_id": 34472, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 34540, + "token_id": 34473, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "physical", - "token_id": 34541, + "token_id": 34474, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "practice", - "token_id": 34542, + "token_id": 34475, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "range", - "token_id": 34543, + "token_id": 34476, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 34544, + "token_id": 34477, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 34545, + "token_id": 34478, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "commended", - "token_id": 34546, + "token_id": 34479, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "by", - "token_id": 34547, + "token_id": 34480, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "reviewers", - "token_id": 34548, + "token_id": 34481, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 34549, + "token_id": 34482, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "an", - "token_id": 34550, + "token_id": 34483, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "improvement", - "token_id": 34551, + "token_id": 34484, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "over", - "token_id": 34552, + "token_id": 34485, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "previous", - "token_id": 34553, + "token_id": 34486, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "entries", - "token_id": 34554, + "token_id": 34487, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34555, + "token_id": 34488, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "static", - "token_id": 34556, + "token_id": 34489, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "loading", - "token_id": 34557, + "token_id": 34490, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "screens", - "token_id": 34558, + "token_id": 34491, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34559, + "token_id": 34492, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34560, + "token_id": 34493, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34561, + "token_id": 34494, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34562, + "token_id": 34495, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34563, + "token_id": 34496, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34564, + "token_id": 34497, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ignmp", - "token_id": 34565, + "token_id": 34498, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34566, + "token_id": 34499, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34567, + "token_id": 34500, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34568, + "token_id": 34501, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34569, + "token_id": 34502, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34570, + "token_id": 34503, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34571, + "token_id": 34504, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34572, + "token_id": 34505, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34573, + "token_id": 34506, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nlife", - "token_id": 34574, + "token_id": 34507, "o_rev_id": 1334176815, "in": [], "out": [ @@ -298057,532 +297488,532 @@ }, { "str": "\"", - "token_id": 34575, + "token_id": 34508, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34576, + "token_id": 34509, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34577, + "token_id": 34510, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "salmon", - "token_id": 34578, + "token_id": 34511, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "run", - "token_id": 34579, + "token_id": 34512, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34580, + "token_id": 34513, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 34581, + "token_id": 34514, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "new", - "token_id": 34582, + "token_id": 34515, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "incarnation", - "token_id": 34583, + "token_id": 34516, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 34584, + "token_id": 34517, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "received", - "token_id": 34585, + "token_id": 34518, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "positively", - "token_id": 34586, + "token_id": 34519, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 34587, + "token_id": 34520, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "with", - "token_id": 34588, + "token_id": 34521, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "critics", - "token_id": 34589, + "token_id": 34522, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "applauding", - "token_id": 34590, + "token_id": 34523, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "its", - "token_id": 34591, + "token_id": 34524, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "indefinite", - "token_id": 34592, + "token_id": 34525, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "availability", - "token_id": 34593, + "token_id": 34526, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 34594, + "token_id": 34527, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "opposed", - "token_id": 34595, + "token_id": 34528, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 34596, + "token_id": 34529, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34597, + "token_id": 34530, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34598, + "token_id": 34531, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34599, + "token_id": 34532, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2", - "token_id": 34600, + "token_id": 34533, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34601, + "token_id": 34534, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34602, + "token_id": 34535, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34603, + "token_id": 34536, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nowiki", - "token_id": 34604, + "token_id": 34537, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34605, + "token_id": 34538, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34606, + "token_id": 34539, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34607, + "token_id": 34540, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 34608, + "token_id": 34541, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "locking", - "token_id": 34609, + "token_id": 34542, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 34610, + "token_id": 34543, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34611, + "token_id": 34544, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mode", - "token_id": 34612, + "token_id": 34545, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "behind", - "token_id": 34613, + "token_id": 34546, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 34614, + "token_id": 34547, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "timed", - "token_id": 34615, + "token_id": 34548, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "rotation", - "token_id": 34616, + "token_id": 34549, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34617, + "token_id": 34550, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34618, + "token_id": 34551, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34619, + "token_id": 34552, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34620, + "token_id": 34553, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34621, + "token_id": 34554, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34622, + "token_id": 34555, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "destruct", - "token_id": 34623, + "token_id": 34556, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34624, + "token_id": 34557, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34625, + "token_id": 34558, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34626, + "token_id": 34559, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34627, + "token_id": 34560, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ability", - "token_id": 34628, + "token_id": 34561, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "for", - "token_id": 34629, + "token_id": 34562, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "players", - "token_id": 34630, + "token_id": 34563, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 34631, + "token_id": 34564, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "manually", - "token_id": 34632, + "token_id": 34565, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "hurl", - "token_id": 34633, + "token_id": 34566, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "golden", - "token_id": 34634, + "token_id": 34567, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "eggs", - "token_id": 34635, + "token_id": 34568, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 34636, + "token_id": 34569, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "distance", - "token_id": 34637, + "token_id": 34570, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 34638, + "token_id": 34571, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "seen", - "token_id": 34639, + "token_id": 34572, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 34640, + "token_id": 34573, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "an", - "token_id": 34641, + "token_id": 34574, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "adequate", - "token_id": 34642, + "token_id": 34575, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "enhancement", - "token_id": 34643, + "token_id": 34576, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34644, + "token_id": 34577, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34645, + "token_id": 34578, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34646, + "token_id": 34579, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34647, + "token_id": 34580, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34648, + "token_id": 34581, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34649, + "token_id": 34582, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ignmp", - "token_id": 34650, + "token_id": 34583, "o_rev_id": 1334176815, "in": [], "out": [ @@ -298591,1351 +298022,1351 @@ }, { "str": "\"", - "token_id": 34651, + "token_id": 34584, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34652, + "token_id": 34585, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34653, + "token_id": 34586, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34654, + "token_id": 34587, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34655, + "token_id": 34588, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34656, + "token_id": 34589, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34657, + "token_id": 34590, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34658, + "token_id": 34591, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nlife", - "token_id": 34659, + "token_id": 34592, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34660, + "token_id": 34593, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34661, + "token_id": 34594, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34662, + "token_id": 34595, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34663, + "token_id": 34596, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34664, + "token_id": 34597, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34665, + "token_id": 34598, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34666, + "token_id": 34599, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34667, + "token_id": 34600, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34668, + "token_id": 34601, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "1", - "token_id": 34669, + "token_id": 34602, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34670, + "token_id": 34603, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34671, + "token_id": 34604, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "{{", - "token_id": 34672, + "token_id": 34605, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "cite", - "token_id": 34673, + "token_id": 34606, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34674, + "token_id": 34607, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34675, + "token_id": 34608, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "last", - "token_id": 34676, + "token_id": 34609, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34677, + "token_id": 34610, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "kalogirou", - "token_id": 34678, + "token_id": 34611, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34679, + "token_id": 34612, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "first", - "token_id": 34680, + "token_id": 34613, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34681, + "token_id": 34614, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "harry", - "token_id": 34682, + "token_id": 34615, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34683, + "token_id": 34616, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34684, + "token_id": 34617, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34685, + "token_id": 34618, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "7", - "token_id": 34686, + "token_id": 34619, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "september", - "token_id": 34687, + "token_id": 34620, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 34688, + "token_id": 34621, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34689, + "token_id": 34622, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "title", - "token_id": 34690, + "token_id": 34623, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34691, + "token_id": 34624, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34692, + "token_id": 34625, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 34693, + "token_id": 34626, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 34694, + "token_id": 34627, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34695, + "token_id": 34628, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 34696, + "token_id": 34629, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splattin", - "token_id": 34697, + "token_id": 34630, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34698, + "token_id": 34631, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "good", - "token_id": 34699, + "token_id": 34632, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "time", - "token_id": 34700, + "token_id": 34633, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34701, + "token_id": 34634, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34702, + "token_id": 34635, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34703, + "token_id": 34636, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34704, + "token_id": 34637, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34705, + "token_id": 34638, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34706, + "token_id": 34639, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34707, + "token_id": 34640, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "press", - "token_id": 34708, + "token_id": 34641, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34709, + "token_id": 34642, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "start", - "token_id": 34710, + "token_id": 34643, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34711, + "token_id": 34644, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 34712, + "token_id": 34645, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34713, + "token_id": 34646, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "au", - "token_id": 34714, + "token_id": 34647, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34715, + "token_id": 34648, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "reviews", - "token_id": 34716, + "token_id": 34649, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34717, + "token_id": 34650, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 34718, + "token_id": 34651, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34719, + "token_id": 34652, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "switch", - "token_id": 34720, + "token_id": 34653, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34721, + "token_id": 34654, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 34722, + "token_id": 34655, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34723, + "token_id": 34656, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "09", - "token_id": 34724, + "token_id": 34657, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34725, + "token_id": 34658, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "07", - "token_id": 34726, + "token_id": 34659, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34727, + "token_id": 34660, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34728, + "token_id": 34661, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34729, + "token_id": 34662, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 34730, + "token_id": 34663, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34731, + "token_id": 34664, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 34732, + "token_id": 34665, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34733, + "token_id": 34666, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 34734, + "token_id": 34667, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34735, + "token_id": 34668, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splattin", - "token_id": 34736, + "token_id": 34669, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34737, + "token_id": 34670, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "good", - "token_id": 34738, + "token_id": 34671, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34739, + "token_id": 34672, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "time", - "token_id": 34740, + "token_id": 34673, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34741, + "token_id": 34674, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34742, + "token_id": 34675, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34743, + "token_id": 34676, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34744, + "token_id": 34677, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "status", - "token_id": 34745, + "token_id": 34678, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34746, + "token_id": 34679, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "live", - "token_id": 34747, + "token_id": 34680, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34748, + "token_id": 34681, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34749, + "token_id": 34682, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34750, + "token_id": 34683, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 34751, + "token_id": 34684, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34752, + "token_id": 34685, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34753, + "token_id": 34686, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34754, + "token_id": 34687, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34755, + "token_id": 34688, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34756, + "token_id": 34689, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34757, + "token_id": 34690, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34758, + "token_id": 34691, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34759, + "token_id": 34692, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34760, + "token_id": 34693, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "org", - "token_id": 34761, + "token_id": 34694, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34762, + "token_id": 34695, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 34763, + "token_id": 34696, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34764, + "token_id": 34697, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "20251218022842", - "token_id": 34765, + "token_id": 34698, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34766, + "token_id": 34699, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 34767, + "token_id": 34700, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 34768, + "token_id": 34701, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34769, + "token_id": 34702, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34770, + "token_id": 34703, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "press", - "token_id": 34771, + "token_id": 34704, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34772, + "token_id": 34705, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "start", - "token_id": 34773, + "token_id": 34706, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34774, + "token_id": 34707, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 34775, + "token_id": 34708, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34776, + "token_id": 34709, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "au", - "token_id": 34777, + "token_id": 34710, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34778, + "token_id": 34711, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "reviews", - "token_id": 34779, + "token_id": 34712, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34780, + "token_id": 34713, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 34781, + "token_id": 34714, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34782, + "token_id": 34715, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "switch", - "token_id": 34783, + "token_id": 34716, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34784, + "token_id": 34717, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 34785, + "token_id": 34718, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34786, + "token_id": 34719, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "09", - "token_id": 34787, + "token_id": 34720, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34788, + "token_id": 34721, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "07", - "token_id": 34789, + "token_id": 34722, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34790, + "token_id": 34723, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 34791, + "token_id": 34724, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34792, + "token_id": 34725, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 34793, + "token_id": 34726, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34794, + "token_id": 34727, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 34795, + "token_id": 34728, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34796, + "token_id": 34729, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 34797, + "token_id": 34730, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34798, + "token_id": 34731, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splattin", - "token_id": 34799, + "token_id": 34732, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34800, + "token_id": 34733, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "good", - "token_id": 34801, + "token_id": 34734, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34802, + "token_id": 34735, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "time", - "token_id": 34803, + "token_id": 34736, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34804, + "token_id": 34737, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34805, + "token_id": 34738, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 34806, + "token_id": 34739, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34807, + "token_id": 34740, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34808, + "token_id": 34741, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34809, + "token_id": 34742, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "18", - "token_id": 34810, + "token_id": 34743, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "december", - "token_id": 34811, + "token_id": 34744, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2025", - "token_id": 34812, + "token_id": 34745, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34813, + "token_id": 34746, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "access", - "token_id": 34814, + "token_id": 34747, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34815, + "token_id": 34748, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 34816, + "token_id": 34749, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34817, + "token_id": 34750, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "21", - "token_id": 34818, + "token_id": 34751, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "january", - "token_id": 34819, + "token_id": 34752, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2026", - "token_id": 34820, + "token_id": 34753, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34821, + "token_id": 34754, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "website", - "token_id": 34822, + "token_id": 34755, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34823, + "token_id": 34756, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "press", - "token_id": 34824, + "token_id": 34757, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "start", - "token_id": 34825, + "token_id": 34758, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 34826, + "token_id": 34759, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "language", - "token_id": 34827, + "token_id": 34760, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34828, + "token_id": 34761, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "en", - "token_id": 34829, + "token_id": 34762, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34830, + "token_id": 34763, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "us", - "token_id": 34831, + "token_id": 34764, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "}}", - "token_id": 34832, + "token_id": 34765, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34833, + "token_id": 34766, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34834, + "token_id": 34767, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34835, + "token_id": 34768, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34836, + "token_id": 34769, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34837, + "token_id": 34770, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34838, + "token_id": 34771, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 34839, + "token_id": 34772, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "shacknews", - "token_id": 34840, + "token_id": 34773, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 34841, + "token_id": 34774, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34842, + "token_id": 34775, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34843, + "token_id": 34776, "o_rev_id": 1334176815, "in": [], "out": [ @@ -299944,7 +299375,7 @@ }, { "str": "<", - "token_id": 34844, + "token_id": 34777, "o_rev_id": 1334176815, "in": [], "out": [ @@ -299953,7 +299384,7 @@ }, { "str": "nowiki", - "token_id": 34845, + "token_id": 34778, "o_rev_id": 1334176815, "in": [], "out": [ @@ -299962,7 +299393,7 @@ }, { "str": "/", - "token_id": 34846, + "token_id": 34779, "o_rev_id": 1334176815, "in": [], "out": [ @@ -299971,7 +299402,7 @@ }, { "str": ">", - "token_id": 34847, + "token_id": 34780, "o_rev_id": 1334176815, "in": [], "out": [ @@ -299980,28 +299411,28 @@ }, { "str": "'", - "token_id": 34848, + "token_id": 34781, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ozzie", - "token_id": 34849, + "token_id": 34782, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mejia", - "token_id": 34850, + "token_id": 34783, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "applauded", - "token_id": 34851, + "token_id": 34784, "o_rev_id": 1334176815, "in": [], "out": [ @@ -300010,875 +299441,875 @@ }, { "str": "the", - "token_id": 34852, + "token_id": 34785, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "title", - "token_id": 34853, + "token_id": 34786, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34854, + "token_id": 34787, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 34855, + "token_id": 34788, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "new", - "token_id": 34856, + "token_id": 34789, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "customization", - "token_id": 34857, + "token_id": 34790, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "features", - "token_id": 34858, + "token_id": 34791, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 34859, + "token_id": 34792, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "though", - "token_id": 34860, + "token_id": 34793, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "he", - "token_id": 34861, + "token_id": 34794, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "commented", - "token_id": 34862, + "token_id": 34795, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 34863, + "token_id": 34796, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "they", - "token_id": 34864, + "token_id": 34797, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "did", - "token_id": 34865, + "token_id": 34798, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "not", - "token_id": 34866, + "token_id": 34799, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "feel", - "token_id": 34867, + "token_id": 34800, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "especially", - "token_id": 34868, + "token_id": 34801, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "innovative", - "token_id": 34869, + "token_id": 34802, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "compared", - "token_id": 34870, + "token_id": 34803, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 34871, + "token_id": 34804, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "other", - "token_id": 34872, + "token_id": 34805, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "shooters", - "token_id": 34873, + "token_id": 34806, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34874, + "token_id": 34807, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34875, + "token_id": 34808, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34876, + "token_id": 34809, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34877, + "token_id": 34810, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34878, + "token_id": 34811, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34879, + "token_id": 34812, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "sn", - "token_id": 34880, + "token_id": 34813, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34881, + "token_id": 34814, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34882, + "token_id": 34815, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34883, + "token_id": 34816, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34884, + "token_id": 34817, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "game", - "token_id": 34885, + "token_id": 34818, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34886, + "token_id": 34819, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 34887, + "token_id": 34820, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "movement", - "token_id": 34888, + "token_id": 34821, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "controls", - "token_id": 34889, + "token_id": 34822, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "were", - "token_id": 34890, + "token_id": 34823, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "seen", - "token_id": 34891, + "token_id": 34824, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "by", - "token_id": 34892, + "token_id": 34825, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "critics", - "token_id": 34893, + "token_id": 34826, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 34894, + "token_id": 34827, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mechanically", - "token_id": 34895, + "token_id": 34828, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "enjoyable", - "token_id": 34896, + "token_id": 34829, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34897, + "token_id": 34830, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34898, + "token_id": 34831, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "newly", - "token_id": 34899, + "token_id": 34832, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 34900, + "token_id": 34833, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "included", - "token_id": 34901, + "token_id": 34834, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "squid", - "token_id": 34902, + "token_id": 34835, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "surge", - "token_id": 34903, + "token_id": 34836, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "and", - "token_id": 34904, + "token_id": 34837, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "squid", - "token_id": 34905, + "token_id": 34838, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "roll", - "token_id": 34906, + "token_id": 34839, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "maneuvers", - "token_id": 34907, + "token_id": 34840, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "were", - "token_id": 34908, + "token_id": 34841, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "praised", - "token_id": 34909, + "token_id": 34842, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "by", - "token_id": 34910, + "token_id": 34843, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "some", - "token_id": 34911, + "token_id": 34844, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 34912, + "token_id": 34845, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "fun", - "token_id": 34913, + "token_id": 34846, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "additions", - "token_id": 34914, + "token_id": 34847, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 34915, + "token_id": 34848, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "emphasize", - "token_id": 34916, + "token_id": 34849, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34917, + "token_id": 34850, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "frenetic", - "token_id": 34918, + "token_id": 34851, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "pace", - "token_id": 34919, + "token_id": 34852, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 34920, + "token_id": 34853, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "competetive", - "token_id": 34921, + "token_id": 34854, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "matches", - "token_id": 34922, + "token_id": 34855, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34923, + "token_id": 34856, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34924, + "token_id": 34857, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34925, + "token_id": 34858, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34926, + "token_id": 34859, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34927, + "token_id": 34860, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34928, + "token_id": 34861, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gspot", - "token_id": 34929, + "token_id": 34862, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34930, + "token_id": 34863, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34931, + "token_id": 34864, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 34932, + "token_id": 34865, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "hirun", - "token_id": 34933, + "token_id": 34866, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "cryer", - "token_id": 34934, + "token_id": 34867, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 34935, + "token_id": 34868, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34936, + "token_id": 34869, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34937, + "token_id": 34870, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gamesradar", - "token_id": 34938, + "token_id": 34871, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "+", - "token_id": 34939, + "token_id": 34872, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34940, + "token_id": 34873, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 34941, + "token_id": 34874, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "particularly", - "token_id": 34942, + "token_id": 34875, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "lauded", - "token_id": 34943, + "token_id": 34876, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34944, + "token_id": 34877, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "squid", - "token_id": 34945, + "token_id": 34878, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "roll", - "token_id": 34946, + "token_id": 34879, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 34947, + "token_id": 34880, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "which", - "token_id": 34948, + "token_id": 34881, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "grants", - "token_id": 34949, + "token_id": 34882, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "players", - "token_id": 34950, + "token_id": 34883, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "brief", - "token_id": 34951, + "token_id": 34884, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "invincibility", - "token_id": 34952, + "token_id": 34885, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "if", - "token_id": 34953, + "token_id": 34886, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "they", - "token_id": 34954, + "token_id": 34887, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "perform", - "token_id": 34955, + "token_id": 34888, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34956, + "token_id": 34889, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "move", - "token_id": 34957, + "token_id": 34890, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 34958, + "token_id": 34891, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "they", - "token_id": 34959, + "token_id": 34892, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "are", - "token_id": 34960, + "token_id": 34893, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "struck", - "token_id": 34961, + "token_id": 34894, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "with", - "token_id": 34962, + "token_id": 34895, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "enemy", - "token_id": 34963, + "token_id": 34896, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ink", - "token_id": 34964, + "token_id": 34897, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34965, + "token_id": 34898, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "he", - "token_id": 34966, + "token_id": 34899, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "stated", - "token_id": 34967, + "token_id": 34900, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 34968, + "token_id": 34901, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 34969, + "token_id": 34902, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mechanic", - "token_id": 34970, + "token_id": 34903, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "helps", - "token_id": 34971, + "token_id": 34904, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 34972, + "token_id": 34905, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "reinforce", - "token_id": 34973, + "token_id": 34906, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 34974, + "token_id": 34907, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "more", - "token_id": 34975, + "token_id": 34908, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34976, + "token_id": 34909, "o_rev_id": 1334176815, "in": [], "out": [ @@ -300887,7 +300318,7 @@ }, { "str": "complex", - "token_id": 34977, + "token_id": 34910, "o_rev_id": 1334176815, "in": [], "out": [ @@ -300896,7 +300327,7 @@ }, { "str": "\"", - "token_id": 34978, + "token_id": 34911, "o_rev_id": 1334176815, "in": [], "out": [ @@ -300905,252 +300336,301 @@ }, { "str": "gameplay", - "token_id": 34979, + "token_id": 34912, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "experience", - "token_id": 34980, + "token_id": 34913, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 34981, + "token_id": 34914, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "rewards", - "token_id": 34982, + "token_id": 34915, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "players", - "token_id": 34983, + "token_id": 34916, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "for", - "token_id": 34984, + "token_id": 34917, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "taking", - "token_id": 34985, + "token_id": 34918, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "time", - "token_id": 34986, + "token_id": 34919, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 34987, + "token_id": 34920, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "hone", - "token_id": 34988, + "token_id": 34921, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "their", - "token_id": 34989, + "token_id": 34922, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "skills", - "token_id": 34990, + "token_id": 34923, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 34991, + "token_id": 34924, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 34992, + "token_id": 34925, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 34993, + "token_id": 34926, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 34994, + "token_id": 34927, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 34995, + "token_id": 34928, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34996, + "token_id": 34929, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gradar", - "token_id": 34997, + "token_id": 34930, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 34998, + "token_id": 34931, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 34999, + "token_id": 34932, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 34933, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "brian", - "token_id": 35000, + "token_id": 34934, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "shea", - "token_id": 35001, + "token_id": 34935, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35002, + "token_id": 34936, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 34937, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 34938, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 34939, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "game", - "token_id": 35003, + "token_id": 34940, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "informer", - "token_id": 35004, + "token_id": 34941, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 34942, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 34943, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 34944, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "similarly", - "token_id": 35005, + "token_id": 34945, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "praised", - "token_id": 35006, + "token_id": 34946, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35007, + "token_id": 34947, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "game", - "token_id": 35008, + "token_id": 34948, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35009, + "token_id": 34949, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 35010, + "token_id": 34950, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "overall", - "token_id": 35011, + "token_id": 34951, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "movement", - "token_id": 35012, + "token_id": 34952, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 35013, + "token_id": 34953, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35014, + "token_id": 34954, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301159,7 +300639,7 @@ }, { "str": "smooth", - "token_id": 35015, + "token_id": 34955, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301168,7 +300648,7 @@ }, { "str": "\"", - "token_id": 35016, + "token_id": 34956, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301177,7 +300657,7 @@ }, { "str": "and", - "token_id": 35017, + "token_id": 34957, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301186,7 +300666,7 @@ }, { "str": "\"", - "token_id": 35018, + "token_id": 34958, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301195,21 +300675,21 @@ }, { "str": "intuitive", - "token_id": 35019, + "token_id": 34959, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35020, + "token_id": 34960, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35021, + "token_id": 34961, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301218,77 +300698,77 @@ }, { "str": "<", - "token_id": 35022, + "token_id": 34962, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35023, + "token_id": 34963, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35024, + "token_id": 34964, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35025, + "token_id": 34965, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35026, + "token_id": 34966, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gi", - "token_id": 35027, + "token_id": 34967, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35028, + "token_id": 34968, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35029, + "token_id": 34969, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35030, + "token_id": 34970, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "numerous", - "token_id": 35031, + "token_id": 34971, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "critics", - "token_id": 35032, + "token_id": 34972, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301297,7 +300777,7 @@ }, { "str": ",", - "token_id": 35033, + "token_id": 34973, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301306,7 +300786,7 @@ }, { "str": "however", - "token_id": 35034, + "token_id": 34974, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301315,7 +300795,7 @@ }, { "str": ",", - "token_id": 35035, + "token_id": 34975, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301324,63 +300804,63 @@ }, { "str": "took", - "token_id": 35036, + "token_id": 34976, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "issue", - "token_id": 35037, + "token_id": 34977, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "with", - "token_id": 35038, + "token_id": 34978, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 35039, + "token_id": 34979, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "perceived", - "token_id": 35040, + "token_id": 34980, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35041, + "token_id": 34981, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "alex", - "token_id": 35042, + "token_id": 34982, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "olney", - "token_id": 35043, + "token_id": 34983, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35044, + "token_id": 34984, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301389,7 +300869,7 @@ }, { "str": "'", - "token_id": 35045, + "token_id": 34985, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301398,7 +300878,7 @@ }, { "str": "'", - "token_id": 35046, + "token_id": 34986, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301407,7 +300887,7 @@ }, { "str": "nintendo", - "token_id": 35047, + "token_id": 34987, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301416,7 +300896,7 @@ }, { "str": "life", - "token_id": 35048, + "token_id": 34988, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301425,7 +300905,7 @@ }, { "str": "'", - "token_id": 35049, + "token_id": 34989, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301434,7 +300914,7 @@ }, { "str": "'", - "token_id": 35050, + "token_id": 34990, "o_rev_id": 1334176815, "in": [], "out": [ @@ -301443,805 +300923,805 @@ }, { "str": "opined", - "token_id": 35051, + "token_id": 34991, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 35052, + "token_id": 34992, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35053, + "token_id": 34993, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35054, + "token_id": 34994, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35055, + "token_id": 34995, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35056, + "token_id": 34996, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35057, + "token_id": 34997, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35058, + "token_id": 34998, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35059, + "token_id": 34999, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nowiki", - "token_id": 35060, + "token_id": 35000, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35061, + "token_id": 35001, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35062, + "token_id": 35002, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "big", - "token_id": 35063, + "token_id": 35003, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "addition", - "token_id": 35064, + "token_id": 35004, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35065, + "token_id": 35005, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "akin", - "token_id": 35066, + "token_id": 35006, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 35067, + "token_id": 35007, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35068, + "token_id": 35008, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35069, + "token_id": 35009, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35070, + "token_id": 35010, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2", - "token_id": 35071, + "token_id": 35011, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35072, + "token_id": 35012, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35073, + "token_id": 35013, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35074, + "token_id": 35014, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nowiki", - "token_id": 35075, + "token_id": 35015, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35076, + "token_id": 35016, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35077, + "token_id": 35017, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35078, + "token_id": 35018, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 35079, + "token_id": 35019, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "salmon", - "token_id": 35080, + "token_id": 35020, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "run", - "token_id": 35081, + "token_id": 35021, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "prevented", - "token_id": 35082, + "token_id": 35022, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35083, + "token_id": 35023, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "title", - "token_id": 35084, + "token_id": 35024, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "from", - "token_id": 35085, + "token_id": 35025, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "truly", - "token_id": 35086, + "token_id": 35026, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "standing", - "token_id": 35087, + "token_id": 35027, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "out", - "token_id": 35088, + "token_id": 35028, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "from", - "token_id": 35089, + "token_id": 35029, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "its", - "token_id": 35090, + "token_id": 35030, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "predecessors", - "token_id": 35091, + "token_id": 35031, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35092, + "token_id": 35032, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35093, + "token_id": 35033, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35094, + "token_id": 35034, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35095, + "token_id": 35035, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35096, + "token_id": 35036, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35097, + "token_id": 35037, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nlife", - "token_id": 35098, + "token_id": 35038, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35099, + "token_id": 35039, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35100, + "token_id": 35040, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35101, + "token_id": 35041, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "sam", - "token_id": 35102, + "token_id": 35042, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "machkovech", - "token_id": 35103, + "token_id": 35043, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35104, + "token_id": 35044, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35105, + "token_id": 35045, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35106, + "token_id": 35046, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 35107, + "token_id": 35047, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ars", - "token_id": 35108, + "token_id": 35048, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "technica", - "token_id": 35109, + "token_id": 35049, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 35110, + "token_id": 35050, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35111, + "token_id": 35051, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35112, + "token_id": 35052, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "felt", - "token_id": 35113, + "token_id": 35053, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35114, + "token_id": 35054, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35115, + "token_id": 35055, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35116, + "token_id": 35056, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35117, + "token_id": 35057, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35118, + "token_id": 35058, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35119, + "token_id": 35059, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 35120, + "token_id": 35060, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35121, + "token_id": 35061, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "disappointing", - "token_id": 35122, + "token_id": 35062, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35123, + "token_id": 35063, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "in", - "token_id": 35124, + "token_id": 35064, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "its", - "token_id": 35125, + "token_id": 35065, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "absence", - "token_id": 35126, + "token_id": 35066, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35127, + "token_id": 35067, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "innovation", - "token_id": 35128, + "token_id": 35068, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "compared", - "token_id": 35129, + "token_id": 35069, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 35130, + "token_id": 35070, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35131, + "token_id": 35071, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35132, + "token_id": 35072, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35133, + "token_id": 35073, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2", - "token_id": 35134, + "token_id": 35074, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35135, + "token_id": 35075, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35136, + "token_id": 35076, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35137, + "token_id": 35077, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "he", - "token_id": 35138, + "token_id": 35078, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "derided", - "token_id": 35139, + "token_id": 35079, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35140, + "token_id": 35080, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "fact", - "token_id": 35141, + "token_id": 35081, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 35142, + "token_id": 35082, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "only", - "token_id": 35143, + "token_id": 35083, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "five", - "token_id": 35144, + "token_id": 35084, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35145, + "token_id": 35085, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35146, + "token_id": 35086, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "twelve", - "token_id": 35147, + "token_id": 35087, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "maps", - "token_id": 35148, + "token_id": 35088, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "available", - "token_id": 35149, + "token_id": 35089, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "at", - "token_id": 35150, + "token_id": 35090, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "launch", - "token_id": 35151, + "token_id": 35091, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "were", - "token_id": 35152, + "token_id": 35092, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "unique", - "token_id": 35153, + "token_id": 35093, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 35154, + "token_id": 35094, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35155, + "token_id": 35095, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35156, + "token_id": 35096, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35157, + "token_id": 35097, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35158, + "token_id": 35098, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35159, + "token_id": 35099, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35160, + "token_id": 35100, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ";", - "token_id": 35161, + "token_id": 35101, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "he", - "token_id": 35162, + "token_id": 35102, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "also", - "token_id": 35163, + "token_id": 35103, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "thought", - "token_id": 35164, + "token_id": 35104, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "these", - "token_id": 35165, + "token_id": 35105, "o_rev_id": 1334176815, "in": [], "out": [ @@ -302250,1185 +301730,1206 @@ }, { "str": "new", - "token_id": 35166, + "token_id": 35106, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "maps", - "token_id": 35167, + "token_id": 35107, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35168, + "token_id": 35108, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "terrain", - "token_id": 35169, + "token_id": 35109, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 35170, + "token_id": 35110, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "uninteresting", - "token_id": 35171, + "token_id": 35111, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "and", - "token_id": 35172, + "token_id": 35112, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "overly", - "token_id": 35173, + "token_id": 35113, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "flat", - "token_id": 35174, + "token_id": 35114, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35175, + "token_id": 35115, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35176, + "token_id": 35116, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35177, + "token_id": 35117, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35178, + "token_id": 35118, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "{{", - "token_id": 35179, + "token_id": 35119, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "cite", - "token_id": 35180, + "token_id": 35120, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 35181, + "token_id": 35121, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35182, + "token_id": 35122, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "last", - "token_id": 35183, + "token_id": 35123, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35184, + "token_id": 35124, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "machkovech", - "token_id": 35185, + "token_id": 35125, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35186, + "token_id": 35126, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "first", - "token_id": 35187, + "token_id": 35127, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35188, + "token_id": 35128, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "sam", - "token_id": 35189, + "token_id": 35129, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35190, + "token_id": 35130, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35191, + "token_id": 35131, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35192, + "token_id": 35132, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "7", - "token_id": 35193, + "token_id": 35133, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "september", - "token_id": 35194, + "token_id": 35134, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 35195, + "token_id": 35135, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35196, + "token_id": 35136, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "title", - "token_id": 35197, + "token_id": 35137, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35198, + "token_id": 35138, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35199, + "token_id": 35139, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35200, + "token_id": 35140, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35201, + "token_id": 35141, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35202, + "token_id": 35142, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 35203, + "token_id": 35143, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "’", - "token_id": 35204, + "token_id": 35144, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 35205, + "token_id": 35145, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "well", - "token_id": 35206, + "token_id": 35146, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35207, + "token_id": 35147, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "squid", - "token_id": 35208, + "token_id": 35148, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ink", - "token_id": 35209, + "token_id": 35149, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "has", - "token_id": 35210, + "token_id": 35150, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "run", - "token_id": 35211, + "token_id": 35151, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "dry", - "token_id": 35212, + "token_id": 35152, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35213, + "token_id": 35153, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35214, + "token_id": 35154, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35215, + "token_id": 35155, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 35216, + "token_id": 35156, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35217, + "token_id": 35157, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35218, + "token_id": 35158, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35219, + "token_id": 35159, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "arstechnica", - "token_id": 35220, + "token_id": 35160, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35221, + "token_id": 35161, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 35222, + "token_id": 35162, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35223, + "token_id": 35163, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gaming", - "token_id": 35224, + "token_id": 35164, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35225, + "token_id": 35165, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 35226, + "token_id": 35166, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35227, + "token_id": 35167, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "09", - "token_id": 35228, + "token_id": 35168, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35229, + "token_id": 35169, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35230, + "token_id": 35170, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35231, + "token_id": 35171, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35232, + "token_id": 35172, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35233, + "token_id": 35173, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35234, + "token_id": 35174, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35235, + "token_id": 35175, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nintendos", - "token_id": 35236, + "token_id": 35176, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35237, + "token_id": 35177, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "well", - "token_id": 35238, + "token_id": 35178, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35239, + "token_id": 35179, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35240, + "token_id": 35180, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35241, + "token_id": 35181, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "squid", - "token_id": 35242, + "token_id": 35182, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35243, + "token_id": 35183, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ink", - "token_id": 35244, + "token_id": 35184, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35245, + "token_id": 35185, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "has", - "token_id": 35246, + "token_id": 35186, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35247, + "token_id": 35187, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "run", - "token_id": 35248, + "token_id": 35188, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35249, + "token_id": 35189, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "dry", - "token_id": 35250, + "token_id": 35190, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35251, + "token_id": 35191, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35252, + "token_id": 35192, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35253, + "token_id": 35193, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35254, + "token_id": 35194, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "status", - "token_id": 35255, + "token_id": 35195, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35256, + "token_id": 35196, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "live", - "token_id": 35257, + "token_id": 35197, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35258, + "token_id": 35198, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "access", - "token_id": 35259, + "token_id": 35199, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35260, + "token_id": 35200, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35261, + "token_id": 35201, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35262, + "token_id": 35202, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "21", - "token_id": 35263, + "token_id": 35203, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "january", - "token_id": 35264, + "token_id": 35204, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2026", - "token_id": 35265, + "token_id": 35205, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35266, + "token_id": 35206, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "website", - "token_id": 35267, + "token_id": 35207, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35268, + "token_id": 35208, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ars", - "token_id": 35269, + "token_id": 35209, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "technica", - "token_id": 35270, + "token_id": 35210, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35271, + "token_id": 35211, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "language", - "token_id": 35272, + "token_id": 35212, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35273, + "token_id": 35213, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "en", - "token_id": 35274, + "token_id": 35214, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "}}", - "token_id": 35275, + "token_id": 35215, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35276, + "token_id": 35216, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35277, + "token_id": 35217, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35278, + "token_id": 35218, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35279, + "token_id": 35219, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "martin", - "token_id": 35280, + "token_id": 35220, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "robinson", - "token_id": 35281, + "token_id": 35221, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35282, + "token_id": 35222, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "eurogamer", - "token_id": 35283, + "str": "'", + "token_id": 35223, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "opined", - "token_id": 35284, + "str": "'", + "token_id": 35224, "o_rev_id": 1334176815, "in": [], - "out": [ - 1338938791 - ] + "out": [] }, { - "str": "that", - "token_id": 35285, + "str": "[[", + "token_id": 35225, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "even", - "token_id": 35286, + "str": "eurogamer", + "token_id": 35226, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "the", - "token_id": 35287, + "str": "]]", + "token_id": 35227, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "most", - "token_id": 35288, + "str": "'", + "token_id": 35228, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "significant", - "token_id": 35289, + "str": "'", + "token_id": 35229, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "additions", - "token_id": 35290, + "str": "opined", + "token_id": 35230, + "o_rev_id": 1334176815, + "in": [], + "out": [ + 1338938791 + ] + }, + { + "str": "that", + "token_id": 35231, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "seldom", - "token_id": 35291, + "str": "even", + "token_id": 35232, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 35233, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "most", + "token_id": 35234, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "felt", - "token_id": 35292, + "str": "significant", + "token_id": 35235, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "like", - "token_id": 35293, + "str": "additions", + "token_id": 35236, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "basic", - "token_id": 35294, + "str": "seldom", + "token_id": 35237, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "ones", - "token_id": 35295, + "str": "felt", + "token_id": 35238, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "you", - "token_id": 35296, + "str": "like", + "token_id": 35239, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35297, + "token_id": 35240, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35298, + "token_id": 35241, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35299, + "token_id": 35242, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35300, + "token_id": 35243, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35301, + "token_id": 35244, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35302, + "token_id": 35245, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35303, + "token_id": 35246, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "eurog", - "token_id": 35304, + "token_id": 35247, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35305, + "token_id": 35248, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35306, + "token_id": 35249, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35307, + "token_id": 35250, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "brendan", - "token_id": 35308, + "token_id": 35251, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "graeber", - "token_id": 35309, + "token_id": 35252, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35310, + "token_id": 35253, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35311, + "token_id": 35254, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35312, + "token_id": 35255, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 35313, + "token_id": 35256, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ign", - "token_id": 35314, + "token_id": 35257, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 35315, + "token_id": 35258, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35316, + "token_id": 35259, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35317, + "token_id": 35260, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "criticized", - "token_id": 35318, + "token_id": 35261, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35319, + "token_id": 35262, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "new", - "token_id": 35320, + "token_id": 35263, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "tableturf", - "token_id": 35321, + "token_id": 35264, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "battle", - "token_id": 35322, + "token_id": 35265, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mode", - "token_id": 35323, + "token_id": 35266, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 35324, + "token_id": 35267, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35325, + "token_id": 35268, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "lackluster", - "token_id": 35326, + "token_id": 35269, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35327, + "token_id": 35270, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "and", - "token_id": 35328, + "token_id": 35271, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "unexciting", - "token_id": 35329, + "token_id": 35272, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35330, + "token_id": 35273, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35331, + "token_id": 35274, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35332, + "token_id": 35275, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35333, + "token_id": 35276, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35334, + "token_id": 35277, "o_rev_id": 1334176815, "in": [], "out": [ @@ -303437,42 +302938,42 @@ }, { "str": "\"", - "token_id": 35335, + "token_id": 35278, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ignsp", - "token_id": 35336, + "token_id": 35279, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35337, + "token_id": 35280, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35338, + "token_id": 35281, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35339, + "token_id": 35282, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "additionally", - "token_id": 35340, + "token_id": 35283, "o_rev_id": 1334176815, "in": [], "out": [ @@ -303481,7 +302982,7 @@ }, { "str": ",", - "token_id": 35341, + "token_id": 35284, "o_rev_id": 1334176815, "in": [], "out": [ @@ -303490,210 +302991,210 @@ }, { "str": "a", - "token_id": 35342, + "token_id": 35285, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "prevalence", - "token_id": 35343, + "token_id": 35286, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35344, + "token_id": 35287, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "network", - "token_id": 35345, + "token_id": 35288, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "connectivity", - "token_id": 35346, + "token_id": 35289, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "issues", - "token_id": 35347, + "token_id": 35290, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "during", - "token_id": 35348, + "token_id": 35291, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "online", - "token_id": 35349, + "token_id": 35292, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "battles", - "token_id": 35350, + "token_id": 35293, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "and", - "token_id": 35351, + "token_id": 35294, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "matchmaking", - "token_id": 35352, + "token_id": 35295, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 35353, + "token_id": 35296, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "heavily", - "token_id": 35354, + "token_id": 35297, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "criticized", - "token_id": 35355, + "token_id": 35298, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35356, + "token_id": 35299, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "steve", - "token_id": 35357, + "token_id": 35300, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "watts", - "token_id": 35358, + "token_id": 35301, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35359, + "token_id": 35302, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35360, + "token_id": 35303, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35361, + "token_id": 35304, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 35362, + "token_id": 35305, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gamespot", - "token_id": 35363, + "token_id": 35306, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 35364, + "token_id": 35307, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35365, + "token_id": 35308, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35366, + "token_id": 35309, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "called", - "token_id": 35367, + "token_id": 35310, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "in", - "token_id": 35368, + "token_id": 35311, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35369, + "token_id": 35312, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "match", - "token_id": 35370, + "token_id": 35313, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "diconnects", - "token_id": 35371, + "token_id": 35314, "o_rev_id": 1334176815, "in": [], "out": [ @@ -303702,7 +303203,7 @@ }, { "str": "as", - "token_id": 35372, + "token_id": 35315, "o_rev_id": 1334176815, "in": [], "out": [ @@ -303711,126 +303212,133 @@ }, { "str": "\"", - "token_id": 35373, + "token_id": 35316, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "frequent", - "token_id": 35374, + "token_id": 35317, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "and", - "token_id": 35375, + "token_id": 35318, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "unforgiving", - "token_id": 35376, + "token_id": 35319, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35377, + "token_id": 35320, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 35378, + "token_id": 35321, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35379, + "token_id": 35322, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35380, + "token_id": 35323, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35381, + "token_id": 35324, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35382, + "token_id": 35325, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35383, + "token_id": 35326, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gspot", - "token_id": 35384, + "token_id": 35327, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35385, + "token_id": 35328, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35386, + "token_id": 35329, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35387, + "token_id": 35330, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "while", - "token_id": 35388, + "token_id": 35331, "o_rev_id": 1334176815, "in": [], "out": [] }, { - "str": "kotaku", - "token_id": 35389, + "str": "'", + "token_id": 35332, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 35333, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "these", - "token_id": 35390, + "token_id": 35334, "o_rev_id": 1334176815, "in": [], "out": [ @@ -303839,7 +303347,7 @@ }, { "str": "disconnections", - "token_id": 35391, + "token_id": 35335, "o_rev_id": 1334176815, "in": [], "out": [ @@ -303848,469 +303356,469 @@ }, { "str": "as", - "token_id": 35392, + "token_id": 35336, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35393, + "token_id": 35337, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "inexcusable", - "token_id": 35394, + "token_id": 35338, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35395, + "token_id": 35339, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35396, + "token_id": 35340, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35397, + "token_id": 35341, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35398, + "token_id": 35342, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35399, + "token_id": 35343, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "status", - "token_id": 35400, + "token_id": 35344, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35401, + "token_id": 35345, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "live", - "token_id": 35402, + "token_id": 35346, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35403, + "token_id": 35347, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 35404, + "token_id": 35348, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35405, + "token_id": 35349, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35406, + "token_id": 35350, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35407, + "token_id": 35351, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35408, + "token_id": 35352, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 35409, + "token_id": 35353, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35410, + "token_id": 35354, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35411, + "token_id": 35355, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35412, + "token_id": 35356, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "13", - "token_id": 35413, + "token_id": 35357, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "october", - "token_id": 35414, + "token_id": 35358, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 35415, + "token_id": 35359, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35416, + "token_id": 35360, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "access", - "token_id": 35417, + "token_id": 35361, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35418, + "token_id": 35362, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35419, + "token_id": 35363, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35420, + "token_id": 35364, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "13", - "token_id": 35421, + "token_id": 35365, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "october", - "token_id": 35422, + "token_id": 35366, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 35423, + "token_id": 35367, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35424, + "token_id": 35368, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "website", - "token_id": 35425, + "token_id": 35369, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35426, + "token_id": 35370, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "kotaku", - "token_id": 35427, + "token_id": 35371, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35428, + "token_id": 35372, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "language", - "token_id": 35429, + "token_id": 35373, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35430, + "token_id": 35374, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "en", - "token_id": 35431, + "token_id": 35375, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "}}", - "token_id": 35432, + "token_id": 35376, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35433, + "token_id": 35377, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35434, + "token_id": 35378, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35435, + "token_id": 35379, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35436, + "token_id": 35380, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "pramath", - "token_id": 35437, + "token_id": 35381, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35438, + "token_id": 35382, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35439, + "token_id": 35383, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35440, + "token_id": 35384, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gamingbolt", - "token_id": 35441, + "token_id": 35385, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35442, + "token_id": 35386, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35443, + "token_id": 35387, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "thought", - "token_id": 35444, + "token_id": 35388, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "matchmaking", - "token_id": 35445, + "token_id": 35389, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "wait", - "token_id": 35446, + "token_id": 35390, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "times", - "token_id": 35447, + "token_id": 35391, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "were", - "token_id": 35448, + "token_id": 35392, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "excessively", - "token_id": 35449, + "token_id": 35393, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "long", - "token_id": 35450, + "token_id": 35394, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 35451, + "token_id": 35395, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "additionally", - "token_id": 35452, + "token_id": 35396, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "criticizing", - "token_id": 35453, + "token_id": 35397, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "how", - "token_id": 35454, + "token_id": 35398, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "certain", - "token_id": 35455, + "token_id": 35399, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "connection", - "token_id": 35456, + "token_id": 35400, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "errors", - "token_id": 35457, + "token_id": 35401, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "can", - "token_id": 35458, + "token_id": 35402, "o_rev_id": 1334176815, "in": [], "out": [ @@ -304319,7 +303827,7 @@ }, { "str": "occur", - "token_id": 35459, + "token_id": 35403, "o_rev_id": 1334176815, "in": [], "out": [ @@ -304328,14 +303836,14 @@ }, { "str": "during", - "token_id": 35460, + "token_id": 35404, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "matches", - "token_id": 35461, + "token_id": 35405, "o_rev_id": 1334176815, "in": [], "out": [ @@ -304344,7 +303852,7 @@ }, { "str": "that", - "token_id": 35462, + "token_id": 35406, "o_rev_id": 1334176815, "in": [], "out": [ @@ -304353,1302 +303861,1302 @@ }, { "str": "send", - "token_id": 35463, + "token_id": 35407, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "players", - "token_id": 35464, + "token_id": 35408, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "back", - "token_id": 35465, + "token_id": 35409, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 35466, + "token_id": 35410, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "matchmaking", - "token_id": 35467, + "token_id": 35411, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35468, + "token_id": 35412, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35469, + "token_id": 35413, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35470, + "token_id": 35414, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35471, + "token_id": 35415, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35472, + "token_id": 35416, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35473, + "token_id": 35417, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gbolt", - "token_id": 35474, + "token_id": 35418, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35475, + "token_id": 35419, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35476, + "token_id": 35420, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "{{", - "token_id": 35477, + "token_id": 35421, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "cite", - "token_id": 35478, + "token_id": 35422, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 35479, + "token_id": 35423, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35480, + "token_id": 35424, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "last", - "token_id": 35481, + "token_id": 35425, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35482, + "token_id": 35426, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "pramath", - "token_id": 35483, + "token_id": 35427, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35484, + "token_id": 35428, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35485, + "token_id": 35429, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35486, + "token_id": 35430, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "13", - "token_id": 35487, + "token_id": 35431, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "september", - "token_id": 35488, + "token_id": 35432, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 35489, + "token_id": 35433, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35490, + "token_id": 35434, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "title", - "token_id": 35491, + "token_id": 35435, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35492, + "token_id": 35436, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35493, + "token_id": 35437, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35494, + "token_id": 35438, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35495, + "token_id": 35439, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "–", - "token_id": 35496, + "token_id": 35440, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "stay", - "token_id": 35497, + "token_id": 35441, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "fresh", - "token_id": 35498, + "token_id": 35442, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35499, + "token_id": 35443, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35500, + "token_id": 35444, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35501, + "token_id": 35445, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 35502, + "token_id": 35446, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35503, + "token_id": 35447, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35504, + "token_id": 35448, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35505, + "token_id": 35449, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gamingbolt", - "token_id": 35506, + "token_id": 35450, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35507, + "token_id": 35451, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 35508, + "token_id": 35452, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35509, + "token_id": 35453, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35510, + "token_id": 35454, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35511, + "token_id": 35455, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35512, + "token_id": 35456, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35513, + "token_id": 35457, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35514, + "token_id": 35458, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35515, + "token_id": 35459, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "stay", - "token_id": 35516, + "token_id": 35460, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35517, + "token_id": 35461, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "fresh", - "token_id": 35518, + "token_id": 35462, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35519, + "token_id": 35463, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35520, + "token_id": 35464, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35521, + "token_id": 35465, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "status", - "token_id": 35522, + "token_id": 35466, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35523, + "token_id": 35467, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "live", - "token_id": 35524, + "token_id": 35468, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35525, + "token_id": 35469, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 35526, + "token_id": 35470, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35527, + "token_id": 35471, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35528, + "token_id": 35472, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35529, + "token_id": 35473, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 35530, + "token_id": 35474, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35531, + "token_id": 35475, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35532, + "token_id": 35476, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35533, + "token_id": 35477, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 35534, + "token_id": 35478, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35535, + "token_id": 35479, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 35536, + "token_id": 35480, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35537, + "token_id": 35481, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "org", - "token_id": 35538, + "token_id": 35482, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35539, + "token_id": 35483, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 35540, + "token_id": 35484, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35541, + "token_id": 35485, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "20241006093323", - "token_id": 35542, + "token_id": 35486, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35543, + "token_id": 35487, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 35544, + "token_id": 35488, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35545, + "token_id": 35489, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35546, + "token_id": 35490, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35547, + "token_id": 35491, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gamingbolt", - "token_id": 35548, + "token_id": 35492, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35549, + "token_id": 35493, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 35550, + "token_id": 35494, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35551, + "token_id": 35495, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35552, + "token_id": 35496, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35553, + "token_id": 35497, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35554, + "token_id": 35498, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35555, + "token_id": 35499, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35556, + "token_id": 35500, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35557, + "token_id": 35501, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "stay", - "token_id": 35558, + "token_id": 35502, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35559, + "token_id": 35503, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "fresh", - "token_id": 35560, + "token_id": 35504, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35561, + "token_id": 35505, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 35562, + "token_id": 35506, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35563, + "token_id": 35507, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35564, + "token_id": 35508, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35565, + "token_id": 35509, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "6", - "token_id": 35566, + "token_id": 35510, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "october", - "token_id": 35567, + "token_id": 35511, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2024", - "token_id": 35568, + "token_id": 35512, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35569, + "token_id": 35513, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "access", - "token_id": 35570, + "token_id": 35514, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35571, + "token_id": 35515, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35572, + "token_id": 35516, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35573, + "token_id": 35517, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "21", - "token_id": 35574, + "token_id": 35518, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "january", - "token_id": 35575, + "token_id": 35519, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2026", - "token_id": 35576, + "token_id": 35520, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35577, + "token_id": 35521, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "website", - "token_id": 35578, + "token_id": 35522, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35579, + "token_id": 35523, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gamingbolt", - "token_id": 35580, + "token_id": 35524, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "}}", - "token_id": 35581, + "token_id": 35525, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35582, + "token_id": 35526, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35583, + "token_id": 35527, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35584, + "token_id": 35528, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35585, + "token_id": 35529, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "some", - "token_id": 35586, + "token_id": 35530, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "critics", - "token_id": 35587, + "token_id": 35531, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "disliked", - "token_id": 35588, + "token_id": 35532, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35589, + "token_id": 35533, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "amount", - "token_id": 35590, + "token_id": 35534, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35591, + "token_id": 35535, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "non", - "token_id": 35592, + "token_id": 35536, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35593, + "token_id": 35537, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "multiplayer", - "token_id": 35594, + "token_id": 35538, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "content", - "token_id": 35595, + "token_id": 35539, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 35596, + "token_id": 35540, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 35597, + "token_id": 35541, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "locked", - "token_id": 35598, + "token_id": 35542, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "behind", - "token_id": 35599, + "token_id": 35543, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "an", - "token_id": 35600, + "token_id": 35544, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "internet", - "token_id": 35601, + "token_id": 35545, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "connection", - "token_id": 35602, + "token_id": 35546, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 35603, + "token_id": 35547, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "including", - "token_id": 35604, + "token_id": 35548, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "in", - "token_id": 35605, + "token_id": 35549, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35606, + "token_id": 35550, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "game", - "token_id": 35607, + "token_id": 35551, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "shops", - "token_id": 35608, + "token_id": 35552, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35609, + "token_id": 35553, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35610, + "token_id": 35554, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35611, + "token_id": 35555, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35612, + "token_id": 35556, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35613, + "token_id": 35557, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35614, + "token_id": 35558, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gbolt", - "token_id": 35615, + "token_id": 35559, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35616, + "token_id": 35560, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35617, + "token_id": 35561, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35618, + "token_id": 35562, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35619, + "token_id": 35563, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35620, + "token_id": 35564, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35621, + "token_id": 35565, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35622, + "token_id": 35566, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35623, + "token_id": 35567, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "sn", - "token_id": 35624, + "token_id": 35568, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35625, + "token_id": 35569, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35626, + "token_id": 35570, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35627, + "token_id": 35571, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35628, + "token_id": 35572, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "single", - "token_id": 35629, + "token_id": 35573, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35630, + "token_id": 35574, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "player", - "token_id": 35631, + "token_id": 35575, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "campaign", - "token_id": 35632, + "token_id": 35576, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 35633, + "token_id": 35577, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "reviewed", - "token_id": 35634, + "token_id": 35578, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "favorably", - "token_id": 35635, + "token_id": 35579, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35636, + "token_id": 35580, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ozzie", - "token_id": 35637, + "token_id": 35581, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mejia", - "token_id": 35638, + "token_id": 35582, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "thought", - "token_id": 35639, + "token_id": 35583, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35640, + "token_id": 35584, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "expanded", - "token_id": 35641, + "token_id": 35585, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "overworld", - "token_id": 35642, + "token_id": 35586, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35643, + "token_id": 35587, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "return", - "token_id": 35644, + "token_id": 35588, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35645, + "token_id": 35589, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35646, + "token_id": 35590, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mammalians", - "token_id": 35647, + "token_id": 35591, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "felt", - "token_id": 35648, + "token_id": 35592, "o_rev_id": 1334176815, "in": [], "out": [ @@ -305657,105 +305165,105 @@ }, { "str": "refreshing", - "token_id": 35649, + "token_id": 35593, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "compared", - "token_id": 35650, + "token_id": 35594, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 35651, + "token_id": 35595, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35652, + "token_id": 35596, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "more", - "token_id": 35653, + "token_id": 35597, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "linear", - "token_id": 35654, + "token_id": 35598, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "hubs", - "token_id": 35655, + "token_id": 35599, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35656, + "token_id": 35600, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "prior", - "token_id": 35657, + "token_id": 35601, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "titles", - "token_id": 35658, + "token_id": 35602, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35659, + "token_id": 35603, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35660, + "token_id": 35604, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35661, + "token_id": 35605, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35662, + "token_id": 35606, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35663, + "token_id": 35607, "o_rev_id": 1334176815, "in": [], "out": [ @@ -305764,238 +305272,238 @@ }, { "str": "\"", - "token_id": 35664, + "token_id": 35608, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "sn", - "token_id": 35665, + "token_id": 35609, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35666, + "token_id": 35610, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35667, + "token_id": 35611, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35668, + "token_id": 35612, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "its", - "token_id": 35669, + "token_id": 35613, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "story", - "token_id": 35670, + "token_id": 35614, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "was", - "token_id": 35671, + "token_id": 35615, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "met", - "token_id": 35672, + "token_id": 35616, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "with", - "token_id": 35673, + "token_id": 35617, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "amiable", - "token_id": 35674, + "token_id": 35618, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "responses", - "token_id": 35675, + "token_id": 35619, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35676, + "token_id": 35620, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35677, + "token_id": 35621, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35678, + "token_id": 35622, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35679, + "token_id": 35623, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35680, + "token_id": 35624, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35681, + "token_id": 35625, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "eurog", - "token_id": 35682, + "token_id": 35626, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35683, + "token_id": 35627, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35684, + "token_id": 35628, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35685, + "token_id": 35629, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35686, + "token_id": 35630, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35687, + "token_id": 35631, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35688, + "token_id": 35632, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35689, + "token_id": 35633, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35690, + "token_id": 35634, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35691, + "token_id": 35635, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "1", - "token_id": 35692, + "token_id": 35636, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35693, + "token_id": 35637, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35694, + "token_id": 35638, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35695, + "token_id": 35639, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "several", - "token_id": 35696, + "token_id": 35640, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "critics", - "token_id": 35697, + "token_id": 35641, "o_rev_id": 1334176815, "in": [], "out": [ @@ -306004,77 +305512,77 @@ }, { "str": "likened", - "token_id": 35698, + "token_id": 35642, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "many", - "token_id": 35699, + "token_id": 35643, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35700, + "token_id": 35644, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35701, + "token_id": 35645, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "levels", - "token_id": 35702, + "token_id": 35646, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 35703, + "token_id": 35647, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "those", - "token_id": 35704, + "token_id": 35648, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 35705, + "token_id": 35649, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35706, + "token_id": 35650, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35707, + "token_id": 35651, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 35708, + "token_id": 35652, "o_rev_id": 1334176815, "in": [], "out": [ @@ -306083,1113 +305591,1113 @@ }, { "str": "splatoon", - "token_id": 35709, + "token_id": 35653, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2", - "token_id": 35710, + "token_id": 35654, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35711, + "token_id": 35655, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "octo", - "token_id": 35712, + "token_id": 35656, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "expansion", - "token_id": 35713, + "token_id": 35657, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 35714, + "token_id": 35658, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35715, + "token_id": 35659, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35716, + "token_id": 35660, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 35717, + "token_id": 35661, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35718, + "token_id": 35662, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35719, + "token_id": 35663, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35720, + "token_id": 35664, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35721, + "token_id": 35665, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35722, + "token_id": 35666, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gbolt", - "token_id": 35723, + "token_id": 35667, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35724, + "token_id": 35668, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35725, + "token_id": 35669, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35726, + "token_id": 35670, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35727, + "token_id": 35671, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35728, + "token_id": 35672, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35729, + "token_id": 35673, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35730, + "token_id": 35674, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35731, + "token_id": 35675, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gradar", - "token_id": 35732, + "token_id": 35676, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35733, + "token_id": 35677, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35734, + "token_id": 35678, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35735, + "token_id": 35679, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35736, + "token_id": 35680, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35737, + "token_id": 35681, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35738, + "token_id": 35682, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "{{", - "token_id": 35739, + "token_id": 35683, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "cite", - "token_id": 35740, + "token_id": 35684, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 35741, + "token_id": 35685, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35742, + "token_id": 35686, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "last", - "token_id": 35743, + "token_id": 35687, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35744, + "token_id": 35688, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "zawodniak", - "token_id": 35745, + "token_id": 35689, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35746, + "token_id": 35690, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "first", - "token_id": 35747, + "token_id": 35691, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35748, + "token_id": 35692, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "melanie", - "token_id": 35749, + "token_id": 35693, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35750, + "token_id": 35694, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35751, + "token_id": 35695, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35752, + "token_id": 35696, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "september", - "token_id": 35753, + "token_id": 35697, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "13", - "token_id": 35754, + "token_id": 35698, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 35755, + "token_id": 35699, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2022", - "token_id": 35756, + "token_id": 35700, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35757, + "token_id": 35701, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "title", - "token_id": 35758, + "token_id": 35702, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35759, + "token_id": 35703, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35760, + "token_id": 35704, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35761, + "token_id": 35705, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35762, + "token_id": 35706, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "–", - "token_id": 35763, + "token_id": 35707, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35764, + "token_id": 35708, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35765, + "token_id": 35709, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35766, + "token_id": 35710, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35767, + "token_id": 35711, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "http", - "token_id": 35768, + "token_id": 35712, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35769, + "token_id": 35713, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35770, + "token_id": 35714, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35771, + "token_id": 35715, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "www", - "token_id": 35772, + "token_id": 35716, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35773, + "token_id": 35717, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nintendoworldreport", - "token_id": 35774, + "token_id": 35718, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35775, + "token_id": 35719, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 35776, + "token_id": 35720, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35777, + "token_id": 35721, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35778, + "token_id": 35722, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35779, + "token_id": 35723, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "61554", - "token_id": 35780, + "token_id": 35724, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35781, + "token_id": 35725, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35782, + "token_id": 35726, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35783, + "token_id": 35727, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35784, + "token_id": 35728, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35785, + "token_id": 35729, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "switch", - "token_id": 35786, + "token_id": 35730, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35787, + "token_id": 35731, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35788, + "token_id": 35732, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35789, + "token_id": 35733, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35790, + "token_id": 35734, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35791, + "token_id": 35735, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "status", - "token_id": 35792, + "token_id": 35736, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35793, + "token_id": 35737, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "live", - "token_id": 35794, + "token_id": 35738, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35795, + "token_id": 35739, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 35796, + "token_id": 35740, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35797, + "token_id": 35741, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "url", - "token_id": 35798, + "token_id": 35742, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35799, + "token_id": 35743, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "https", - "token_id": 35800, + "token_id": 35744, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35801, + "token_id": 35745, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35802, + "token_id": 35746, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35803, + "token_id": 35747, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 35804, + "token_id": 35748, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35805, + "token_id": 35749, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 35806, + "token_id": 35750, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35807, + "token_id": 35751, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "org", - "token_id": 35808, + "token_id": 35752, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35809, + "token_id": 35753, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "web", - "token_id": 35810, + "token_id": 35754, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35811, + "token_id": 35755, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "20250430073536", - "token_id": 35812, + "token_id": 35756, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35813, + "token_id": 35757, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "http", - "token_id": 35814, + "token_id": 35758, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ":", - "token_id": 35815, + "token_id": 35759, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35816, + "token_id": 35760, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35817, + "token_id": 35761, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "www", - "token_id": 35818, + "token_id": 35762, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35819, + "token_id": 35763, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nintendoworldreport", - "token_id": 35820, + "token_id": 35764, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35821, + "token_id": 35765, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "com", - "token_id": 35822, + "token_id": 35766, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35823, + "token_id": 35767, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35824, + "token_id": 35768, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35825, + "token_id": 35769, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "61554", - "token_id": 35826, + "token_id": 35770, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35827, + "token_id": 35771, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 35828, + "token_id": 35772, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35829, + "token_id": 35773, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "3", - "token_id": 35830, + "token_id": 35774, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35831, + "token_id": 35775, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "switch", - "token_id": 35832, + "token_id": 35776, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35833, + "token_id": 35777, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "review", - "token_id": 35834, + "token_id": 35778, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35835, + "token_id": 35779, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "archive", - "token_id": 35836, + "token_id": 35780, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35837, + "token_id": 35781, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35838, + "token_id": 35782, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35839, + "token_id": 35783, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "april", - "token_id": 35840, + "token_id": 35784, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "30", - "token_id": 35841, + "token_id": 35785, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 35842, + "token_id": 35786, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2025", - "token_id": 35843, + "token_id": 35787, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35844, + "token_id": 35788, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "access", - "token_id": 35845, + "token_id": 35789, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "-", - "token_id": 35846, + "token_id": 35790, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "date", - "token_id": 35847, + "token_id": 35791, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35848, + "token_id": 35792, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "january", - "token_id": 35849, + "token_id": 35793, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "5", - "token_id": 35850, + "token_id": 35794, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 35851, + "token_id": 35795, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2026", - "token_id": 35852, + "token_id": 35796, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35853, + "token_id": 35797, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "website", - "token_id": 35854, + "token_id": 35798, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35855, + "token_id": 35799, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 35856, + "token_id": 35800, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "world", - "token_id": 35857, + "token_id": 35801, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "report", - "token_id": 35858, + "token_id": 35802, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "}}", - "token_id": 35859, + "token_id": 35803, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35860, + "token_id": 35804, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35861, + "token_id": 35805, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35862, + "token_id": 35806, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35863, + "token_id": 35807, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "with", - "token_id": 35864, + "token_id": 35808, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "some", - "token_id": 35865, + "token_id": 35809, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "reporting", - "token_id": 35866, + "token_id": 35810, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 35867, + "token_id": 35811, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307198,133 +306706,133 @@ }, { "str": "higher", - "token_id": 35868, + "token_id": 35812, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "difficulty", - "token_id": 35869, + "token_id": 35813, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 35870, + "token_id": 35814, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "story", - "token_id": 35871, + "token_id": 35815, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "modes", - "token_id": 35872, + "token_id": 35816, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35873, + "token_id": 35817, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35874, + "token_id": 35818, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35875, + "token_id": 35819, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35876, + "token_id": 35820, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35877, + "token_id": 35821, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35878, + "token_id": 35822, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gspot", - "token_id": 35879, + "token_id": 35823, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35880, + "token_id": 35824, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35881, + "token_id": 35825, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35882, + "token_id": 35826, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35883, + "token_id": 35827, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35884, + "token_id": 35828, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35885, + "token_id": 35829, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35886, + "token_id": 35830, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307333,42 +306841,42 @@ }, { "str": "\"", - "token_id": 35887, + "token_id": 35831, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gradar", - "token_id": 35888, + "token_id": 35832, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35889, + "token_id": 35833, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35890, + "token_id": 35834, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35891, + "token_id": 35835, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "while", - "token_id": 35892, + "token_id": 35836, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307377,7 +306885,7 @@ }, { "str": "some", - "token_id": 35893, + "token_id": 35837, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307386,105 +306894,105 @@ }, { "str": "commended", - "token_id": 35894, + "token_id": 35838, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35895, + "token_id": 35839, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "extent", - "token_id": 35896, + "token_id": 35840, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 35897, + "token_id": 35841, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "which", - "token_id": 35898, + "token_id": 35842, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35899, + "token_id": 35843, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "campaign", - "token_id": 35900, + "token_id": 35844, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "could", - "token_id": 35901, + "token_id": 35845, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "prepare", - "token_id": 35902, + "token_id": 35846, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "players", - "token_id": 35903, + "token_id": 35847, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "for", - "token_id": 35904, + "token_id": 35848, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 35905, + "token_id": 35849, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "online", - "token_id": 35906, + "token_id": 35850, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "modes", - "token_id": 35907, + "token_id": 35851, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 35908, + "token_id": 35852, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307493,357 +307001,420 @@ }, { "str": "<", - "token_id": 35909, + "token_id": 35853, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35910, + "token_id": 35854, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35911, + "token_id": 35855, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35912, + "token_id": 35856, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35913, + "token_id": 35857, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "gi", - "token_id": 35914, + "token_id": 35858, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35915, + "token_id": 35859, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35916, + "token_id": 35860, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35917, + "token_id": 35861, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35918, + "token_id": 35862, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35919, + "token_id": 35863, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35920, + "token_id": 35864, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35921, + "token_id": 35865, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35922, + "token_id": 35866, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "eurog", - "token_id": 35923, + "token_id": 35867, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35924, + "token_id": 35868, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35925, + "token_id": 35869, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35926, + "token_id": 35870, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35927, + "token_id": 35871, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35928, + "token_id": 35872, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35929, + "token_id": 35873, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35930, + "token_id": 35874, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35931, + "token_id": 35875, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "vg247", - "token_id": 35932, + "token_id": 35876, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35933, + "token_id": 35877, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35934, + "token_id": 35878, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35935, + "token_id": 35879, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 35880, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 35881, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 35882, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "destructoid", - "token_id": 35936, + "token_id": 35883, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 35884, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 35885, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 35886, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 35887, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 35888, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 35889, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "s", - "token_id": 35937, + "token_id": 35890, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "chris", - "token_id": 35938, + "token_id": 35891, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "carter", - "token_id": 35939, + "token_id": 35892, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "perceived", - "token_id": 35940, + "token_id": 35893, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "it", - "token_id": 35941, + "token_id": 35894, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "as", - "token_id": 35942, + "token_id": 35895, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "leaning", - "token_id": 35943, + "token_id": 35896, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "too", - "token_id": 35944, + "token_id": 35897, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "heavily", - "token_id": 35945, + "token_id": 35898, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "on", - "token_id": 35946, + "token_id": 35899, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "being", - "token_id": 35947, + "token_id": 35900, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "a", - "token_id": 35948, + "token_id": 35901, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "straightforward", - "token_id": 35949, + "token_id": 35902, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 35950, + "token_id": 35903, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "tutorial", - "token_id": 35951, + "token_id": 35904, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "(", - "token_id": 35952, + "token_id": 35905, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "video", - "token_id": 35953, + "token_id": 35906, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "games", - "token_id": 35954, + "token_id": 35907, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ")", - "token_id": 35955, + "token_id": 35908, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 35956, + "token_id": 35909, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "tutorial", - "token_id": 35957, + "token_id": 35910, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 35958, + "token_id": 35911, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35959, + "token_id": 35912, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307852,7 +307423,7 @@ }, { "str": "<", - "token_id": 35960, + "token_id": 35913, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307861,7 +307432,7 @@ }, { "str": "ref", - "token_id": 35961, + "token_id": 35914, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307870,7 +307441,7 @@ }, { "str": "name", - "token_id": 35962, + "token_id": 35915, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307879,7 +307450,7 @@ }, { "str": "=", - "token_id": 35963, + "token_id": 35916, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307888,7 +307459,7 @@ }, { "str": "\"", - "token_id": 35964, + "token_id": 35917, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307897,7 +307468,7 @@ }, { "str": "destruct", - "token_id": 35965, + "token_id": 35918, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307906,7 +307477,7 @@ }, { "str": "\"", - "token_id": 35966, + "token_id": 35919, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307915,7 +307486,7 @@ }, { "str": "/", - "token_id": 35967, + "token_id": 35920, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307924,7 +307495,7 @@ }, { "str": ">", - "token_id": 35968, + "token_id": 35921, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307933,7 +307504,7 @@ }, { "str": "carter", - "token_id": 35969, + "token_id": 35922, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307942,14 +307513,14 @@ }, { "str": ",", - "token_id": 35970, + "token_id": 35923, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "however", - "token_id": 35971, + "token_id": 35924, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307958,7 +307529,7 @@ }, { "str": ",", - "token_id": 35972, + "token_id": 35925, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307967,7 +307538,7 @@ }, { "str": "praised", - "token_id": 35973, + "token_id": 35926, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307976,7 +307547,7 @@ }, { "str": "how", - "token_id": 35974, + "token_id": 35927, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307985,7 +307556,7 @@ }, { "str": "return", - "token_id": 35975, + "token_id": 35928, "o_rev_id": 1334176815, "in": [], "out": [ @@ -307994,7 +307565,7 @@ }, { "str": "of", - "token_id": 35976, + "token_id": 35929, "o_rev_id": 1334176815, "in": [], "out": [ @@ -308003,14 +307574,14 @@ }, { "str": "the", - "token_id": 35977, + "token_id": 35930, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mammalians", - "token_id": 35978, + "token_id": 35931, "o_rev_id": 1334176815, "in": [], "out": [ @@ -308019,14 +307590,14 @@ }, { "str": "'", - "token_id": 35979, + "token_id": 35932, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "levels", - "token_id": 35980, + "token_id": 35933, "o_rev_id": 1334176815, "in": [], "out": [ @@ -308035,7 +307606,7 @@ }, { "str": "appeared", - "token_id": 35981, + "token_id": 35934, "o_rev_id": 1334176815, "in": [], "out": [ @@ -308044,7 +307615,7 @@ }, { "str": "to", - "token_id": 35982, + "token_id": 35935, "o_rev_id": 1334176815, "in": [], "out": [ @@ -308053,7 +307624,7 @@ }, { "str": "be", - "token_id": 35983, + "token_id": 35936, "o_rev_id": 1334176815, "in": [], "out": [ @@ -308062,7 +307633,7 @@ }, { "str": "tailored", - "token_id": 35984, + "token_id": 35937, "o_rev_id": 1334176815, "in": [], "out": [ @@ -308071,434 +307642,462 @@ }, { "str": "for", - "token_id": 35985, + "token_id": 35938, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 35986, + "token_id": 35939, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "speedrunning", - "token_id": 35987, + "token_id": 35940, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 35988, + "token_id": 35941, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 35989, + "token_id": 35942, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 35990, + "token_id": 35943, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 35991, + "token_id": 35944, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 35992, + "token_id": 35945, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 35993, + "token_id": 35946, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35994, + "token_id": 35947, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "destruct", - "token_id": 35995, + "token_id": 35948, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 35996, + "token_id": 35949, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 35997, + "token_id": 35950, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 35998, + "token_id": 35951, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "some", - "token_id": 35999, + "token_id": 35952, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "reviewers", - "token_id": 36000, + "token_id": 35953, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "compared", - "token_id": 36001, + "token_id": 35954, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 36002, + "token_id": 35955, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "level", - "token_id": 36003, + "token_id": 35956, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "design", - "token_id": 36004, + "token_id": 35957, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "to", - "token_id": 36005, + "token_id": 35958, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "that", - "token_id": 36006, + "token_id": 35959, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "of", - "token_id": 36007, + "token_id": 35960, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 36008, + "token_id": 35961, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "greater", - "token_id": 36009, + "token_id": 35962, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "[[", - "token_id": 36010, + "token_id": 35963, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mario", - "token_id": 36011, + "token_id": 35964, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "(", - "token_id": 36012, + "token_id": 35965, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "franchise", - "token_id": 36013, + "token_id": 35966, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ")", - "token_id": 36014, + "token_id": 35967, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "|", - "token_id": 36015, + "token_id": 35968, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 36016, + "token_id": 35969, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 36017, + "token_id": 35970, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mario", - "token_id": 36018, + "token_id": 35971, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 36019, + "token_id": 35972, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 36020, + "token_id": 35973, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "franchise", - "token_id": 36021, + "token_id": 35974, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "]]", - "token_id": 36022, + "token_id": 35975, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ",", - "token_id": 36023, + "token_id": 35976, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "particularly", - "token_id": 36024, + "token_id": 35977, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "the", - "token_id": 36025, + "token_id": 35978, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "2002", - "token_id": 36026, + "token_id": 35979, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "entry", - "token_id": 36027, + "token_id": 35980, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 35981, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 35982, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 35983, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "super", - "token_id": 36028, + "token_id": 35984, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "mario", - "token_id": 36029, + "token_id": 35985, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "sunshine", - "token_id": 36030, + "token_id": 35986, + "o_rev_id": 1334176815, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 35987, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ".", - "token_id": 36031, + "token_id": 35988, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 36032, + "token_id": 35989, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "'", - "token_id": 36033, + "token_id": 35990, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 36034, + "token_id": 35991, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 36035, + "token_id": 35992, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 36036, + "token_id": 35993, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 36037, + "token_id": 35994, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 36038, + "token_id": 35995, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "eurog", - "token_id": 36039, + "token_id": 35996, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "\"", - "token_id": 36040, + "token_id": 35997, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "/", - "token_id": 36041, + "token_id": 35998, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": ">", - "token_id": 36042, + "token_id": 35999, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "<", - "token_id": 36043, + "token_id": 36000, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "ref", - "token_id": 36044, + "token_id": 36001, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "name", - "token_id": 36045, + "token_id": 36002, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "=", - "token_id": 36046, + "token_id": 36003, "o_rev_id": 1334176815, "in": [], "out": [ @@ -308507,9541 +308106,9541 @@ }, { "str": "\"", - "token_id": 36047, + "token_id": 36004, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "tg", - "token_id": 36048, + "token_id": 36005, "o_rev_id": 1334176815, "in": [], "out": [] }, { "str": "expanded", - "token_id": 36049, + "token_id": 36006, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36050, + "token_id": 36007, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36051, + "token_id": 36008, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36052, + "token_id": 36009, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "{{", - "token_id": 36053, + "token_id": 36010, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "cite", - "token_id": 36054, + "token_id": 36011, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "av", - "token_id": 36055, + "token_id": 36012, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "media", - "token_id": 36056, + "token_id": 36013, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36057, + "token_id": 36014, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36058, + "token_id": 36015, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36059, + "token_id": 36016, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36060, + "token_id": 36017, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36061, + "token_id": 36018, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36062, + "token_id": 36019, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36063, + "token_id": 36020, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "www", - "token_id": 36064, + "token_id": 36021, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36065, + "token_id": 36022, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "youtube", - "token_id": 36066, + "token_id": 36023, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36067, + "token_id": 36024, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "com", - "token_id": 36068, + "token_id": 36025, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36069, + "token_id": 36026, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "watch", - "token_id": 36070, + "token_id": 36027, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "?", - "token_id": 36071, + "token_id": 36028, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "v", - "token_id": 36072, + "token_id": 36029, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36073, + "token_id": 36030, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gnian06esae", - "token_id": 36074, + "token_id": 36031, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36075, + "token_id": 36032, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "title", - "token_id": 36076, + "token_id": 36033, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36077, + "token_id": 36034, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36078, + "token_id": 36035, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2", - "token_id": 36079, + "token_id": 36036, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "direct", - "token_id": 36080, + "token_id": 36037, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36081, + "token_id": 36038, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "everything", - "token_id": 36082, + "token_id": 36039, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "you", - "token_id": 36083, + "token_id": 36040, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "need", - "token_id": 36084, + "token_id": 36041, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "to", - "token_id": 36085, + "token_id": 36042, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "know", - "token_id": 36086, + "token_id": 36043, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "!", - "token_id": 36087, + "token_id": 36044, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36088, + "token_id": 36045, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36089, + "token_id": 36046, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36090, + "token_id": 36047, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36091, + "token_id": 36048, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36092, + "token_id": 36049, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36093, + "token_id": 36050, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36094, + "token_id": 36051, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36095, + "token_id": 36052, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36096, + "token_id": 36053, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36097, + "token_id": 36054, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36098, + "token_id": 36055, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36099, + "token_id": 36056, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36100, + "token_id": 36057, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "org", - "token_id": 36101, + "token_id": 36058, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36102, + "token_id": 36059, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36103, + "token_id": 36060, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36104, + "token_id": 36061, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "20251227055942", - "token_id": 36105, + "token_id": 36062, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36106, + "token_id": 36063, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36107, + "token_id": 36064, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36108, + "token_id": 36065, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36109, + "token_id": 36066, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36110, + "token_id": 36067, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "www", - "token_id": 36111, + "token_id": 36068, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36112, + "token_id": 36069, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "youtube", - "token_id": 36113, + "token_id": 36070, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36114, + "token_id": 36071, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "com", - "token_id": 36115, + "token_id": 36072, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36116, + "token_id": 36073, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "watch", - "token_id": 36117, + "token_id": 36074, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "?", - "token_id": 36118, + "token_id": 36075, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "v", - "token_id": 36119, + "token_id": 36076, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36120, + "token_id": 36077, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gnian06esae", - "token_id": 36121, + "token_id": 36078, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36122, + "token_id": 36079, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36123, + "token_id": 36080, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36124, + "token_id": 36081, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36125, + "token_id": 36082, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36126, + "token_id": 36083, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "27", - "token_id": 36127, + "token_id": 36084, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "december", - "token_id": 36128, + "token_id": 36085, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2025", - "token_id": 36129, + "token_id": 36086, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36130, + "token_id": 36087, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36131, + "token_id": 36088, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36132, + "token_id": 36089, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "6", - "token_id": 36133, + "token_id": 36090, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "july", - "token_id": 36134, + "token_id": 36091, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2017", - "token_id": 36135, + "token_id": 36092, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36136, + "token_id": 36093, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "last", - "token_id": 36137, + "token_id": 36094, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36138, + "token_id": 36095, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 36139, + "token_id": 36096, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "of", - "token_id": 36140, + "token_id": 36097, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "america", - "token_id": 36141, + "token_id": 36098, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36142, + "token_id": 36099, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "access", - "token_id": 36143, + "token_id": 36100, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36144, + "token_id": 36101, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36145, + "token_id": 36102, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36146, + "token_id": 36103, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "22", - "token_id": 36147, + "token_id": 36104, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "january", - "token_id": 36148, + "token_id": 36105, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2026", - "token_id": 36149, + "token_id": 36106, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36150, + "token_id": 36107, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "via", - "token_id": 36151, + "token_id": 36108, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36152, + "token_id": 36109, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "youtube", - "token_id": 36153, + "token_id": 36110, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36154, + "token_id": 36111, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36155, + "token_id": 36112, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36156, + "token_id": 36113, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "status", - "token_id": 36157, + "token_id": 36114, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36158, + "token_id": 36115, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "live", - "token_id": 36159, + "token_id": 36116, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "}}", - "token_id": 36160, + "token_id": 36117, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36161, + "token_id": 36118, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36162, + "token_id": 36119, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36163, + "token_id": 36120, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36164, + "token_id": 36121, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36165, + "token_id": 36122, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36166, + "token_id": 36123, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36167, + "token_id": 36124, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "{{", - "token_id": 36168, + "token_id": 36125, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "cite", - "token_id": 36169, + "token_id": 36126, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36170, + "token_id": 36127, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36171, + "token_id": 36128, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "last1", - "token_id": 36172, + "token_id": 36129, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36173, + "token_id": 36130, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "whaling", - "token_id": 36174, + "token_id": 36131, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36175, + "token_id": 36132, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "first1", - "token_id": 36176, + "token_id": 36133, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36177, + "token_id": 36134, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "jacob", - "token_id": 36178, + "token_id": 36135, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36179, + "token_id": 36136, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36180, + "token_id": 36137, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "15", - "token_id": 36181, + "token_id": 36138, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "september", - "token_id": 36182, + "token_id": 36139, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2022", - "token_id": 36183, + "token_id": 36140, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36184, + "token_id": 36141, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "title", - "token_id": 36185, + "token_id": 36142, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36186, + "token_id": 36143, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tips", - "token_id": 36187, + "token_id": 36144, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "and", - "token_id": 36188, + "token_id": 36145, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tricks", - "token_id": 36189, + "token_id": 36146, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "for", - "token_id": 36190, + "token_id": 36147, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "turf", - "token_id": 36191, + "token_id": 36148, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "war", - "token_id": 36192, + "token_id": 36149, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "in", - "token_id": 36193, + "token_id": 36150, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36194, + "token_id": 36151, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36195, + "token_id": 36152, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36196, + "token_id": 36153, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36197, + "token_id": 36154, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36198, + "token_id": 36155, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36199, + "token_id": 36156, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36200, + "token_id": 36157, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36201, + "token_id": 36158, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36202, + "token_id": 36159, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "www", - "token_id": 36203, + "token_id": 36160, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36204, + "token_id": 36161, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "thegamer", - "token_id": 36205, + "token_id": 36162, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36206, + "token_id": 36163, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "com", - "token_id": 36207, + "token_id": 36164, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36208, + "token_id": 36165, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36209, + "token_id": 36166, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36210, + "token_id": 36167, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36211, + "token_id": 36168, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36212, + "token_id": 36169, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "turf", - "token_id": 36213, + "token_id": 36170, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36214, + "token_id": 36171, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "war", - "token_id": 36215, + "token_id": 36172, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36216, + "token_id": 36173, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "guide", - "token_id": 36217, + "token_id": 36174, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36218, + "token_id": 36175, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tips", - "token_id": 36219, + "token_id": 36176, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36220, + "token_id": 36177, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tricks", - "token_id": 36221, + "token_id": 36178, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36222, + "token_id": 36179, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36223, + "token_id": 36180, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36224, + "token_id": 36181, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36225, + "token_id": 36182, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36226, + "token_id": 36183, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36227, + "token_id": 36184, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36228, + "token_id": 36185, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36229, + "token_id": 36186, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36230, + "token_id": 36187, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "org", - "token_id": 36231, + "token_id": 36188, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36232, + "token_id": 36189, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36233, + "token_id": 36190, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36234, + "token_id": 36191, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "20220926210914", - "token_id": 36235, + "token_id": 36192, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36236, + "token_id": 36193, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36237, + "token_id": 36194, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36238, + "token_id": 36195, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36239, + "token_id": 36196, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36240, + "token_id": 36197, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "www", - "token_id": 36241, + "token_id": 36198, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36242, + "token_id": 36199, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "thegamer", - "token_id": 36243, + "token_id": 36200, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36244, + "token_id": 36201, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "com", - "token_id": 36245, + "token_id": 36202, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36246, + "token_id": 36203, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36247, + "token_id": 36204, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36248, + "token_id": 36205, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36249, + "token_id": 36206, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36250, + "token_id": 36207, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "turf", - "token_id": 36251, + "token_id": 36208, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36252, + "token_id": 36209, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "war", - "token_id": 36253, + "token_id": 36210, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36254, + "token_id": 36211, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "guide", - "token_id": 36255, + "token_id": 36212, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36256, + "token_id": 36213, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tips", - "token_id": 36257, + "token_id": 36214, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36258, + "token_id": 36215, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tricks", - "token_id": 36259, + "token_id": 36216, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36260, + "token_id": 36217, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36261, + "token_id": 36218, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36262, + "token_id": 36219, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36263, + "token_id": 36220, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36264, + "token_id": 36221, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36265, + "token_id": 36222, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "26", - "token_id": 36266, + "token_id": 36223, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "september", - "token_id": 36267, + "token_id": 36224, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2022", - "token_id": 36268, + "token_id": 36225, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36269, + "token_id": 36226, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "access", - "token_id": 36270, + "token_id": 36227, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36271, + "token_id": 36228, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36272, + "token_id": 36229, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36273, + "token_id": 36230, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "22", - "token_id": 36274, + "token_id": 36231, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36275, + "token_id": 36232, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "website", - "token_id": 36276, + "token_id": 36233, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36277, + "token_id": 36234, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36278, + "token_id": 36235, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gamer", - "token_id": 36279, + "token_id": 36236, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "}}", - "token_id": 36280, + "token_id": 36237, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36281, + "token_id": 36238, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36282, + "token_id": 36239, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36283, + "token_id": 36240, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36284, + "token_id": 36241, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36285, + "token_id": 36242, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36286, + "token_id": 36243, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36287, + "token_id": 36244, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "{{", - "token_id": 36288, + "token_id": 36245, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "cite", - "token_id": 36289, + "token_id": 36246, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36290, + "token_id": 36247, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36291, + "token_id": 36248, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "last", - "token_id": 36292, + "token_id": 36249, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36293, + "token_id": 36250, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "sinha", - "token_id": 36294, + "token_id": 36251, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36295, + "token_id": 36252, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "first", - "token_id": 36296, + "token_id": 36253, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36297, + "token_id": 36254, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ravi", - "token_id": 36298, + "token_id": 36255, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36299, + "token_id": 36256, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "title", - "token_id": 36300, + "token_id": 36257, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36301, + "token_id": 36258, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36302, + "token_id": 36259, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36303, + "token_id": 36260, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "supports", - "token_id": 36304, + "token_id": 36261, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "save", - "token_id": 36305, + "token_id": 36262, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "data", - "token_id": 36306, + "token_id": 36263, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "transfer", - "token_id": 36307, + "token_id": 36264, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "from", - "token_id": 36308, + "token_id": 36265, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36309, + "token_id": 36266, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2", - "token_id": 36310, + "token_id": 36267, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36311, + "token_id": 36268, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36312, + "token_id": 36269, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36313, + "token_id": 36270, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36314, + "token_id": 36271, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36315, + "token_id": 36272, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36316, + "token_id": 36273, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36317, + "token_id": 36274, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gamingbolt", - "token_id": 36318, + "token_id": 36275, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36319, + "token_id": 36276, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "com", - "token_id": 36320, + "token_id": 36277, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36321, + "token_id": 36278, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36322, + "token_id": 36279, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36323, + "token_id": 36280, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36324, + "token_id": 36281, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36325, + "token_id": 36282, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "supports", - "token_id": 36326, + "token_id": 36283, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36327, + "token_id": 36284, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "save", - "token_id": 36328, + "token_id": 36285, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36329, + "token_id": 36286, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "data", - "token_id": 36330, + "token_id": 36287, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36331, + "token_id": 36288, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "transfer", - "token_id": 36332, + "token_id": 36289, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36333, + "token_id": 36290, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "from", - "token_id": 36334, + "token_id": 36291, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36335, + "token_id": 36292, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36336, + "token_id": 36293, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36337, + "token_id": 36294, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2", - "token_id": 36338, + "token_id": 36295, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36339, + "token_id": 36296, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36340, + "token_id": 36297, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36341, + "token_id": 36298, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "15", - "token_id": 36342, + "token_id": 36299, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "august", - "token_id": 36343, + "token_id": 36300, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2022", - "token_id": 36344, + "token_id": 36301, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36345, + "token_id": 36302, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "access", - "token_id": 36346, + "token_id": 36303, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36347, + "token_id": 36304, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36348, + "token_id": 36305, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36349, + "token_id": 36306, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "22", - "token_id": 36350, + "token_id": 36307, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "january", - "token_id": 36351, + "token_id": 36308, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2026", - "token_id": 36352, + "token_id": 36309, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36353, + "token_id": 36310, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36354, + "token_id": 36311, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36355, + "token_id": 36312, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "status", - "token_id": 36356, + "token_id": 36313, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36357, + "token_id": 36314, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "live", - "token_id": 36358, + "token_id": 36315, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36359, + "token_id": 36316, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36360, + "token_id": 36317, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36361, + "token_id": 36318, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36362, + "token_id": 36319, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36363, + "token_id": 36320, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36364, + "token_id": 36321, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36365, + "token_id": 36322, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36366, + "token_id": 36323, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36367, + "token_id": 36324, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36368, + "token_id": 36325, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36369, + "token_id": 36326, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36370, + "token_id": 36327, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36371, + "token_id": 36328, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "org", - "token_id": 36372, + "token_id": 36329, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36373, + "token_id": 36330, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36374, + "token_id": 36331, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36375, + "token_id": 36332, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "20250515070908", - "token_id": 36376, + "token_id": 36333, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36377, + "token_id": 36334, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36378, + "token_id": 36335, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36379, + "token_id": 36336, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36380, + "token_id": 36337, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36381, + "token_id": 36338, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gamingbolt", - "token_id": 36382, + "token_id": 36339, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36383, + "token_id": 36340, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "com", - "token_id": 36384, + "token_id": 36341, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36385, + "token_id": 36342, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36386, + "token_id": 36343, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36387, + "token_id": 36344, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36388, + "token_id": 36345, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36389, + "token_id": 36346, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "supports", - "token_id": 36390, + "token_id": 36347, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36391, + "token_id": 36348, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "save", - "token_id": 36392, + "token_id": 36349, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36393, + "token_id": 36350, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "data", - "token_id": 36394, + "token_id": 36351, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36395, + "token_id": 36352, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "transfer", - "token_id": 36396, + "token_id": 36353, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36397, + "token_id": 36354, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "from", - "token_id": 36398, + "token_id": 36355, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36399, + "token_id": 36356, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36400, + "token_id": 36357, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36401, + "token_id": 36358, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2", - "token_id": 36402, + "token_id": 36359, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36403, + "token_id": 36360, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36404, + "token_id": 36361, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36405, + "token_id": 36362, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36406, + "token_id": 36363, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36407, + "token_id": 36364, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "15", - "token_id": 36408, + "token_id": 36365, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "may", - "token_id": 36409, + "token_id": 36366, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2025", - "token_id": 36410, + "token_id": 36367, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36411, + "token_id": 36368, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "website", - "token_id": 36412, + "token_id": 36369, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36413, + "token_id": 36370, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gamingbolt", - "token_id": 36414, + "token_id": 36371, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36415, + "token_id": 36372, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "language", - "token_id": 36416, + "token_id": 36373, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36417, + "token_id": 36374, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "en", - "token_id": 36418, + "token_id": 36375, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36419, + "token_id": 36376, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "us", - "token_id": 36420, + "token_id": 36377, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "}}", - "token_id": 36421, + "token_id": 36378, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36422, + "token_id": 36379, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36423, + "token_id": 36380, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36424, + "token_id": 36381, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36425, + "token_id": 36382, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36426, + "token_id": 36383, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "last1", - "token_id": 36427, + "token_id": 36384, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36428, + "token_id": 36385, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "whaling", - "token_id": 36429, + "token_id": 36386, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36430, + "token_id": 36387, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "first1", - "token_id": 36431, + "token_id": 36388, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36432, + "token_id": 36389, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "jacob", - "token_id": 36433, + "token_id": 36390, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36434, + "token_id": 36391, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36435, + "token_id": 36392, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36436, + "token_id": 36393, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36437, + "token_id": 36394, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "october", - "token_id": 36438, + "token_id": 36395, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2022", - "token_id": 36439, + "token_id": 36396, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "how", - "token_id": 36440, + "token_id": 36397, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "to", - "token_id": 36441, + "token_id": 36398, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "play", - "token_id": 36442, + "token_id": 36399, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "clam", - "token_id": 36443, + "token_id": 36400, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "blitz", - "token_id": 36444, + "token_id": 36401, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "anarchy", - "token_id": 36445, + "token_id": 36402, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "battles", - "token_id": 36446, + "token_id": 36403, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "in", - "token_id": 36447, + "token_id": 36404, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "thegamer", - "token_id": 36448, + "token_id": 36405, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36449, + "token_id": 36406, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "clam", - "token_id": 36450, + "token_id": 36407, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36451, + "token_id": 36408, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "blitz", - "token_id": 36452, + "token_id": 36409, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36453, + "token_id": 36410, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ranked", - "token_id": 36454, + "token_id": 36411, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36455, + "token_id": 36412, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tips", - "token_id": 36456, + "token_id": 36413, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36457, + "token_id": 36414, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tricks", - "token_id": 36458, + "token_id": 36415, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36459, + "token_id": 36416, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "guide", - "token_id": 36460, + "token_id": 36417, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "30", - "token_id": 36461, + "token_id": 36418, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "december", - "token_id": 36462, + "token_id": 36419, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2025", - "token_id": 36463, + "token_id": 36420, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36464, + "token_id": 36421, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gamer", - "token_id": 36465, + "token_id": 36422, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "}}", - "token_id": 36466, + "token_id": 36423, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36467, + "token_id": 36424, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36468, + "token_id": 36425, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36469, + "token_id": 36426, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36470, + "token_id": 36427, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tower", - "token_id": 36471, + "token_id": 36428, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "control", - "token_id": 36472, + "token_id": 36429, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "requires", - "token_id": 36473, + "token_id": 36430, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "to", - "token_id": 36474, + "token_id": 36431, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "a", - "token_id": 36475, + "token_id": 36432, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "goal", - "token_id": 36476, + "token_id": 36433, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "at", - "token_id": 36477, + "token_id": 36434, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36478, + "token_id": 36435, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "enemy", - "token_id": 36479, + "token_id": 36436, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36480, + "token_id": 36437, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "s", - "token_id": 36481, + "token_id": 36438, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "base", - "token_id": 36482, + "token_id": 36439, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36483, + "token_id": 36440, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36484, + "token_id": 36441, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36485, + "token_id": 36442, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36486, + "token_id": 36443, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "{{", - "token_id": 36487, + "token_id": 36444, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "cite", - "token_id": 36488, + "token_id": 36445, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36489, + "token_id": 36446, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36490, + "token_id": 36447, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "last1", - "token_id": 36491, + "token_id": 36448, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36492, + "token_id": 36449, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "whaling", - "token_id": 36493, + "token_id": 36450, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36494, + "token_id": 36451, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "first1", - "token_id": 36495, + "token_id": 36452, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36496, + "token_id": 36453, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "jacob", - "token_id": 36497, + "token_id": 36454, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36498, + "token_id": 36455, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "october", - "token_id": 36499, + "token_id": 36456, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36500, + "token_id": 36457, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "title", - "token_id": 36501, + "token_id": 36458, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36502, + "token_id": 36459, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "how", - "token_id": 36503, + "token_id": 36460, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "to", - "token_id": 36504, + "token_id": 36461, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "play", - "token_id": 36505, + "token_id": 36462, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tower", - "token_id": 36506, + "token_id": 36463, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "control", - "token_id": 36507, + "token_id": 36464, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "anarchy", - "token_id": 36508, + "token_id": 36465, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "battles", - "token_id": 36509, + "token_id": 36466, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "in", - "token_id": 36510, + "token_id": 36467, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36511, + "token_id": 36468, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36512, + "token_id": 36469, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36513, + "token_id": 36470, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36514, + "token_id": 36471, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "thegamer", - "token_id": 36515, + "token_id": 36472, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36516, + "token_id": 36473, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tower", - "token_id": 36517, + "token_id": 36474, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36518, + "token_id": 36475, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "control", - "token_id": 36519, + "token_id": 36476, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36520, + "token_id": 36477, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ranked", - "token_id": 36521, + "token_id": 36478, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36522, + "token_id": 36479, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "guide", - "token_id": 36523, + "token_id": 36480, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36524, + "token_id": 36481, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tips", - "token_id": 36525, + "token_id": 36482, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36526, + "token_id": 36483, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "tricks", - "token_id": 36527, + "token_id": 36484, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36528, + "token_id": 36485, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "access", - "token_id": 36529, + "token_id": 36486, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36530, + "token_id": 36487, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36531, + "token_id": 36488, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "30", - "token_id": 36532, + "token_id": 36489, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "december", - "token_id": 36533, + "token_id": 36490, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2025", - "token_id": 36534, + "token_id": 36491, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36535, + "token_id": 36492, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "website", - "token_id": 36536, + "token_id": 36493, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36537, + "token_id": 36494, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36538, + "token_id": 36495, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gamer", - "token_id": 36539, + "token_id": 36496, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "}}", - "token_id": 36540, + "token_id": 36497, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36541, + "token_id": 36498, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36542, + "token_id": 36499, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36543, + "token_id": 36500, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "each", - "token_id": 36544, + "token_id": 36501, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "match", - "token_id": 36545, + "token_id": 36502, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "known", - "token_id": 36546, + "token_id": 36503, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "a", - "token_id": 36547, + "token_id": 36504, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36548, + "token_id": 36505, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "unique", - "token_id": 36549, + "token_id": 36506, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36550, + "token_id": 36507, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "event", - "token_id": 36551, + "token_id": 36508, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36552, + "token_id": 36509, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "specific", - "token_id": 36553, + "token_id": 36510, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "boss", - "token_id": 36554, + "token_id": 36511, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "types", - "token_id": 36555, + "token_id": 36512, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nlife", - "token_id": 36556, + "token_id": 36513, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36557, + "token_id": 36514, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "last", - "token_id": 36558, + "token_id": 36515, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36559, + "token_id": 36516, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "stalberg", - "token_id": 36560, + "token_id": 36517, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36561, + "token_id": 36518, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "first", - "token_id": 36562, + "token_id": 36519, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36563, + "token_id": 36520, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "allison", - "token_id": 36564, + "token_id": 36521, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36565, + "token_id": 36522, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36566, + "token_id": 36523, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36567, + "token_id": 36524, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "27", - "token_id": 36568, + "token_id": 36525, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "september", - "token_id": 36569, + "token_id": 36526, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2022", - "token_id": 36570, + "token_id": 36527, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36571, + "token_id": 36528, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "how", - "token_id": 36572, + "token_id": 36529, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "to", - "token_id": 36573, + "token_id": 36530, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "defeat", - "token_id": 36574, + "token_id": 36531, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "every", - "token_id": 36575, + "token_id": 36532, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "boss", - "token_id": 36576, + "token_id": 36533, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "and", - "token_id": 36577, + "token_id": 36534, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "event", - "token_id": 36578, + "token_id": 36535, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "in", - "token_id": 36579, + "token_id": 36536, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "salmon", - "token_id": 36580, + "token_id": 36537, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "run", - "token_id": 36581, + "token_id": 36538, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gamerant", - "token_id": 36582, + "token_id": 36539, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36583, + "token_id": 36540, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "how", - "token_id": 36584, + "token_id": 36541, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36585, + "token_id": 36542, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "to", - "token_id": 36586, + "token_id": 36543, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36587, + "token_id": 36544, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "defeat", - "token_id": 36588, + "token_id": 36545, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36589, + "token_id": 36546, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "each", - "token_id": 36590, + "token_id": 36547, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36591, + "token_id": 36548, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "boss", - "token_id": 36592, + "token_id": 36549, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36593, + "token_id": 36550, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "in", - "token_id": 36594, + "token_id": 36551, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36595, + "token_id": 36552, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "salmon", - "token_id": 36596, + "token_id": 36553, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36597, + "token_id": 36554, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "run", - "token_id": 36598, + "token_id": 36555, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36599, + "token_id": 36556, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36600, + "token_id": 36557, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "status", - "token_id": 36601, + "token_id": 36558, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36602, + "token_id": 36559, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "live", - "token_id": 36603, + "token_id": 36560, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "20230505003540", - "token_id": 36604, + "token_id": 36561, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gamerant", - "token_id": 36605, + "token_id": 36562, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36606, + "token_id": 36563, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "how", - "token_id": 36607, + "token_id": 36564, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36608, + "token_id": 36565, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "to", - "token_id": 36609, + "token_id": 36566, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36610, + "token_id": 36567, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "defeat", - "token_id": 36611, + "token_id": 36568, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36612, + "token_id": 36569, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "each", - "token_id": 36613, + "token_id": 36570, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36614, + "token_id": 36571, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "boss", - "token_id": 36615, + "token_id": 36572, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36616, + "token_id": 36573, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "in", - "token_id": 36617, + "token_id": 36574, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36618, + "token_id": 36575, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "salmon", - "token_id": 36619, + "token_id": 36576, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36620, + "token_id": 36577, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "run", - "token_id": 36621, + "token_id": 36578, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36622, + "token_id": 36579, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36623, + "token_id": 36580, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36624, + "token_id": 36581, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36625, + "token_id": 36582, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "5", - "token_id": 36626, + "token_id": 36583, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "may", - "token_id": 36627, + "token_id": 36584, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2023", - "token_id": 36628, + "token_id": 36585, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36629, + "token_id": 36586, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "access", - "token_id": 36630, + "token_id": 36587, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36631, + "token_id": 36588, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36632, + "token_id": 36589, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36633, + "token_id": 36590, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "22", - "token_id": 36634, + "token_id": 36591, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36635, + "token_id": 36592, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "website", - "token_id": 36636, + "token_id": 36593, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36637, + "token_id": 36594, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "game", - "token_id": 36638, + "token_id": 36595, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "rant", - "token_id": 36639, + "token_id": 36596, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36640, + "token_id": 36597, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "language", - "token_id": 36641, + "token_id": 36598, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36642, + "token_id": 36599, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "en", - "token_id": 36643, + "token_id": 36600, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "}}", - "token_id": 36644, + "token_id": 36601, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36645, + "token_id": 36602, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36646, + "token_id": 36603, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36647, + "token_id": 36604, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36648, + "token_id": 36605, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "last", - "token_id": 36649, + "token_id": 36606, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36650, + "token_id": 36607, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "norman", - "token_id": 36651, + "token_id": 36608, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36652, + "token_id": 36609, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "first", - "token_id": 36653, + "token_id": 36610, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36654, + "token_id": 36611, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "jim", - "token_id": 36655, + "token_id": 36612, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "22", - "token_id": 36656, + "token_id": 36613, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "february", - "token_id": 36657, + "token_id": 36614, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2023", - "token_id": 36658, + "token_id": 36615, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "fresh", - "token_id": 36659, + "token_id": 36616, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "season", - "token_id": 36660, + "token_id": 36617, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2023", - "token_id": 36661, + "token_id": 36618, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36662, + "token_id": 36619, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "every", - "token_id": 36663, + "token_id": 36620, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "new", - "token_id": 36664, + "token_id": 36621, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "weapon", - "token_id": 36665, + "token_id": 36622, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36666, + "token_id": 36623, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "stage", - "token_id": 36667, + "token_id": 36624, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36668, + "token_id": 36625, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "and", - "token_id": 36669, + "token_id": 36626, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "feature", - "token_id": 36670, + "token_id": 36627, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 36671, + "token_id": 36628, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "guides", - "token_id": 36672, + "token_id": 36629, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "fresh", - "token_id": 36673, + "token_id": 36630, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "season", - "token_id": 36674, + "token_id": 36631, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2023", - "token_id": 36675, + "token_id": 36632, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "every", - "token_id": 36676, + "token_id": 36633, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "new", - "token_id": 36677, + "token_id": 36634, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "weapon", - "token_id": 36678, + "token_id": 36635, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "stage", - "token_id": 36679, + "token_id": 36636, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36680, + "token_id": 36637, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "and", - "token_id": 36681, + "token_id": 36638, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36682, + "token_id": 36639, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "feature", - "token_id": 36683, + "token_id": 36640, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36684, + "token_id": 36641, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36685, + "token_id": 36642, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36686, + "token_id": 36643, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "status", - "token_id": 36687, + "token_id": 36644, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36688, + "token_id": 36645, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "live", - "token_id": 36689, + "token_id": 36646, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "20260107000122", - "token_id": 36690, + "token_id": 36647, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nintendolife", - "token_id": 36691, + "token_id": 36648, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "guides", - "token_id": 36692, + "token_id": 36649, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36693, + "token_id": 36650, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36694, + "token_id": 36651, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36695, + "token_id": 36652, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36696, + "token_id": 36653, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36697, + "token_id": 36654, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "fresh", - "token_id": 36698, + "token_id": 36655, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36699, + "token_id": 36656, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "season", - "token_id": 36700, + "token_id": 36657, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36701, + "token_id": 36658, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2023", - "token_id": 36702, + "token_id": 36659, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36703, + "token_id": 36660, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "every", - "token_id": 36704, + "token_id": 36661, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36705, + "token_id": 36662, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "new", - "token_id": 36706, + "token_id": 36663, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36707, + "token_id": 36664, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "weapon", - "token_id": 36708, + "token_id": 36665, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36709, + "token_id": 36666, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "stage", - "token_id": 36710, + "token_id": 36667, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36711, + "token_id": 36668, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "and", - "token_id": 36712, + "token_id": 36669, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36713, + "token_id": 36670, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "feature", - "token_id": 36714, + "token_id": 36671, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36715, + "token_id": 36672, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36716, + "token_id": 36673, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36717, + "token_id": 36674, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36718, + "token_id": 36675, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36719, + "token_id": 36676, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "7", - "token_id": 36720, + "token_id": 36677, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "january", - "token_id": 36721, + "token_id": 36678, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2026", - "token_id": 36722, + "token_id": 36679, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36723, + "token_id": 36680, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "access", - "token_id": 36724, + "token_id": 36681, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36725, + "token_id": 36682, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36726, + "token_id": 36683, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36727, + "token_id": 36684, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "22", - "token_id": 36728, + "token_id": 36685, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "january", - "token_id": 36729, + "token_id": 36686, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2026", - "token_id": 36730, + "token_id": 36687, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36731, + "token_id": 36688, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "website", - "token_id": 36732, + "token_id": 36689, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36733, + "token_id": 36690, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "[[", - "token_id": 36734, + "token_id": 36691, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 36735, + "token_id": 36692, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "life", - "token_id": 36736, + "token_id": 36693, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "]]", - "token_id": 36737, + "token_id": 36694, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36738, + "token_id": 36695, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "language", - "token_id": 36739, + "token_id": 36696, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36740, + "token_id": 36697, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "en", - "token_id": 36741, + "token_id": 36698, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36742, + "token_id": 36699, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "gb", - "token_id": 36743, + "token_id": 36700, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "}}", - "token_id": 36744, + "token_id": 36701, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36745, + "token_id": 36702, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36746, + "token_id": 36703, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36747, + "token_id": 36704, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36748, + "token_id": 36705, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36749, + "token_id": 36706, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "plot", - "token_id": 36750, + "token_id": 36707, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "of", - "token_id": 36751, + "token_id": 36708, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36752, + "token_id": 36709, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36753, + "token_id": 36710, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36754, + "token_id": 36711, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36755, + "token_id": 36712, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36756, + "token_id": 36713, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36757, + "token_id": 36714, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36758, + "token_id": 36715, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nowiki", - "token_id": 36759, + "token_id": 36716, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36760, + "token_id": 36717, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36761, + "token_id": 36718, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36762, + "token_id": 36719, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "s", - "token_id": 36763, + "token_id": 36720, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "single", - "token_id": 36764, + "token_id": 36721, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36765, + "token_id": 36722, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "player", - "token_id": 36766, + "token_id": 36723, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "expansion", - "token_id": 36767, + "token_id": 36724, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36768, + "token_id": 36725, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36769, + "token_id": 36726, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36770, + "token_id": 36727, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "[[", - "token_id": 36771, + "token_id": 36728, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36772, + "token_id": 36729, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36773, + "token_id": 36730, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36774, + "token_id": 36731, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "side", - "token_id": 36775, + "token_id": 36732, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "order", - "token_id": 36776, + "token_id": 36733, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36777, + "token_id": 36734, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "side", - "token_id": 36778, + "token_id": 36735, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "order", - "token_id": 36779, + "token_id": 36736, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "]]", - "token_id": 36780, + "token_id": 36737, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36781, + "token_id": 36738, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36782, + "token_id": 36739, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36783, + "token_id": 36740, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "sees", - "token_id": 36784, + "token_id": 36741, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "agent", - "token_id": 36785, + "token_id": 36742, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "8", - "token_id": 36786, + "token_id": 36743, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36787, + "token_id": 36744, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36788, + "token_id": 36745, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "protagonist", - "token_id": 36789, + "token_id": 36746, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "of", - "token_id": 36790, + "token_id": 36747, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36791, + "token_id": 36748, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36792, + "token_id": 36749, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "[[", - "token_id": 36793, + "token_id": 36750, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36794, + "token_id": 36751, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2", - "token_id": 36795, + "token_id": 36752, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36796, + "token_id": 36753, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "octo", - "token_id": 36797, + "token_id": 36754, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "expansion", - "token_id": 36798, + "token_id": 36755, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "]]", - "token_id": 36799, + "token_id": 36756, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36800, + "token_id": 36757, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36801, + "token_id": 36758, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36802, + "token_id": 36759, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "awake", - "token_id": 36803, + "token_id": 36760, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "in", - "token_id": 36804, + "token_id": 36761, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "a", - "token_id": 36805, + "token_id": 36762, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "virtual", - "token_id": 36806, + "token_id": 36763, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "reality", - "token_id": 36807, + "token_id": 36764, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "called", - "token_id": 36808, + "token_id": 36765, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36809, + "token_id": 36766, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "memverse", - "token_id": 36810, + "token_id": 36767, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36811, + "token_id": 36768, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "created", - "token_id": 36812, + "token_id": 36769, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "by", - "token_id": 36813, + "token_id": 36770, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "marina", - "token_id": 36814, + "token_id": 36771, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "of", - "token_id": 36815, + "token_id": 36772, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "[[", - "token_id": 36816, + "token_id": 36773, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "pearl", - "token_id": 36817, + "token_id": 36774, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "and", - "token_id": 36818, + "token_id": 36775, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "marina", - "token_id": 36819, + "token_id": 36776, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36820, + "token_id": 36777, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "off", - "token_id": 36821, + "token_id": 36778, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36822, + "token_id": 36779, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "hook", - "token_id": 36823, + "token_id": 36780, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "]]", - "token_id": 36824, + "token_id": 36781, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ",", - "token_id": 36825, + "token_id": 36782, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "that", - "token_id": 36826, + "token_id": 36783, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "has", - "token_id": 36827, + "token_id": 36784, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "been", - "token_id": 36828, + "token_id": 36785, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "hijacked", - "token_id": 36829, + "token_id": 36786, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "by", - "token_id": 36830, + "token_id": 36787, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "rogue", - "token_id": 36831, + "token_id": 36788, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "[[", - "token_id": 36832, + "token_id": 36789, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "artificial", - "token_id": 36833, + "token_id": 36790, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "intelligence", - "token_id": 36834, + "token_id": 36791, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "]]", - "token_id": 36835, + "token_id": 36792, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "who", - "token_id": 36836, + "token_id": 36793, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "seeks", - "token_id": 36837, + "token_id": 36794, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "to", - "token_id": 36838, + "token_id": 36795, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "remove", - "token_id": 36839, + "token_id": 36796, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36840, + "token_id": 36797, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "free", - "token_id": 36841, + "token_id": 36798, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "will", - "token_id": 36842, + "token_id": 36799, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "of", - "token_id": 36843, + "token_id": 36800, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36844, + "token_id": 36801, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "people", - "token_id": 36845, + "token_id": 36802, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "in", - "token_id": 36846, + "token_id": 36803, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "the", - "token_id": 36847, + "token_id": 36804, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "real", - "token_id": 36848, + "token_id": 36805, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "world", - "token_id": 36849, + "token_id": 36806, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36850, + "token_id": 36807, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "<", - "token_id": 36851, + "token_id": 36808, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "ref", - "token_id": 36852, + "token_id": 36809, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "name", - "token_id": 36853, + "token_id": 36810, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36854, + "token_id": 36811, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "\"", - "token_id": 36855, + "token_id": 36812, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nook", - "token_id": 36856, + "token_id": 36813, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "\"", - "token_id": 36857, + "token_id": 36814, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ">", - "token_id": 36858, + "token_id": 36815, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "{{", - "token_id": 36859, + "token_id": 36816, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "cite", - "token_id": 36860, + "token_id": 36817, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36861, + "token_id": 36818, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36862, + "token_id": 36819, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "last", - "token_id": 36863, + "token_id": 36820, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36864, + "token_id": 36821, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "parker", - "token_id": 36865, + "token_id": 36822, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36866, + "token_id": 36823, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "first", - "token_id": 36867, + "token_id": 36824, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36868, + "token_id": 36825, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "isaiah", - "token_id": 36869, + "token_id": 36826, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36870, + "token_id": 36827, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36871, + "token_id": 36828, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36872, + "token_id": 36829, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "8", - "token_id": 36873, + "token_id": 36830, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "march", - "token_id": 36874, + "token_id": 36831, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2024", - "token_id": 36875, + "token_id": 36832, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36876, + "token_id": 36833, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "title", - "token_id": 36877, + "token_id": 36834, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36878, + "token_id": 36835, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36879, + "token_id": 36836, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36880, + "token_id": 36837, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36881, + "token_id": 36838, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "side", - "token_id": 36882, + "token_id": 36839, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "order", - "token_id": 36883, + "token_id": 36840, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36884, + "token_id": 36841, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "review", - "token_id": 36885, + "token_id": 36842, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36886, + "token_id": 36843, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36887, + "token_id": 36844, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36888, + "token_id": 36845, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36889, + "token_id": 36846, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36890, + "token_id": 36847, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36891, + "token_id": 36848, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36892, + "token_id": 36849, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "www", - "token_id": 36893, + "token_id": 36850, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36894, + "token_id": 36851, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nookgaming", - "token_id": 36895, + "token_id": 36852, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36896, + "token_id": 36853, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "com", - "token_id": 36897, + "token_id": 36854, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "review", - "token_id": 36898, + "token_id": 36855, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36899, + "token_id": 36856, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36900, + "token_id": 36857, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36901, + "token_id": 36858, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36902, + "token_id": 36859, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36903, + "token_id": 36860, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36904, + "token_id": 36861, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36905, + "token_id": 36862, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36906, + "token_id": 36863, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36907, + "token_id": 36864, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36908, + "token_id": 36865, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36909, + "token_id": 36866, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36910, + "token_id": 36867, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36911, + "token_id": 36868, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "org", - "token_id": 36912, + "token_id": 36869, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36913, + "token_id": 36870, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "web", - "token_id": 36914, + "token_id": 36871, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36915, + "token_id": 36872, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "20240802113909", - "token_id": 36916, + "token_id": 36873, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36917, + "token_id": 36874, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "https", - "token_id": 36918, + "token_id": 36875, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ":", - "token_id": 36919, + "token_id": 36876, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36920, + "token_id": 36877, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36921, + "token_id": 36878, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "www", - "token_id": 36922, + "token_id": 36879, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36923, + "token_id": 36880, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nookgaming", - "token_id": 36924, + "token_id": 36881, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": ".", - "token_id": 36925, + "token_id": 36882, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "com", - "token_id": 36926, + "token_id": 36883, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36927, + "token_id": 36884, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 36928, + "token_id": 36885, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36929, + "token_id": 36886, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "3", - "token_id": 36930, + "token_id": 36887, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36931, + "token_id": 36888, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "side", - "token_id": 36932, + "token_id": 36889, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36933, + "token_id": 36890, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "order", - "token_id": 36934, + "token_id": 36891, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36935, + "token_id": 36892, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "review", - "token_id": 36936, + "token_id": 36893, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "/", - "token_id": 36937, + "token_id": 36894, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36938, + "token_id": 36895, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36939, + "token_id": 36896, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36940, + "token_id": 36897, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36941, + "token_id": 36898, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36942, + "token_id": 36899, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2", - "token_id": 36943, + "token_id": 36900, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "august", - "token_id": 36944, + "token_id": 36901, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2024", - "token_id": 36945, + "token_id": 36902, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36946, + "token_id": 36903, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "access", - "token_id": 36947, + "token_id": 36904, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36948, + "token_id": 36905, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "date", - "token_id": 36949, + "token_id": 36906, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36950, + "token_id": 36907, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "22", - "token_id": 36951, + "token_id": 36908, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "january", - "token_id": 36952, + "token_id": 36909, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "2026", - "token_id": 36953, + "token_id": 36910, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36954, + "token_id": 36911, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "website", - "token_id": 36955, + "token_id": 36912, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36956, + "token_id": 36913, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "nookgaming", - "token_id": 36957, + "token_id": 36914, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36958, + "token_id": 36915, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "language", - "token_id": 36959, + "token_id": 36916, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36960, + "token_id": 36917, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "en", - "token_id": 36961, + "token_id": 36918, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36962, + "token_id": 36919, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "us", - "token_id": 36963, + "token_id": 36920, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36964, + "token_id": 36921, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36965, + "token_id": 36922, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36966, + "token_id": 36923, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36967, + "token_id": 36924, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36968, + "token_id": 36925, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36969, + "token_id": 36926, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36970, + "token_id": 36927, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "|", - "token_id": 36971, + "token_id": 36928, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "archive", - "token_id": 36972, + "token_id": 36929, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "-", - "token_id": 36973, + "token_id": 36930, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "url", - "token_id": 36974, + "token_id": 36931, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "=", - "token_id": 36975, + "token_id": 36932, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "8", - "token_id": 36976, + "token_id": 36933, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "[[", - "token_id": 36977, + "token_id": 36934, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "]]", - "token_id": 36978, + "token_id": 36935, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36979, + "token_id": 36936, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36980, + "token_id": 36937, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36981, + "token_id": 36938, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "'", - "token_id": 36982, + "token_id": 36939, "o_rev_id": 1334188654, "in": [], "out": [] }, { "str": "story", - "token_id": 36983, + "token_id": 36940, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "a", - "token_id": 36984, + "token_id": 36941, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "single", - "token_id": 36985, + "token_id": 36942, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 36986, + "token_id": 36943, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "player", - "token_id": 36987, + "token_id": 36944, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "[[", - "token_id": 36988, + "token_id": 36945, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "downloadable", - "token_id": 36989, + "token_id": 36946, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "content", - "token_id": 36990, + "token_id": 36947, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "]]", - "token_id": 36991, + "token_id": 36948, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "(", - "token_id": 36992, + "token_id": 36949, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "dlc", - "token_id": 36993, + "token_id": 36950, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ")", - "token_id": 36994, + "token_id": 36951, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "expansion", - "token_id": 36995, + "token_id": 36952, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "titled", - "token_id": 36996, + "token_id": 36953, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 36997, + "token_id": 36954, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 36998, + "token_id": 36955, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "[[", - "token_id": 36999, + "token_id": 36956, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37000, + "token_id": 36957, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "3", - "token_id": 37001, + "token_id": 36958, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37002, + "token_id": 36959, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "side", - "token_id": 37003, + "token_id": 36960, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "order", - "token_id": 37004, + "token_id": 36961, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37005, + "token_id": 36962, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "side", - "token_id": 37006, + "token_id": 36963, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "order", - "token_id": 37007, + "token_id": 36964, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "]]", - "token_id": 37008, + "token_id": 36965, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37009, + "token_id": 36966, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37010, + "token_id": 36967, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "was", - "token_id": 37011, + "token_id": 36968, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "released", - "token_id": 37012, + "token_id": 36969, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "on", - "token_id": 37013, + "token_id": 36970, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "22", - "token_id": 37014, + "token_id": 36971, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "february", - "token_id": 37015, + "token_id": 36972, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2024", - "token_id": 37016, + "token_id": 36973, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "as", - "token_id": 37017, + "token_id": 36974, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37018, + "token_id": 36975, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "second", - "token_id": 37019, + "token_id": 36976, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "half", - "token_id": 37020, + "token_id": 36977, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "of", - "token_id": 37021, + "token_id": 36978, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37022, + "token_id": 36979, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "paid", - "token_id": 37023, + "token_id": 36980, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37024, + "token_id": 36981, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37025, + "token_id": 36982, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37026, + "token_id": 36983, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "3", - "token_id": 37027, + "token_id": 36984, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "expansion", - "token_id": 37028, + "token_id": 36985, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "pass", - "token_id": 37029, + "token_id": 36986, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37030, + "token_id": 36987, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37031, + "token_id": 36988, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37032, + "token_id": 36989, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "in", - "token_id": 37033, + "token_id": 36990, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37034, + "token_id": 36991, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37035, + "token_id": 36992, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37036, + "token_id": 36993, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2", - "token_id": 37037, + "token_id": 36994, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37038, + "token_id": 36995, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37039, + "token_id": 36996, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37040, + "token_id": 36997, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37041, + "token_id": 36998, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "overall", - "token_id": 37042, + "token_id": 36999, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37043, + "token_id": 37000, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "chaotic", - "token_id": 37044, + "token_id": 37001, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37045, + "token_id": 37002, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "was", - "token_id": 37046, + "token_id": 37003, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "chosen", - "token_id": 37047, + "token_id": 37004, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "in", - "token_id": 37048, + "token_id": 37005, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "accordance", - "token_id": 37049, + "token_id": 37006, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "with", - "token_id": 37050, + "token_id": 37007, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "team", - "token_id": 37051, + "token_id": 37008, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "claiming", - "token_id": 37052, + "token_id": 37009, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "victory", - "token_id": 37053, + "token_id": 37010, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "in", - "token_id": 37054, + "token_id": 37011, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "said", - "token_id": 37055, + "token_id": 37012, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37056, + "token_id": 37013, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "collectively", - "token_id": 37057, + "token_id": 37014, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37058, + "token_id": 37015, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37059, + "token_id": 37016, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37060, + "token_id": 37017, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37061, + "token_id": 37018, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "3", - "token_id": 37062, + "token_id": 37019, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "expansion", - "token_id": 37063, + "token_id": 37020, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "pass", - "token_id": 37064, + "token_id": 37021, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37065, + "token_id": 37022, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37066, + "token_id": 37023, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37067, + "token_id": 37024, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "[[", - "token_id": 37068, + "token_id": 37025, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "thirty", - "token_id": 37069, + "token_id": 37026, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ">", - "token_id": 37070, + "token_id": 37027, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "{{", - "token_id": 37071, + "token_id": 37028, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "cite", - "token_id": 37072, + "token_id": 37029, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "web", - "token_id": 37073, + "token_id": 37030, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37074, + "token_id": 37031, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "last", - "token_id": 37075, + "token_id": 37032, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37076, + "token_id": 37033, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "yin", - "token_id": 37077, + "token_id": 37034, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37078, + "token_id": 37035, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "poole", - "token_id": 37079, + "token_id": 37036, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37080, + "token_id": 37037, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "first", - "token_id": 37081, + "token_id": 37038, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37082, + "token_id": 37039, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "wesley", - "token_id": 37083, + "token_id": 37040, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37084, + "token_id": 37041, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "date", - "token_id": 37085, + "token_id": 37042, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37086, + "token_id": 37043, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "10", - "token_id": 37087, + "token_id": 37044, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "june", - "token_id": 37088, + "token_id": 37045, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2025", - "token_id": 37089, + "token_id": 37046, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37090, + "token_id": 37047, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "title", - "token_id": 37091, + "token_id": 37048, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37092, + "token_id": 37049, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37093, + "token_id": 37050, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "just", - "token_id": 37094, + "token_id": 37051, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "announced", - "token_id": 37095, + "token_id": 37052, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37096, + "token_id": 37053, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "raiders", - "token_id": 37097, + "token_id": 37054, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "as", - "token_id": 37098, + "token_id": 37055, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "a", - "token_id": 37099, + "token_id": 37056, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "switch", - "token_id": 37100, + "token_id": 37057, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2", - "token_id": 37101, + "token_id": 37058, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "exclusive", - "token_id": 37102, + "token_id": 37059, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37103, + "token_id": 37060, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "with", - "token_id": 37104, + "token_id": 37061, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "a", - "token_id": 37105, + "token_id": 37062, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "major", - "token_id": 37106, + "token_id": 37063, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "update", - "token_id": 37107, + "token_id": 37064, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "coming", - "token_id": 37108, + "token_id": 37065, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "to", - "token_id": 37109, + "token_id": 37066, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37110, + "token_id": 37067, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "3", - "token_id": 37111, + "token_id": 37068, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37112, + "token_id": 37069, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "url", - "token_id": 37113, + "token_id": 37070, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37114, + "token_id": 37071, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "https", - "token_id": 37115, + "token_id": 37072, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37116, + "token_id": 37073, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37117, + "token_id": 37074, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37118, + "token_id": 37075, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "www", - "token_id": 37119, + "token_id": 37076, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37120, + "token_id": 37077, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ign", - "token_id": 37121, + "token_id": 37078, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37122, + "token_id": 37079, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "com", - "token_id": 37123, + "token_id": 37080, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37124, + "token_id": 37081, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "articles", - "token_id": 37125, + "token_id": 37082, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37126, + "token_id": 37083, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37127, + "token_id": 37084, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37128, + "token_id": 37085, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "just", - "token_id": 37129, + "token_id": 37086, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37130, + "token_id": 37087, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "announced", - "token_id": 37131, + "token_id": 37088, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37132, + "token_id": 37089, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37133, + "token_id": 37090, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37134, + "token_id": 37091, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "for", - "token_id": 37135, + "token_id": 37092, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37136, + "token_id": 37093, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "switch", - "token_id": 37137, + "token_id": 37094, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37138, + "token_id": 37095, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2", - "token_id": 37139, + "token_id": 37096, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37140, + "token_id": 37097, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "with", - "token_id": 37141, + "token_id": 37098, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37142, + "token_id": 37099, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "a", - "token_id": 37143, + "token_id": 37100, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37144, + "token_id": 37101, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "trailer", - "token_id": 37145, + "token_id": 37102, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37146, + "token_id": 37103, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "exclusive", - "token_id": 37147, + "token_id": 37104, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37148, + "token_id": 37105, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "to", - "token_id": 37149, + "token_id": 37106, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37150, + "token_id": 37107, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37151, + "token_id": 37108, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37152, + "token_id": 37109, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37153, + "token_id": 37110, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37154, + "token_id": 37111, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "today", - "token_id": 37155, + "token_id": 37112, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37156, + "token_id": 37113, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "app", - "token_id": 37157, + "token_id": 37114, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "https", - "token_id": 37158, + "token_id": 37115, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37159, + "token_id": 37116, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37160, + "token_id": 37117, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "web", - "token_id": 37161, + "token_id": 37118, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37162, + "token_id": 37119, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "archive", - "token_id": 37163, + "token_id": 37120, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37164, + "token_id": 37121, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "org", - "token_id": 37165, + "token_id": 37122, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37166, + "token_id": 37123, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "web", - "token_id": 37167, + "token_id": 37124, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37168, + "token_id": 37125, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "20251213075011", - "token_id": 37169, + "token_id": 37126, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37170, + "token_id": 37127, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "https", - "token_id": 37171, + "token_id": 37128, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37172, + "token_id": 37129, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37173, + "token_id": 37130, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37174, + "token_id": 37131, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "www", - "token_id": 37175, + "token_id": 37132, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37176, + "token_id": 37133, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ign", - "token_id": 37177, + "token_id": 37134, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37178, + "token_id": 37135, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "com", - "token_id": 37179, + "token_id": 37136, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37180, + "token_id": 37137, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "articles", - "token_id": 37181, + "token_id": 37138, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37182, + "token_id": 37139, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37183, + "token_id": 37140, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37184, + "token_id": 37141, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "just", - "token_id": 37185, + "token_id": 37142, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37186, + "token_id": 37143, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "announced", - "token_id": 37187, + "token_id": 37144, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37188, + "token_id": 37145, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37189, + "token_id": 37146, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37190, + "token_id": 37147, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "raiders", - "token_id": 37191, + "token_id": 37148, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37192, + "token_id": 37149, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "for", - "token_id": 37193, + "token_id": 37150, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37194, + "token_id": 37151, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "switch", - "token_id": 37195, + "token_id": 37152, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37196, + "token_id": 37153, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2", - "token_id": 37197, + "token_id": 37154, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37198, + "token_id": 37155, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "with", - "token_id": 37199, + "token_id": 37156, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37200, + "token_id": 37157, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "a", - "token_id": 37201, + "token_id": 37158, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37202, + "token_id": 37159, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "trailer", - "token_id": 37203, + "token_id": 37160, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37204, + "token_id": 37161, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "exclusive", - "token_id": 37205, + "token_id": 37162, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37206, + "token_id": 37163, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "to", - "token_id": 37207, + "token_id": 37164, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37208, + "token_id": 37165, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37209, + "token_id": 37166, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37210, + "token_id": 37167, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37211, + "token_id": 37168, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37212, + "token_id": 37169, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "today", - "token_id": 37213, + "token_id": 37170, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37214, + "token_id": 37171, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "app", - "token_id": 37215, + "token_id": 37172, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37216, + "token_id": 37173, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "archive", - "token_id": 37217, + "token_id": 37174, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37218, + "token_id": 37175, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "date", - "token_id": 37219, + "token_id": 37176, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37220, + "token_id": 37177, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "13", - "token_id": 37221, + "token_id": 37178, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "december", - "token_id": 37222, + "token_id": 37179, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2025", - "token_id": 37223, + "token_id": 37180, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37224, + "token_id": 37181, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "access", - "token_id": 37225, + "token_id": 37182, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37226, + "token_id": 37183, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "date", - "token_id": 37227, + "token_id": 37184, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37228, + "token_id": 37185, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "22", - "token_id": 37229, + "token_id": 37186, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "january", - "token_id": 37230, + "token_id": 37187, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2026", - "token_id": 37231, + "token_id": 37188, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37232, + "token_id": 37189, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "website", - "token_id": 37233, + "token_id": 37190, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37234, + "token_id": 37191, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "[[", - "token_id": 37235, + "token_id": 37192, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ign", - "token_id": 37236, + "token_id": 37193, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "]]", - "token_id": 37237, + "token_id": 37194, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "}}", - "token_id": 37238, + "token_id": 37195, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "<", - "token_id": 37239, + "token_id": 37196, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37240, + "token_id": 37197, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ref", - "token_id": 37241, + "token_id": 37198, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "<", - "token_id": 37242, + "token_id": 37199, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ref", - "token_id": 37243, + "token_id": 37200, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ">", - "token_id": 37244, + "token_id": 37201, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "{{", - "token_id": 37245, + "token_id": 37202, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "cite", - "token_id": 37246, + "token_id": 37203, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "web", - "token_id": 37247, + "token_id": 37204, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37248, + "token_id": 37205, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "last", - "token_id": 37249, + "token_id": 37206, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37250, + "token_id": 37207, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "mcwhertor", - "token_id": 37251, + "token_id": 37208, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37252, + "token_id": 37209, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "first", - "token_id": 37253, + "token_id": 37210, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37254, + "token_id": 37211, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "michael", - "token_id": 37255, + "token_id": 37212, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37256, + "token_id": 37213, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "date", - "token_id": 37257, + "token_id": 37214, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37258, + "token_id": 37215, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "10", - "token_id": 37259, + "token_id": 37216, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "june", - "token_id": 37260, + "token_id": 37217, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2025", - "token_id": 37261, + "token_id": 37218, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37262, + "token_id": 37219, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "title", - "token_id": 37263, + "token_id": 37220, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37264, + "token_id": 37221, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37265, + "token_id": 37222, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "announces", - "token_id": 37266, + "token_id": 37223, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "surprise", - "token_id": 37267, + "token_id": 37224, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "new", - "token_id": 37268, + "token_id": 37225, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37269, + "token_id": 37226, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "game", - "token_id": 37270, + "token_id": 37227, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "for", - "token_id": 37271, + "token_id": 37228, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "switch", - "token_id": 37272, + "token_id": 37229, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2", - "token_id": 37273, + "token_id": 37230, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37274, + "token_id": 37231, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37275, + "token_id": 37232, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "https", - "token_id": 37276, + "token_id": 37233, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37277, + "token_id": 37234, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37278, + "token_id": 37235, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37279, + "token_id": 37236, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "www", - "token_id": 37280, + "token_id": 37237, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37281, + "token_id": 37238, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "polygon", - "token_id": 37282, + "token_id": 37239, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37283, + "token_id": 37240, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "com", - "token_id": 37284, + "token_id": 37241, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37285, + "token_id": 37242, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "news", - "token_id": 37286, + "token_id": 37243, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37287, + "token_id": 37244, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "605892", - "token_id": 37288, + "token_id": 37245, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37289, + "token_id": 37246, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37290, + "token_id": 37247, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "raiders", - "token_id": 37291, + "token_id": 37248, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37292, + "token_id": 37249, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "announced", - "token_id": 37293, + "token_id": 37250, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37294, + "token_id": 37251, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37295, + "token_id": 37252, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37296, + "token_id": 37253, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "today", - "token_id": 37297, + "token_id": 37254, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37298, + "token_id": 37255, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "https", - "token_id": 37299, + "token_id": 37256, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37300, + "token_id": 37257, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37301, + "token_id": 37258, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37302, + "token_id": 37259, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "web", - "token_id": 37303, + "token_id": 37260, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37304, + "token_id": 37261, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "archive", - "token_id": 37305, + "token_id": 37262, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37306, + "token_id": 37263, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "org", - "token_id": 37307, + "token_id": 37264, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37308, + "token_id": 37265, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "web", - "token_id": 37309, + "token_id": 37266, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37310, + "token_id": 37267, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "20260110133341", - "token_id": 37311, + "token_id": 37268, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37312, + "token_id": 37269, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "https", - "token_id": 37313, + "token_id": 37270, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37314, + "token_id": 37271, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37315, + "token_id": 37272, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37316, + "token_id": 37273, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "www", - "token_id": 37317, + "token_id": 37274, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37318, + "token_id": 37275, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "polygon", - "token_id": 37319, + "token_id": 37276, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37320, + "token_id": 37277, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "com", - "token_id": 37321, + "token_id": 37278, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37322, + "token_id": 37279, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "news", - "token_id": 37323, + "token_id": 37280, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37324, + "token_id": 37281, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "605892", - "token_id": 37325, + "token_id": 37282, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37326, + "token_id": 37283, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37327, + "token_id": 37284, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37328, + "token_id": 37285, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "raiders", - "token_id": 37329, + "token_id": 37286, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37330, + "token_id": 37287, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "announced", - "token_id": 37331, + "token_id": 37288, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37332, + "token_id": 37289, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37333, + "token_id": 37290, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37334, + "token_id": 37291, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "today", - "token_id": 37335, + "token_id": 37292, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37336, + "token_id": 37293, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37337, + "token_id": 37294, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "archive", - "token_id": 37338, + "token_id": 37295, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37339, + "token_id": 37296, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "date", - "token_id": 37340, + "token_id": 37297, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37341, + "token_id": 37298, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "10", - "token_id": 37342, + "token_id": 37299, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "january", - "token_id": 37343, + "token_id": 37300, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2026", - "token_id": 37344, + "token_id": 37301, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37345, + "token_id": 37302, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "access", - "token_id": 37346, + "token_id": 37303, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37347, + "token_id": 37304, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "date", - "token_id": 37348, + "token_id": 37305, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37349, + "token_id": 37306, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "22", - "token_id": 37350, + "token_id": 37307, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "january", - "token_id": 37351, + "token_id": 37308, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2026", - "token_id": 37352, + "token_id": 37309, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37353, + "token_id": 37310, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "website", - "token_id": 37354, + "token_id": 37311, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37355, + "token_id": 37312, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "polygon", - "token_id": 37356, + "token_id": 37313, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37357, + "token_id": 37314, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37358, + "token_id": 37315, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ">", - "token_id": 37359, + "token_id": 37316, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "alex", - "token_id": 37360, + "token_id": 37317, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "olney", - "token_id": 37361, + "token_id": 37318, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "of", - "token_id": 37362, + "token_id": 37319, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37363, + "token_id": 37320, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37364, + "token_id": 37321, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "[[", - "token_id": 37365, + "token_id": 37322, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nintendo", - "token_id": 37366, + "token_id": 37323, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "life", - "token_id": 37367, + "token_id": 37324, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "]]", - "token_id": 37368, + "token_id": 37325, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37369, + "token_id": 37326, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37370, + "token_id": 37327, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "called", - "token_id": 37371, + "token_id": 37328, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37372, + "token_id": 37329, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "world", - "token_id": 37373, + "token_id": 37330, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "of", - "token_id": 37374, + "token_id": 37331, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37375, + "token_id": 37332, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37376, + "token_id": 37333, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37377, + "token_id": 37334, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "3", - "token_id": 37378, + "token_id": 37335, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37379, + "token_id": 37336, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37380, + "token_id": 37337, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37381, + "token_id": 37338, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "immersi", - "token_id": 37382, + "token_id": 37339, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "[", - "token_id": 37383, + "token_id": 37340, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ve", - "token_id": 37384, + "token_id": 37341, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "]", - "token_id": 37385, + "token_id": 37342, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37386, + "token_id": 37343, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37387, + "token_id": 37344, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "hailing", - "token_id": 37388, + "token_id": 37345, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "splatsville", - "token_id": 37389, + "token_id": 37346, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "as", - "token_id": 37390, + "token_id": 37347, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37391, + "token_id": 37348, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "series", - "token_id": 37392, + "token_id": 37349, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37393, + "token_id": 37350, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "most", - "token_id": 37394, + "token_id": 37351, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "expansive", - "token_id": 37395, + "token_id": 37352, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "and", - "token_id": 37396, + "token_id": 37353, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "atmospheric", - "token_id": 37397, + "token_id": 37354, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "hub", - "token_id": 37398, + "token_id": 37355, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "world", - "token_id": 37399, + "token_id": 37356, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "to", - "token_id": 37400, + "token_id": 37357, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "date", - "token_id": 37401, + "token_id": 37358, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37402, + "token_id": 37359, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "<", - "token_id": 37403, + "token_id": 37360, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ref", - "token_id": 37404, + "token_id": 37361, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "name", - "token_id": 37405, + "token_id": 37362, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37406, + "token_id": 37363, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37407, + "token_id": 37364, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nlife", - "token_id": 37408, + "token_id": 37365, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "further", - "token_id": 37409, + "token_id": 37366, "o_rev_id": 1334328058, "in": [], "out": [ @@ -318050,406 +317649,406 @@ }, { "str": "ignmp", - "token_id": 37410, + "token_id": 37367, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nlife", - "token_id": 37411, + "token_id": 37368, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "name", - "token_id": 37412, + "token_id": 37369, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37413, + "token_id": 37370, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37414, + "token_id": 37371, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37415, + "token_id": 37372, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2", - "token_id": 37416, + "token_id": 37373, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37417, + "token_id": 37374, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37418, + "token_id": 37375, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "like", - "token_id": 37419, + "token_id": 37376, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37420, + "token_id": 37377, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "overhauled", - "token_id": 37421, + "token_id": 37378, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "lobby", - "token_id": 37422, + "token_id": 37379, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37423, + "token_id": 37380, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37424, + "token_id": 37381, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "hirun", - "token_id": 37425, + "token_id": 37382, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "cryer", - "token_id": 37426, + "token_id": 37383, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "thought", - "token_id": 37427, + "token_id": 37384, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "winning", - "token_id": 37428, + "token_id": 37385, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "a", - "token_id": 37429, + "token_id": 37386, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "tableturf", - "token_id": 37430, + "token_id": 37387, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "battle", - "token_id": 37431, + "token_id": 37388, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "relied", - "token_id": 37432, + "token_id": 37389, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "too", - "token_id": 37433, + "token_id": 37390, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "heavily", - "token_id": 37434, + "token_id": 37391, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "on", - "token_id": 37435, + "token_id": 37392, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "chance", - "token_id": 37436, + "token_id": 37393, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37437, + "token_id": 37394, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "and", - "token_id": 37438, + "token_id": 37395, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "that", - "token_id": 37439, + "token_id": 37396, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37440, + "token_id": 37397, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "mode", - "token_id": 37441, + "token_id": 37398, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "thus", - "token_id": 37442, + "token_id": 37399, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "failed", - "token_id": 37443, + "token_id": 37400, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "in", - "token_id": 37444, + "token_id": 37401, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "living", - "token_id": 37445, + "token_id": 37402, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "up", - "token_id": 37446, + "token_id": 37403, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "to", - "token_id": 37447, + "token_id": 37404, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "its", - "token_id": 37448, + "token_id": 37405, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "more", - "token_id": 37449, + "token_id": 37406, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "strategic", - "token_id": 37450, + "token_id": 37407, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "namesake", - "token_id": 37451, + "token_id": 37408, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37452, + "token_id": 37409, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "can", - "token_id": 37453, + "token_id": 37410, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37454, + "token_id": 37411, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "url", - "token_id": 37455, + "token_id": 37412, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37456, + "token_id": 37413, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "status", - "token_id": 37457, + "token_id": 37414, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37458, + "token_id": 37415, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "live", - "token_id": 37459, + "token_id": 37416, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37460, + "token_id": 37417, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "archive", - "token_id": 37461, + "token_id": 37418, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37462, + "token_id": 37419, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "url", - "token_id": 37463, + "token_id": 37420, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37464, + "token_id": 37421, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37465, + "token_id": 37422, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37466, + "token_id": 37423, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "with", - "token_id": 37467, + "token_id": 37424, "o_rev_id": 1334328058, "in": [], "out": [ @@ -318458,2016 +318057,2016 @@ }, { "str": "some", - "token_id": 37468, + "token_id": 37425, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "critics", - "token_id": 37469, + "token_id": 37426, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "calling", - "token_id": 37470, + "token_id": 37427, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "it", - "token_id": 37471, + "token_id": 37428, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "simple", - "token_id": 37472, + "token_id": 37429, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "yet", - "token_id": 37473, + "token_id": 37430, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "endearing", - "token_id": 37474, + "token_id": 37431, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "<", - "token_id": 37475, + "token_id": 37432, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ref", - "token_id": 37476, + "token_id": 37433, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "name", - "token_id": 37477, + "token_id": 37434, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37478, + "token_id": 37435, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37479, + "token_id": 37436, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "gradar", - "token_id": 37480, + "token_id": 37437, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37481, + "token_id": 37438, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37482, + "token_id": 37439, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ">", - "token_id": 37483, + "token_id": 37440, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37484, + "token_id": 37441, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "url", - "token_id": 37485, + "token_id": 37442, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37486, + "token_id": 37443, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "status", - "token_id": 37487, + "token_id": 37444, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37488, + "token_id": 37445, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "live", - "token_id": 37489, + "token_id": 37446, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37490, + "token_id": 37447, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "archive", - "token_id": 37491, + "token_id": 37448, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "-", - "token_id": 37492, + "token_id": 37449, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "url", - "token_id": 37493, + "token_id": 37450, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37494, + "token_id": 37451, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "an", - "token_id": 37495, + "token_id": 37452, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "overall", - "token_id": 37496, + "token_id": 37453, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37497, + "token_id": 37454, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "many", - "token_id": 37498, + "token_id": 37455, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "'", - "token_id": 37499, + "token_id": 37456, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "s", - "token_id": 37500, + "token_id": 37457, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "challenges", - "token_id": 37501, + "token_id": 37458, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37502, + "token_id": 37459, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37503, + "token_id": 37460, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37504, + "token_id": 37461, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ">", - "token_id": 37505, + "token_id": 37462, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "however", - "token_id": 37506, + "token_id": 37463, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ",", - "token_id": 37507, + "token_id": 37464, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "others", - "token_id": 37508, + "token_id": 37465, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "criticized", - "token_id": 37509, + "token_id": 37466, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "certain", - "token_id": 37510, + "token_id": 37467, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "levels", - "token_id": 37511, + "token_id": 37468, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "for", - "token_id": 37512, + "token_id": 37469, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "being", - "token_id": 37513, + "token_id": 37470, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "overtly", - "token_id": 37514, + "token_id": 37471, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "geometric", - "token_id": 37515, + "token_id": 37472, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "and", - "token_id": 37516, + "token_id": 37473, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "situated", - "token_id": 37517, + "token_id": 37474, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "above", - "token_id": 37518, + "token_id": 37475, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nebulous", - "token_id": 37519, + "token_id": 37476, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "environments", - "token_id": 37520, + "token_id": 37477, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "detached", - "token_id": 37521, + "token_id": 37478, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "from", - "token_id": 37522, + "token_id": 37479, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "the", - "token_id": 37523, + "token_id": 37480, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "hub", - "token_id": 37524, + "token_id": 37481, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "world", - "token_id": 37525, + "token_id": 37482, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ".", - "token_id": 37526, + "token_id": 37483, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "<", - "token_id": 37527, + "token_id": 37484, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ref", - "token_id": 37528, + "token_id": 37485, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "name", - "token_id": 37529, + "token_id": 37486, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37530, + "token_id": 37487, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37531, + "token_id": 37488, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "nlife", - "token_id": 37532, + "token_id": 37489, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37533, + "token_id": 37490, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "/", - "token_id": 37534, + "token_id": 37491, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ">", - "token_id": 37535, + "token_id": 37492, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "<", - "token_id": 37536, + "token_id": 37493, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "ref", - "token_id": 37537, + "token_id": 37494, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "name", - "token_id": 37538, + "token_id": 37495, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "=", - "token_id": 37539, + "token_id": 37496, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "\"", - "token_id": 37540, + "token_id": 37497, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": ":", - "token_id": 37541, + "token_id": 37498, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "2", - "token_id": 37542, + "token_id": 37499, "o_rev_id": 1334328058, "in": [], "out": [] }, { "str": "|", - "token_id": 37543, + "token_id": 37500, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "oc", - "token_id": 37544, + "token_id": 37501, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "=", - "token_id": 37545, + "token_id": 37502, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "93", - "token_id": 37546, + "token_id": 37503, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "%", - "token_id": 37547, + "token_id": 37504, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "recommend", - "token_id": 37548, + "token_id": 37505, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "<", - "token_id": 37549, + "token_id": 37506, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "ref", - "token_id": 37550, + "token_id": 37507, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "name", - "token_id": 37551, + "token_id": 37508, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "=", - "token_id": 37552, + "token_id": 37509, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "\"", - "token_id": 37553, + "token_id": 37510, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "oc", - "token_id": 37554, + "token_id": 37511, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "\"", - "token_id": 37555, + "token_id": 37512, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": ">", - "token_id": 37556, + "token_id": 37513, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "{{", - "token_id": 37557, + "token_id": 37514, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "cite", - "token_id": 37558, + "token_id": 37515, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "web", - "token_id": 37559, + "token_id": 37516, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "|", - "token_id": 37560, + "token_id": 37517, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "title", - "token_id": 37561, + "token_id": 37518, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "=", - "token_id": 37562, + "token_id": 37519, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "'", - "token_id": 37563, + "token_id": 37520, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "'", - "token_id": 37564, + "token_id": 37521, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37565, + "token_id": 37522, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "3", - "token_id": 37566, + "token_id": 37523, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "'", - "token_id": 37567, + "token_id": 37524, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "'", - "token_id": 37568, + "token_id": 37525, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "|", - "token_id": 37569, + "token_id": 37526, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "url", - "token_id": 37570, + "token_id": 37527, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "=", - "token_id": 37571, + "token_id": 37528, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "https", - "token_id": 37572, + "token_id": 37529, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": ":", - "token_id": 37573, + "token_id": 37530, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "/", - "token_id": 37574, + "token_id": 37531, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "/", - "token_id": 37575, + "token_id": 37532, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "opencritic", - "token_id": 37576, + "token_id": 37533, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": ".", - "token_id": 37577, + "token_id": 37534, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "com", - "token_id": 37578, + "token_id": 37535, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "/", - "token_id": 37579, + "token_id": 37536, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "game", - "token_id": 37580, + "token_id": 37537, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "/", - "token_id": 37581, + "token_id": 37538, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "13284", - "token_id": 37582, + "token_id": 37539, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "/", - "token_id": 37583, + "token_id": 37540, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37584, + "token_id": 37541, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "-", - "token_id": 37585, + "token_id": 37542, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "3", - "token_id": 37586, + "token_id": 37543, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "}}", - "token_id": 37587, + "token_id": 37544, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "<", - "token_id": 37588, + "token_id": 37545, "o_rev_id": 1335508441, "in": [], "out": [] }, { "str": "[[", - "token_id": 37589, + "token_id": 37546, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "human", - "token_id": 37590, + "token_id": 37547, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "|", - "token_id": 37591, + "token_id": 37548, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "]]", - "token_id": 37592, + "token_id": 37549, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "player", - "token_id": 37593, + "token_id": 37550, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "character", - "token_id": 37594, + "token_id": 37551, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "follows", - "token_id": 37595, + "token_id": 37552, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37596, + "token_id": 37553, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "elderly", - "token_id": 37597, + "token_id": 37554, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "former", - "token_id": 37598, + "token_id": 37555, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "captain", - "token_id": 37599, + "token_id": 37556, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "of", - "token_id": 37600, + "token_id": 37557, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37601, + "token_id": 37558, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "new", - "token_id": 37602, + "token_id": 37559, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "squidbeak", - "token_id": 37603, + "token_id": 37560, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37604, + "token_id": 37561, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37605, + "token_id": 37562, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "splatsville", - "token_id": 37606, + "token_id": 37563, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "'", - "token_id": 37607, + "token_id": 37564, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "s", - "token_id": 37608, + "token_id": 37565, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "neighboring", - "token_id": 37609, + "token_id": 37566, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37610, + "token_id": 37567, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "which", - "token_id": 37611, + "token_id": 37568, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "is", - "token_id": 37612, + "token_id": 37569, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "hazardous", - "token_id": 37613, + "token_id": 37570, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ".", - "token_id": 37614, + "token_id": 37571, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ";", - "token_id": 37615, + "token_id": 37572, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "cuttlefish", - "token_id": 37616, + "token_id": 37573, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "assumes", - "token_id": 37617, + "token_id": 37574, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "their", - "token_id": 37618, + "token_id": 37575, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "leader", - "token_id": 37619, + "token_id": 37576, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "dj", - "token_id": 37620, + "token_id": 37577, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "octavio", - "token_id": 37621, + "token_id": 37578, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37622, + "token_id": 37579, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "is", - "token_id": 37623, + "token_id": 37580, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "thieving", - "token_id": 37624, + "token_id": 37581, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "[[", - "token_id": 37625, + "token_id": 37582, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "mecha", - "token_id": 37626, + "token_id": 37583, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "|", - "token_id": 37627, + "token_id": 37584, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "]]", - "token_id": 37628, + "token_id": 37585, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "accusing", - "token_id": 37629, + "token_id": 37586, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "of", - "token_id": 37630, + "token_id": 37587, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "kidnapping", - "token_id": 37631, + "token_id": 37588, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "following", - "token_id": 37632, + "token_id": 37589, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "his", - "token_id": 37633, + "token_id": 37590, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "defeat", - "token_id": 37634, + "token_id": 37591, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "in", - "token_id": 37635, + "token_id": 37592, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "battle", - "token_id": 37636, + "token_id": 37593, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "having", - "token_id": 37637, + "token_id": 37594, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "taken", - "token_id": 37638, + "token_id": 37595, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "apart", - "token_id": 37639, + "token_id": 37596, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ".", - "token_id": 37640, + "token_id": 37597, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "and", - "token_id": 37641, + "token_id": 37598, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "smallfry", - "token_id": 37642, + "token_id": 37599, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "a", - "token_id": 37643, + "token_id": 37600, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "named", - "token_id": 37644, + "token_id": 37601, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37645, + "token_id": 37602, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "formally", - "token_id": 37646, + "token_id": 37603, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "agents", - "token_id": 37647, + "token_id": 37604, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "1", - "token_id": 37648, + "token_id": 37605, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "and", - "token_id": 37649, + "token_id": 37606, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "2", - "token_id": 37650, + "token_id": 37607, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37651, + "token_id": 37608, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37652, + "token_id": 37609, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "group", - "token_id": 37653, + "token_id": 37610, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "is", - "token_id": 37654, + "token_id": 37611, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "splatsville", - "token_id": 37655, + "token_id": 37612, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "-", - "token_id": 37656, + "token_id": 37613, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "based", - "token_id": 37657, + "token_id": 37614, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "trio", - "token_id": 37658, + "token_id": 37615, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "ransacking", - "token_id": 37659, + "token_id": 37616, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "\"", - "token_id": 37660, + "token_id": 37617, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "\"", - "token_id": 37661, + "token_id": 37618, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ".", - "token_id": 37662, + "token_id": 37619, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37663, + "token_id": 37620, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "trio", - "token_id": 37664, + "token_id": 37621, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "antagonize", - "token_id": 37665, + "token_id": 37622, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37666, + "token_id": 37623, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "believing", - "token_id": 37667, + "token_id": 37624, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "they", - "token_id": 37668, + "token_id": 37625, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "are", - "token_id": 37669, + "token_id": 37626, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "in", - "token_id": 37670, + "token_id": 37627, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37671, + "token_id": 37628, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "settlement", - "token_id": 37672, + "token_id": 37629, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37673, + "token_id": 37630, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "squidbeak", - "token_id": 37674, + "token_id": 37631, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "splatoon", - "token_id": 37675, + "token_id": 37632, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "intercepted", - "token_id": 37676, + "token_id": 37633, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "by", - "token_id": 37677, + "token_id": 37634, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ".", - "token_id": 37678, + "token_id": 37635, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "atop", - "token_id": 37679, + "token_id": 37636, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "a", - "token_id": 37680, + "token_id": 37637, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "rocket", - "token_id": 37681, + "token_id": 37638, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "in", - "token_id": 37682, + "token_id": 37639, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "alterna", - "token_id": 37683, + "token_id": 37640, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "'", - "token_id": 37684, + "token_id": 37641, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "s", - "token_id": 37685, + "token_id": 37642, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "center", - "token_id": 37686, + "token_id": 37643, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "divulges", - "token_id": 37687, + "token_id": 37644, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37688, + "token_id": 37645, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "living", - "token_id": 37689, + "token_id": 37646, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "sea", - "token_id": 37690, + "token_id": 37647, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "animals", - "token_id": 37691, + "token_id": 37648, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "to", - "token_id": 37692, + "token_id": 37649, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "fuzzy", - "token_id": 37693, + "token_id": 37650, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "creatures", - "token_id": 37694, + "token_id": 37651, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "way", - "token_id": 37695, + "token_id": 37652, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "of", - "token_id": 37696, + "token_id": 37653, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "allies", - "token_id": 37697, + "token_id": 37654, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "squidbeak", - "token_id": 37698, + "token_id": 37655, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "/", - "token_id": 37699, + "token_id": 37656, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "/", - "token_id": 37700, + "token_id": 37657, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "/", - "token_id": 37701, + "token_id": 37658, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "/", - "token_id": 37702, + "token_id": 37659, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "/", - "token_id": 37703, + "token_id": 37660, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "echoing", - "token_id": 37704, + "token_id": 37661, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "this", - "token_id": 37705, + "token_id": 37662, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "sentiment", - "token_id": 37706, + "token_id": 37663, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37707, + "token_id": 37664, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "'", - "token_id": 37708, + "token_id": 37665, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "'", - "token_id": 37709, + "token_id": 37666, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "ign", - "token_id": 37710, + "token_id": 37667, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "'", - "token_id": 37711, + "token_id": 37668, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "'", - "token_id": 37712, + "token_id": 37669, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "staff", - "token_id": 37713, + "token_id": 37670, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "wrote", - "token_id": 37714, + "token_id": 37671, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "positively", - "token_id": 37715, + "token_id": 37672, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "of", - "token_id": 37716, + "token_id": 37673, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "distinct", - "token_id": 37717, + "token_id": 37674, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "saying", - "token_id": 37718, + "token_id": 37675, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "was", - "token_id": 37719, + "token_id": 37676, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "a", - "token_id": 37720, + "token_id": 37677, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "subject", - "token_id": 37721, + "token_id": 37678, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "of", - "token_id": 37722, + "token_id": 37679, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "praise", - "token_id": 37723, + "token_id": 37680, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "[[", - "token_id": 37724, + "token_id": 37681, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "]]", - "token_id": 37725, + "token_id": 37682, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "refinements", - "token_id": 37726, + "token_id": 37683, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "some", - "token_id": 37727, + "token_id": 37684, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "writing", - "token_id": 37728, + "token_id": 37685, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "for", - "token_id": 37729, + "token_id": 37686, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37730, + "token_id": 37687, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "praised", - "token_id": 37731, + "token_id": 37688, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "[[", - "token_id": 37732, + "token_id": 37689, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "]]", - "token_id": 37733, + "token_id": 37690, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "in", - "token_id": 37734, + "token_id": 37691, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "-", - "token_id": 37735, + "token_id": 37692, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "depth", - "token_id": 37736, + "token_id": 37693, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "reviewers", - "token_id": 37737, + "token_id": 37694, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37738, + "token_id": 37695, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "thought", - "token_id": 37739, + "token_id": 37696, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "diconnections", - "token_id": 37740, + "token_id": 37697, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "the", - "token_id": 37741, + "token_id": 37698, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "internet", - "token_id": 37742, + "token_id": 37699, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "irregularities", - "token_id": 37743, + "token_id": 37700, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "gameplay", - "token_id": 37744, + "token_id": 37701, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "was", - "token_id": 37745, + "token_id": 37702, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "[[", - "token_id": 37746, + "token_id": 37703, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ".", - "token_id": 37747, + "token_id": 37704, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "conversely", - "token_id": 37748, + "token_id": 37705, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": ",", - "token_id": 37749, + "token_id": 37706, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "though", - "token_id": 37750, + "token_id": 37707, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "appreciated", - "token_id": 37751, + "token_id": 37708, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "levels", - "token_id": 37752, + "token_id": 37709, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "apparent", - "token_id": 37753, + "token_id": 37710, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "tailoring", - "token_id": 37754, + "token_id": 37711, "o_rev_id": 1338938791, "in": [], "out": [] }, { "str": "*", - "token_id": 37755, + "token_id": 37712, "o_rev_id": 1347419190, "in": [], "out": [ @@ -320476,7 +320075,7 @@ }, { "str": "citation", - "token_id": 37756, + "token_id": 37713, "o_rev_id": 1347419190, "in": [], "out": [ @@ -320485,7 +320084,7 @@ }, { "str": "needed", - "token_id": 37757, + "token_id": 37714, "o_rev_id": 1347419190, "in": [], "out": [ @@ -320494,413 +320093,413 @@ }, { "str": ",", - "token_id": 37758, + "token_id": 37715, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "often", - "token_id": 37759, + "token_id": 37716, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "for", - "token_id": 37760, + "token_id": 37717, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "tactical", - "token_id": 37761, + "token_id": 37718, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "purposes", - "token_id": 37762, + "token_id": 37719, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": ",", - "token_id": 37763, + "token_id": 37720, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": ".", - "token_id": 37764, + "token_id": 37721, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "for", - "token_id": 37765, + "token_id": 37722, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "example", - "token_id": 37766, + "token_id": 37723, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": ",", - "token_id": 37767, + "token_id": 37724, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "the", - "token_id": 37768, + "token_id": 37725, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "splat", - "token_id": 37769, + "token_id": 37726, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "bomb", - "token_id": 37770, + "token_id": 37727, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "which", - "token_id": 37771, + "token_id": 37728, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "resembles", - "token_id": 37772, + "token_id": 37729, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "a", - "token_id": 37773, + "token_id": 37730, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "grenade", - "token_id": 37774, + "token_id": 37731, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": ",", - "token_id": 37775, + "token_id": 37732, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "or", - "token_id": 37776, + "token_id": 37733, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "the", - "token_id": 37777, + "token_id": 37734, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "splash", - "token_id": 37778, + "token_id": 37735, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "wall", - "token_id": 37779, + "token_id": 37736, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "which", - "token_id": 37780, + "token_id": 37737, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "blocks", - "token_id": 37781, + "token_id": 37738, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "incoming", - "token_id": 37782, + "token_id": 37739, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "enemy", - "token_id": 37783, + "token_id": 37740, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "ink", - "token_id": 37784, + "token_id": 37741, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "and", - "token_id": 37785, + "token_id": 37742, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "damages", - "token_id": 37786, + "token_id": 37743, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "players", - "token_id": 37787, + "token_id": 37744, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "special", - "token_id": 37788, + "token_id": 37745, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": ",", - "token_id": 37789, + "token_id": 37746, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "and", - "token_id": 37790, + "token_id": 37747, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "sub", - "token_id": 37791, + "token_id": 37748, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "weapon", - "token_id": 37792, + "token_id": 37749, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "types", - "token_id": 37793, + "token_id": 37750, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "and", - "token_id": 37794, + "token_id": 37751, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "the", - "token_id": 37795, + "token_id": 37752, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "majority", - "token_id": 37796, + "token_id": 37753, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "of", - "token_id": 37797, + "token_id": 37754, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "weapon", - "token_id": 37798, + "token_id": 37755, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "kits", - "token_id": 37799, + "token_id": 37756, "o_rev_id": 1348792323, "in": [], "out": [] }, { "str": "[[", - "token_id": 37800, + "token_id": 37757, "o_rev_id": 1349213393, "in": [], "out": [] }, { "str": "ryō", - "token_id": 37801, + "token_id": 37758, "o_rev_id": 1349213393, "in": [], "out": [] }, { "str": "]]", - "token_id": 37802, + "token_id": 37759, "o_rev_id": 1349213393, "in": [], "out": [] }, { "str": "[[", - "token_id": 37803, + "token_id": 37760, "o_rev_id": 1349476590, "in": [], "out": [] }, { "str": "category", - "token_id": 37804, + "token_id": 37761, "o_rev_id": 1349476590, "in": [], "out": [] }, { "str": ":", - "token_id": 37805, + "token_id": 37762, "o_rev_id": 1349476590, "in": [], "out": [] }, { "str": "video", - "token_id": 37806, + "token_id": 37763, "o_rev_id": 1349476590, "in": [], "out": [] }, { "str": "games", - "token_id": 37807, + "token_id": 37764, "o_rev_id": 1349476590, "in": [], "out": [] }, { "str": "about", - "token_id": 37808, + "token_id": 37765, "o_rev_id": 1349476590, "in": [], "out": [] }, { "str": "bears", - "token_id": 37809, + "token_id": 37766, "o_rev_id": 1349476590, "in": [], "out": [] }, { "str": "]]", - "token_id": 37810, + "token_id": 37767, "o_rev_id": 1349476590, "in": [], "out": [] }, { "str": "a", - "token_id": 37811, + "token_id": 37768, "o_rev_id": 1351743164, "in": [], "out": [] }, { "str": "strong", - "token_id": 37812, + "token_id": 37769, "o_rev_id": 1351743164, "in": [], "out": [] }, { "str": "sequel", - "token_id": 37813, + "token_id": 37770, "o_rev_id": 1351743164, "in": [], "out": [] }, { "str": "that", - "token_id": 37814, + "token_id": 37771, "o_rev_id": 1351743164, "in": [], "out": [] }, { "str": "works", - "token_id": 37815, + "token_id": 37772, "o_rev_id": 1351743164, "in": [], "out": [] }, { "str": ".", - "token_id": 37816, + "token_id": 37773, "o_rev_id": 1351743164, "in": [], "out": [] diff --git a/tests/fixtures/the_tell-tale_brain_golden.json b/tests/fixtures/the_tell-tale_brain_golden.json new file mode 100644 index 0000000..92a0dd1 --- /dev/null +++ b/tests/fixtures/the_tell-tale_brain_golden.json @@ -0,0 +1,40130 @@ +[ + { + "str": "'", + "token_id": 0, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 4, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 5, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 6, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 7, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 8, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 9, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "neuroscientist", + "token_id": 10, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 11, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 12, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "quest", + "token_id": 13, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 14, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 15, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "makes", + "token_id": 16, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 17, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 18, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 19, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 20, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 21, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 22, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 23, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "2010", + "token_id": 24, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "nonfiction", + "token_id": 25, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 26, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 27, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 28, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "vilayanur", + "token_id": 29, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 30, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 31, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 32, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 33, + "o_rev_id": 415694066, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "v", + "token_id": 34, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 35, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 36, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 37, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "ramachrandran", + "token_id": 38, + "o_rev_id": 415694066, + "in": [], + "out": [ + 460730548 + ] + }, + { + "str": "]]", + "token_id": 39, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 40, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "explores", + "token_id": 41, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 42, + "o_rev_id": 415694066, + "in": [], + "out": [ + 1144804184 + ] + }, + { + "str": "from", + "token_id": 43, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 44, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "neurological", + "token_id": 45, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "viewpoint", + "token_id": 46, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 47, + "o_rev_id": 415694066, + "in": [], + "out": [ + 1144804184 + ] + }, + { + "str": "various", + "token_id": 48, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "aspects", + "token_id": 49, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "of", + "token_id": 50, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 51, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "[[", + "token_id": 52, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "perception", + "token_id": 53, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 54, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "and", + "token_id": 55, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "how", + "token_id": 56, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "they", + "token_id": 57, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "relate", + "token_id": 58, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "to", + "token_id": 59, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "appreciation", + "token_id": 60, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "of", + "token_id": 61, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "[[", + "token_id": 62, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "art", + "token_id": 63, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 64, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 65, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "the", + "token_id": 66, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "development", + "token_id": 67, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "of", + "token_id": 68, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "[[", + "token_id": 69, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "language", + "token_id": 70, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 71, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 72, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "and", + "token_id": 73, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "how", + "token_id": 74, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "perception", + "token_id": 75, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 76, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 77, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "way", + "token_id": 78, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "its", + "token_id": 79, + "o_rev_id": 415694066, + "in": [], + "out": [ + 431014591 + ] + }, + { + "str": "processed", + "token_id": 80, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "make", + "token_id": 81, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "humans", + "token_id": 82, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "more", + "token_id": 83, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "like", + "token_id": 84, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "other", + "token_id": 85, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "animals", + "token_id": 86, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 87, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "in", + "token_id": 88, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "particular", + "token_id": 89, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "[[", + "token_id": 90, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "hominids", + "token_id": 91, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 92, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 93, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "or", + "token_id": 94, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "unique", + "token_id": 95, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "among", + "token_id": 96, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "species", + "token_id": 97, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": ".", + "token_id": 98, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 99, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "this", + "token_id": 100, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 101, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 102, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "investigates", + "token_id": 103, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "cases", + "token_id": 104, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "of", + "token_id": 105, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "patients", + "token_id": 106, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "where", + "token_id": 107, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "certain", + "token_id": 108, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "systems", + "token_id": 109, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "in", + "token_id": 110, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "the", + "token_id": 111, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "brain", + "token_id": 112, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "of", + "token_id": 113, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "an", + "token_id": 114, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "otherwise", + "token_id": 115, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "normal", + "token_id": 116, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "individual", + "token_id": 117, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "have", + "token_id": 118, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "been", + "token_id": 119, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "disrupted", + "token_id": 120, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "including", + "token_id": 121, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "among", + "token_id": 122, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "others", + "token_id": 123, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ":", + "token_id": 124, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "[[", + "token_id": 125, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "autism", + "token_id": 126, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 127, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 128, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "[[", + "token_id": 129, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "synesthesia", + "token_id": 130, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 131, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 132, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "[[", + "token_id": 133, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "phantom", + "token_id": 134, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "limb", + "token_id": 135, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 136, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "s", + "token_id": 137, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 138, + "o_rev_id": 415694066, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "[[", + "token_id": 139, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "cotard", + "token_id": 140, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "delusion", + "token_id": 141, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 142, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 143, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 144, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "[[", + "token_id": 145, + "o_rev_id": 415694066, + "in": [], + "out": [ + 492199676 + ] + }, + { + "str": "broca", + "token_id": 146, + "o_rev_id": 415694066, + "in": [], + "out": [ + 492199676 + ] + }, + { + "str": "'", + "token_id": 147, + "o_rev_id": 415694066, + "in": [], + "out": [ + 492199676 + ] + }, + { + "str": "s", + "token_id": 148, + "o_rev_id": 415694066, + "in": [], + "out": [ + 492199676 + ] + }, + { + "str": "aphasia", + "token_id": 149, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 150, + "o_rev_id": 415694066, + "in": [], + "out": [ + 492199676 + ] + }, + { + "str": ".", + "token_id": 151, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 152, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "the", + "token_id": 153, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "final", + "token_id": 154, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "chapter", + "token_id": 155, + "o_rev_id": 415694066, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": ",", + "token_id": 156, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 157, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "discusses", + "token_id": 158, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "seven", + "token_id": 159, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "main", + "token_id": 160, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "concepts", + "token_id": 161, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "which", + "token_id": 162, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "define", + "token_id": 163, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 164, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 165, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "aspect", + "token_id": 166, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 167, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 168, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "self", + "token_id": 169, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 170, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 171, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "how", + "token_id": 172, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "each", + "token_id": 173, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "may", + "token_id": 174, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "be", + "token_id": 175, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "disrupted", + "token_id": 176, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 177, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 178, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "specific", + "token_id": 179, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "neurological", + "token_id": 180, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "disorder", + "token_id": 181, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 182, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 183, + "o_rev_id": 415694066, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "category", + "token_id": 184, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 185, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "non", + "token_id": 186, + "o_rev_id": 415694066, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "-", + "token_id": 187, + "o_rev_id": 415694066, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": "fiction", + "token_id": 188, + "o_rev_id": 415694066, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "book", + "token_id": 189, + "o_rev_id": 415694066, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "stubs", + "token_id": 190, + "o_rev_id": 415694066, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "]]", + "token_id": 191, + "o_rev_id": 415694066, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "[[", + "token_id": 192, + "o_rev_id": 415694066, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "category", + "token_id": 193, + "o_rev_id": 415694066, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": ":", + "token_id": 194, + "o_rev_id": 415694066, + "in": [], + "out": [] + }, + { + "str": "neurology", + "token_id": 195, + "o_rev_id": 415694066, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "]]", + "token_id": 196, + "o_rev_id": 415694066, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "{{", + "token_id": 197, + "o_rev_id": 415694128, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "nonfiction", + "token_id": 198, + "o_rev_id": 415694128, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "-", + "token_id": 199, + "o_rev_id": 415694128, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "book", + "token_id": 200, + "o_rev_id": 415694128, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "-", + "token_id": 201, + "o_rev_id": 415694128, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "stub", + "token_id": 202, + "o_rev_id": 415694128, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "}}", + "token_id": 203, + "o_rev_id": 415694128, + "in": [], + "out": [ + 426462311 + ] + }, + { + "str": "{{", + "token_id": 204, + "o_rev_id": 415732915, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "unreferenced", + "token_id": 205, + "o_rev_id": 415732915, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "|", + "token_id": 206, + "o_rev_id": 415732915, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "date", + "token_id": 207, + "o_rev_id": 415732915, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "=", + "token_id": 208, + "o_rev_id": 415732915, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "february", + "token_id": 209, + "o_rev_id": 415732915, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "2011", + "token_id": 210, + "o_rev_id": 415732915, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "}}", + "token_id": 211, + "o_rev_id": 415732915, + "in": [], + "out": [ + 448414637 + ] + }, + { + "str": "{{", + "token_id": 212, + "o_rev_id": 426462311, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "science", + "token_id": 213, + "o_rev_id": 426462311, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "}}", + "token_id": 214, + "o_rev_id": 426462311, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "[[", + "token_id": 215, + "o_rev_id": 426462311, + "in": [], + "out": [] + }, + { + "str": "neuroscience", + "token_id": 216, + "o_rev_id": 426462311, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 217, + "o_rev_id": 426462311, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 218, + "o_rev_id": 426462311, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 219, + "o_rev_id": 426462311, + "in": [], + "out": [ + 840168304 + ] + }, + { + "str": "category", + "token_id": 220, + "o_rev_id": 426462311, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 221, + "o_rev_id": 426462311, + "in": [], + "out": [] + }, + { + "str": "2010", + "token_id": 222, + "o_rev_id": 426462311, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 223, + "o_rev_id": 426462311, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 224, + "o_rev_id": 426462311, + "in": [], + "out": [ + 840168304 + ] + }, + { + "str": "{{", + "token_id": 225, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": "defaultsort", + "token_id": 226, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": ":", + "token_id": 227, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": "tell", + "token_id": 228, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": "tale", + "token_id": 229, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": "brain", + "token_id": 230, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": ",", + "token_id": 231, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": "the", + "token_id": 232, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": "}}", + "token_id": 233, + "o_rev_id": 426462311, + "in": [], + "out": [ + 446017258 + ] + }, + { + "str": "it", + "token_id": 234, + "o_rev_id": 431014591, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "'", + "token_id": 235, + "o_rev_id": 431014591, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "s", + "token_id": 236, + "o_rev_id": 431014591, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "{{", + "token_id": 237, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": "defaultsort", + "token_id": 238, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 239, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 240, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 241, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 242, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 243, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 244, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 245, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 246, + "o_rev_id": 432260105, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 247, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 248, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 249, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 250, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 251, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 252, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 253, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "won", + "token_id": 254, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 255, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "2010", + "token_id": 256, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 257, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "vodafone", + "token_id": 258, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "crossword", + "token_id": 259, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 260, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "award", + "token_id": 261, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 262, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 263, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "non", + "token_id": 264, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 265, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "fiction", + "token_id": 266, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 267, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 268, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 269, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 270, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 271, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 272, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "http", + "token_id": 273, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 274, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 275, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "ibnlive", + "token_id": 276, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 277, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 278, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 279, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 280, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 281, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "news", + "token_id": 282, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 283, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "vodafone", + "token_id": 284, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 285, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "crossword", + "token_id": 286, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 287, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 288, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 289, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "awards", + "token_id": 290, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 291, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "2010", + "token_id": 292, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 293, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "announced", + "token_id": 294, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 295, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "180813", + "token_id": 296, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 297, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "40", + "token_id": 298, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 299, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "100", + "token_id": 300, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 301, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 302, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 303, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "vodafone", + "token_id": 304, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "crossword", + "token_id": 305, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 306, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "awards", + "token_id": 307, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "2010", + "token_id": 308, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "announced", + "token_id": 309, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 310, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 311, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 312, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "ibn", + "token_id": 313, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "live", + "token_id": 314, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 315, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "sep", + "token_id": 316, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "03", + "token_id": 317, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 318, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 319, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 320, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 321, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 322, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 323, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "references", + "token_id": 324, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 325, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 326, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 327, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "reflist", + "token_id": 328, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 329, + "o_rev_id": 448414637, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 330, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "concepts", + "token_id": 331, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "are", + "token_id": 332, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 333, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "unity", + "token_id": 334, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 335, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "continuity", + "token_id": 336, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 337, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "embodiment", + "token_id": 338, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 339, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "privacy", + "token_id": 340, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 341, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "social", + "token_id": 342, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "embedding", + "token_id": 343, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 344, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "free", + "token_id": 345, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 346, + "o_rev_id": 450626031, + "in": [], + "out": [ + 967554085 + ] + }, + { + "str": "will", + "token_id": 347, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 348, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 349, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "self", + "token_id": 350, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 351, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "awareness", + "token_id": 352, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 353, + "o_rev_id": 450626031, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 354, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "infobox", + "token_id": 355, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 356, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "", + "token_id": 366, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 367, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 368, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 369, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 370, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 371, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 372, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 373, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 374, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 375, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 376, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "neuroscientist", + "token_id": 377, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 378, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 379, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "quest", + "token_id": 380, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 381, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 382, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "makes", + "token_id": 383, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 384, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 385, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 386, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "image", + "token_id": 387, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 388, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 389, + "o_rev_id": 450673847, + "in": [], + "out": [ + 694843789 + ] + }, + { + "str": "file", + "token_id": 390, + "o_rev_id": 450673847, + "in": [], + "out": [ + 694843789 + ] + }, + { + "str": ":", + "token_id": 391, + "o_rev_id": 450673847, + "in": [], + "out": [ + 694843789 + ] + }, + { + "str": "the", + "token_id": 392, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 393, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 394, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 395, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "cover", + "token_id": 396, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 397, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "jpg", + "token_id": 398, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 399, + "o_rev_id": 450673847, + "in": [], + "out": [ + 694843789 + ] + }, + { + "str": "", + "token_id": 413, + "o_rev_id": 450673847, + "in": [], + "out": [ + 694843789 + ] + }, + { + "str": "|", + "token_id": 414, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "image", + "token_id": 415, + "o_rev_id": 450673847, + "in": [], + "out": [ + 544935892 + ] + }, + { + "str": "_", + "token_id": 416, + "o_rev_id": 450673847, + "in": [], + "out": [ + 544935892 + ] + }, + { + "str": "caption", + "token_id": 417, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 418, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 419, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "author", + "token_id": 420, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 421, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 422, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "vilayanur", + "token_id": 423, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 424, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 425, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 426, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 427, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 428, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 429, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 430, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "orig", + "token_id": 431, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 432, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 433, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "translator", + "token_id": 434, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 435, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 436, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "illustrator", + "token_id": 437, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 438, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 439, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "cover", + "token_id": 440, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 441, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "artist", + "token_id": 442, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 443, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 444, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "country", + "token_id": 445, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 446, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 447, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 448, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 449, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "english", + "token_id": 450, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 451, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "series", + "token_id": 452, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 453, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 454, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "subject", + "token_id": 455, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 456, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 457, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "neuroscience", + "token_id": 458, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 459, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 460, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "genre", + "token_id": 461, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 462, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 463, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "non", + "token_id": 464, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 465, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "fiction", + "token_id": 466, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 467, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 468, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "publisher", + "token_id": 469, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 470, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "w", + "token_id": 471, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 472, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "w", + "token_id": 473, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 474, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "norton", + "token_id": 475, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 476, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "company", + "token_id": 477, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 478, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "pub", + "token_id": 479, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 480, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 481, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 482, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "january", + "token_id": 483, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "17", + "token_id": 484, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 485, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 486, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 487, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "english", + "token_id": 488, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 489, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "pub", + "token_id": 490, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 491, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 492, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 493, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 494, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "media", + "token_id": 495, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 496, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "type", + "token_id": 497, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 498, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 499, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "pages", + "token_id": 500, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 501, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "357", + "token_id": 502, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 503, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "isbn", + "token_id": 504, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 505, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "978", + "token_id": 506, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 507, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "0393077827", + "token_id": 508, + "o_rev_id": 450673847, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "|", + "token_id": 509, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "oclc", + "token_id": 510, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 511, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 512, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "dewey", + "token_id": 513, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 514, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 515, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "congress", + "token_id": 516, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 517, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 518, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "preceded", + "token_id": 519, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 520, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 521, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 522, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 523, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "followed", + "token_id": 524, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 525, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 526, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 527, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 528, + "o_rev_id": 450673847, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 529, + "o_rev_id": 455120457, + "in": [], + "out": [ + 463583282 + ] + }, + { + "str": "tell", + "token_id": 530, + "o_rev_id": 455120457, + "in": [], + "out": [ + 463583282 + ] + }, + { + "str": "-", + "token_id": 531, + "o_rev_id": 455120457, + "in": [], + "out": [ + 463583282 + ] + }, + { + "str": "tale", + "token_id": 532, + "o_rev_id": 455120457, + "in": [], + "out": [ + 463583282 + ] + }, + { + "str": "brain", + "token_id": 533, + "o_rev_id": 455120457, + "in": [], + "out": [ + 463583282 + ] + }, + { + "str": "did", + "token_id": 534, + "o_rev_id": 455120457, + "in": [], + "out": [ + 463583282 + ] + }, + { + "str": "receive", + "token_id": 535, + "o_rev_id": 455120457, + "in": [], + "out": [ + 463583282 + ] + }, + { + "str": "some", + "token_id": 536, + "o_rev_id": 455120457, + "in": [], + "out": [ + 463583282 + ] + }, + { + "str": "critical", + "token_id": 537, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "reviews", + "token_id": 538, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ".", + "token_id": 539, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "nicholas", + "token_id": 540, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "shakespeare", + "token_id": 541, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 542, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "the", + "token_id": 543, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "eminent", + "token_id": 544, + "o_rev_id": 455120457, + "in": [], + "out": [ + 455233959 + ] + }, + { + "str": "british", + "token_id": 545, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "writer", + "token_id": 546, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "felt", + "token_id": 547, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "that", + "token_id": 548, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 549, + "o_rev_id": 455120457, + "in": [], + "out": [ + 455233959 + ] + }, + { + "str": "author", + "token_id": 550, + "o_rev_id": 455120457, + "in": [], + "out": [ + 455233959 + ] + }, + { + "str": "did", + "token_id": 551, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "not", + "token_id": 552, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "really", + "token_id": 553, + "o_rev_id": 455120457, + "in": [], + "out": [ + 455233959 + ] + }, + { + "str": "engage", + "token_id": 554, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "his", + "token_id": 555, + "o_rev_id": 455120457, + "in": [], + "out": [ + 455233959 + ] + }, + { + "str": "subject", + "token_id": 556, + "o_rev_id": 455120457, + "in": [], + "out": [ + 455233959 + ] + }, + { + "str": ":", + "token_id": 557, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 558, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "ramachandran", + "token_id": 559, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "wanders", + "token_id": 560, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "along", + "token_id": 561, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "intriguing", + "token_id": 562, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "neural", + "token_id": 563, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "pathways", + "token_id": 564, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 565, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "pausing", + "token_id": 566, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 567, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "investigate", + "token_id": 568, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "strange", + "token_id": 569, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "disorders", + "token_id": 570, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 571, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "but", + "token_id": 572, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 573, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "leaves", + "token_id": 574, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 575, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "impression", + "token_id": 576, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 577, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 578, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 579, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 580, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "explorer", + "token_id": 581, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "who", + "token_id": 582, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "has", + "token_id": 583, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "yet", + "token_id": 584, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 585, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "leave", + "token_id": 586, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 587, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "coast", + "token_id": 588, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 589, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "further", + "token_id": 590, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 591, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 592, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "appears", + "token_id": 593, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "not", + "token_id": 594, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "fully", + "token_id": 595, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 596, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "appreciate", + "token_id": 597, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 598, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 599, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "interior", + "token_id": 600, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 601, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "this", + "token_id": 602, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "vast", + "token_id": 603, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "continent", + "token_id": 604, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 605, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 606, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "mapping", + "token_id": 607, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "may", + "token_id": 608, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "be", + "token_id": 609, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 610, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "war", + "token_id": 611, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 612, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 613, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 614, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 615, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "intermittently", + "token_id": 616, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "fascinating", + "token_id": 617, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 618, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "but", + "token_id": 619, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 620, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "not", + "token_id": 621, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "important", + "token_id": 622, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 623, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 624, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "way", + "token_id": 625, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 626, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "iain", + "token_id": 627, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "mcgilchrist", + "token_id": 628, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 629, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "master", + "token_id": 630, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 631, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 632, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "emissary", + "token_id": 633, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 634, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "last", + "token_id": 635, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "year", + "token_id": 636, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "’", + "token_id": 637, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "s", + "token_id": 638, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "magisterial", + "token_id": 639, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "study", + "token_id": 640, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "of", + "token_id": 641, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 642, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "brain", + "token_id": 643, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "’", + "token_id": 644, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "s", + "token_id": 645, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "two", + "token_id": 646, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "opposed", + "token_id": 647, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "hemispheres", + "token_id": 648, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 649, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "which", + "token_id": 650, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "it", + "token_id": 651, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "nicely", + "token_id": 652, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "(", + "token_id": 653, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "though", + "token_id": 654, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "unintentionally", + "token_id": 655, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ")", + "token_id": 656, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "complements", + "token_id": 657, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "–", + "token_id": 658, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "even", + "token_id": 659, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "to", + "token_id": 660, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 661, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "extent", + "token_id": 662, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "of", + "token_id": 663, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "using", + "token_id": 664, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "some", + "token_id": 665, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "of", + "token_id": 666, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 667, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "same", + "token_id": 668, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "illustrations", + "token_id": 669, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ".", + "token_id": 670, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 671, + "o_rev_id": 455120457, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "<", + "token_id": 672, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 673, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 674, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "nicholas", + "token_id": 675, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "shakespeare", + "token_id": 676, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ",", + "token_id": 677, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "book", + "token_id": 678, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "reviews", + "token_id": 679, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ",", + "token_id": 680, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "the", + "token_id": 681, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "telegraph", + "token_id": 682, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ",", + "token_id": 683, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "jan", + "token_id": 684, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "7", + "token_id": 685, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ",", + "token_id": 686, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "2011", + "token_id": 687, + "o_rev_id": 455120457, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "[", + "token_id": 688, + "o_rev_id": 455120457, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "http", + "token_id": 689, + "o_rev_id": 455120457, + "in": [], + "out": [ + 833891199 + ] + }, + { + "str": ":", + "token_id": 690, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 691, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 692, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 693, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 694, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "telegraph", + "token_id": 695, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 696, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "co", + "token_id": 697, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 698, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "uk", + "token_id": 699, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 700, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "culture", + "token_id": 701, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 702, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 703, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 704, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "bookreviews", + "token_id": 705, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 706, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "8243355", + "token_id": 707, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 708, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 709, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 710, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 711, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 712, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 713, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 714, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 715, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 716, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "unlocking", + "token_id": 717, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 718, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 719, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 720, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "mystery", + "token_id": 721, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 722, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "ofhuman", + "token_id": 723, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 724, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "nature", + "token_id": 725, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 726, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 727, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 728, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "v", + "token_id": 729, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 730, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 731, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 732, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 733, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 734, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 735, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 736, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 737, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 738, + "o_rev_id": 455120457, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "<", + "token_id": 739, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 740, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 741, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 742, + "o_rev_id": 455120457, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 743, + "o_rev_id": 455233959, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 744, + "o_rev_id": 455233959, + "in": [], + "out": [] + }, + { + "str": "well", + "token_id": 745, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "known", + "token_id": 746, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ",", + "token_id": 747, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "ramachandran", + "token_id": 748, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "fully", + "token_id": 749, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 750, + "o_rev_id": 455233959, + "in": [], + "out": [] + }, + { + "str": "ideas", + "token_id": 751, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "presented", + "token_id": 752, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "in", + "token_id": 753, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 754, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "book", + "token_id": 755, + "o_rev_id": 455233959, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "[[", + "token_id": 756, + "o_rev_id": 460650213, + "in": [], + "out": [ + 460730548 + ] + }, + { + "str": "]]", + "token_id": 757, + "o_rev_id": 460650213, + "in": [], + "out": [ + 460730548 + ] + }, + { + "str": "'", + "token_id": 758, + "o_rev_id": 460650213, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "s", + "token_id": 759, + "o_rev_id": 460650213, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "'", + "token_id": 760, + "o_rev_id": 460650213, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "'", + "token_id": 761, + "o_rev_id": 460650213, + "in": [], + "out": [ + 460730548 + ] + }, + { + "str": "[[", + "token_id": 762, + "o_rev_id": 460650213, + "in": [], + "out": [ + 460730548 + ] + }, + { + "str": "]]", + "token_id": 763, + "o_rev_id": 460650213, + "in": [], + "out": [ + 460730548 + ] + }, + { + "str": "'", + "token_id": 764, + "o_rev_id": 460650213, + "in": [], + "out": [ + 460730548 + ] + }, + { + "str": "'", + "token_id": 765, + "o_rev_id": 460650213, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "ramachandran", + "token_id": 766, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 767, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "book", + "token_id": 768, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "was", + "token_id": 769, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 770, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 771, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "new", + "token_id": 772, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "york", + "token_id": 773, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "times", + "token_id": 774, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "best", + "token_id": 775, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 776, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "seller", + "token_id": 777, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "list", + "token_id": 778, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 779, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "received", + "token_id": 780, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "very", + "token_id": 781, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "positive", + "token_id": 782, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "reviews", + "token_id": 783, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "for", + "token_id": 784, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "the", + "token_id": 785, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "most", + "token_id": 786, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "part", + "token_id": 787, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": ".", + "token_id": 788, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463585308 + ] + }, + { + "str": "oliver", + "token_id": 789, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "sacks", + "token_id": 790, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "says", + "token_id": 791, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "(", + "token_id": 792, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "on", + "token_id": 793, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "the", + "token_id": 794, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "cover", + "token_id": 795, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": ")", + "token_id": 796, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "\"", + "token_id": 797, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "no", + "token_id": 798, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "one", + "token_id": 799, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 800, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "better", + "token_id": 801, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "than", + "token_id": 802, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "vs", + "token_id": 803, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "ramachandran", + "token_id": 804, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 805, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "combining", + "token_id": 806, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "minute", + "token_id": 807, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 808, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "careful", + "token_id": 809, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "observations", + "token_id": 810, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "with", + "token_id": 811, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "ingenious", + "token_id": 812, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "experiments", + "token_id": 813, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 814, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "bold", + "token_id": 815, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "adventurous", + "token_id": 816, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "theorizing", + "token_id": 817, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 818, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 819, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 820, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 821, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 822, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "profoundly", + "token_id": 823, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "intriguing", + "token_id": 824, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 825, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "compelling", + "token_id": 826, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "guide", + "token_id": 827, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 828, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 829, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "intricacies", + "token_id": 830, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 831, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 832, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 833, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 834, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 835, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 836, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "allan", + "token_id": 837, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020 + ] + }, + { + "str": "snyder", + "token_id": 838, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020 + ] + }, + { + "str": ",", + "token_id": 839, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": "director", + "token_id": 840, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": "of", + "token_id": 841, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": "the", + "token_id": 842, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": "center", + "token_id": 843, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": "for", + "token_id": 844, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": "the", + "token_id": 845, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": "mind", + "token_id": 846, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": ",", + "token_id": 847, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967553019 + ] + }, + { + "str": "australian", + "token_id": 848, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "national", + "token_id": 849, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "university", + "token_id": 850, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "adds", + "token_id": 851, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 852, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 853, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "masterpiece", + "token_id": 854, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 855, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 856, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 857, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 858, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "is", + "token_id": 859, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "the", + "token_id": 860, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "foremost", + "token_id": 861, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "pioneer", + "token_id": 862, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "—", + "token_id": 863, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "the", + "token_id": 864, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "galileo", + "token_id": 865, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "—", + "token_id": 866, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "of", + "token_id": 867, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "neurocognition", + "token_id": 868, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": ".", + "token_id": 869, + "o_rev_id": 460730548, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "\"", + "token_id": 870, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 871, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "nickolas", + "token_id": 872, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "humphrey", + "token_id": 873, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 874, + "o_rev_id": 460730548, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "professor", + "token_id": 875, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 876, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "university", + "token_id": 877, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "college", + "token_id": 878, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 879, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "london", + "token_id": 880, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 881, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "ramachandran", + "token_id": 882, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "has", + "token_id": 883, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "written", + "token_id": 884, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "an", + "token_id": 885, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "astonishing", + "token_id": 886, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "book", + "token_id": 887, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 888, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "his", + "token_id": 889, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "humanity", + "token_id": 890, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 891, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "humor", + "token_id": 892, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 893, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "scientific", + "token_id": 894, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "genius", + "token_id": 895, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "inform", + "token_id": 896, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "every", + "token_id": 897, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "passage", + "token_id": 898, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 899, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 900, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 901, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "book", + "token_id": 902, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "also", + "token_id": 903, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "received", + "token_id": 904, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "much", + "token_id": 905, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "acclaim", + "token_id": 906, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 907, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "book", + "token_id": 908, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "reviews", + "token_id": 909, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "published", + "token_id": 910, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 911, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "newspapers", + "token_id": 912, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 913, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "journals", + "token_id": 914, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ":", + "token_id": 915, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 916, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "much", + "token_id": 917, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 918, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "“the", + "token_id": 919, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "tell", + "token_id": 920, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 921, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "tale", + "token_id": 922, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "brain", + "token_id": 923, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 924, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "”", + "token_id": 925, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 926, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 927, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 928, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 929, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 930, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "general", + "token_id": 931, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "tour", + "token_id": 932, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 933, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "neuroscience", + "token_id": 934, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 935, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "there", + "token_id": 936, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "are", + "token_id": 937, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "lively", + "token_id": 938, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "treatments", + "token_id": 939, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 940, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "three", + "token_id": 941, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "areas", + "token_id": 942, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 943, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "which", + "token_id": 944, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "ramachandran", + "token_id": 945, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "has", + "token_id": 946, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "himself", + "token_id": 947, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "done", + "token_id": 948, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "pioneering", + "token_id": 949, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "work", + "token_id": 950, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ":", + "token_id": 951, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "visual", + "token_id": 952, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "perception", + "token_id": 953, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 954, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "pain", + "token_id": 955, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 956, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "amputated", + "token_id": 957, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "“phantom", + "token_id": 958, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "”", + "token_id": 959, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "limbs", + "token_id": 960, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 961, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 962, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "synesthesia", + "token_id": 963, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 964, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 965, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 966, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "ramachandran", + "token_id": 967, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 968, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "an", + "token_id": 969, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "exceptionally", + "token_id": 970, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "inventive", + "token_id": 971, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "researcher", + "token_id": 972, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "who", + "token_id": 973, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "tosses", + "token_id": 974, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "off", + "token_id": 975, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "suggestions", + "token_id": 976, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "at", + "token_id": 977, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 978, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "dizzying", + "token_id": 979, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "pace", + "token_id": 980, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 981, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "antony", + "token_id": 982, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "gottlieb", + "token_id": 983, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 984, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "international", + "token_id": 985, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "herald", + "token_id": 986, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "tribune", + "token_id": 987, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "(", + "token_id": 988, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "29", + "token_id": 989, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 990, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "1", + "token_id": 991, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 992, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "11", + "token_id": 993, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ")", + "token_id": 994, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 995, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 996, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "i", + "token_id": 997, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "cannot", + "token_id": 998, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "imagine", + "token_id": 999, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 1000, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "better", + "token_id": 1001, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "account", + "token_id": 1002, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1003, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1004, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "sweep", + "token_id": 1005, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1006, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "contemporary", + "token_id": 1007, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "neuroscience", + "token_id": 1008, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1009, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1010, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1011, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "excellent", + "token_id": 1012, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1013, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1014, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1015, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "will", + "token_id": 1016, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "give", + "token_id": 1017, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "pleasure", + "token_id": 1018, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1019, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "anyone", + "token_id": 1020, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "interested", + "token_id": 1021, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 1022, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "original", + "token_id": 1023, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "thinking", + "token_id": 1024, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "about", + "token_id": 1025, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1026, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "brain", + "token_id": 1027, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1028, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 1029, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "clive", + "token_id": 1030, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "cookson", + "token_id": 1031, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1032, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "financial", + "token_id": 1033, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "times", + "token_id": 1034, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "(", + "token_id": 1035, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "15", + "token_id": 1036, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1037, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "1", + "token_id": 1038, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1039, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "11", + "token_id": 1040, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ")", + "token_id": 1041, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "http", + "token_id": 1042, + "o_rev_id": 460730548, + "in": [], + "out": [ + 800928735 + ] + }, + { + "str": ":", + "token_id": 1043, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1044, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1045, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "www", + "token_id": 1046, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": ".", + "token_id": 1047, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "ft", + "token_id": 1048, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1049, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "com", + "token_id": 1050, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1051, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "cms", + "token_id": 1052, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "/", + "token_id": 1053, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "s", + "token_id": 1054, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1055, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "2", + "token_id": 1056, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "/", + "token_id": 1057, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2275273a", + "token_id": 1058, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1059, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "1f56", + "token_id": 1060, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1061, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "11e0", + "token_id": 1062, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1063, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "8c1c", + "token_id": 1064, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1065, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "00144feab49a", + "token_id": 1066, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1067, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 1068, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "#", + "token_id": 1069, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "axzz1bi6rfptv", + "token_id": 1070, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "'", + "token_id": 1071, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 1072, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "what", + "token_id": 1073, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 1074, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "piece", + "token_id": 1075, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1076, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "work", + "token_id": 1077, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 1078, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "man", + "token_id": 1079, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "!", + "token_id": 1080, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 1081, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "how", + "token_id": 1082, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "many", + "token_id": 1083, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "monkeys", + "token_id": 1084, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "would", + "token_id": 1085, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "it", + "token_id": 1086, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "have", + "token_id": 1087, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "taken", + "token_id": 1088, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1089, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "come", + "token_id": 1090, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "up", + "token_id": 1091, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "with", + "token_id": 1092, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "that", + "token_id": 1093, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "tag", + "token_id": 1094, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "from", + "token_id": 1095, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "hamlet", + "token_id": 1096, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "?", + "token_id": 1097, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "are", + "token_id": 1098, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "we", + "token_id": 1099, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "really", + "token_id": 1100, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "no", + "token_id": 1101, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "more", + "token_id": 1102, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "than", + "token_id": 1103, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 1104, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "chimps", + "token_id": 1105, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "with", + "token_id": 1106, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 1107, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "software", + "token_id": 1108, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "upgrade", + "token_id": 1109, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "\"", + "token_id": 1110, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "?", + "token_id": 1111, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "yes", + "token_id": 1112, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 1113, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "–", + "token_id": 1114, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "emphatically", + "token_id": 1115, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "–", + "token_id": 1116, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "no", + "token_id": 1117, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1118, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "comes", + "token_id": 1119, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1120, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "reply", + "token_id": 1121, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "from", + "token_id": 1122, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "neurologist", + "token_id": 1123, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "vs", + "token_id": 1124, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "ramachandran", + "token_id": 1125, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1126, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "our", + "token_id": 1127, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "brains", + "token_id": 1128, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "are", + "token_id": 1129, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "those", + "token_id": 1130, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1131, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "apes", + "token_id": 1132, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ":", + "token_id": 1133, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "ramachandran", + "token_id": 1134, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 1135, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 1136, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "no", + "token_id": 1137, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "doubt", + "token_id": 1138, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1139, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "that", + "token_id": 1140, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1141, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "yet", + "token_id": 1142, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "at", + "token_id": 1143, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1144, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "same", + "token_id": 1145, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "time", + "token_id": 1146, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "we", + "token_id": 1147, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "'", + "token_id": 1148, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "re", + "token_id": 1149, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "uniquely", + "token_id": 1150, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "special", + "token_id": 1151, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "too", + "token_id": 1152, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1153, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 1154, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "life", + "token_id": 1155, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "work", + "token_id": 1156, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "has", + "token_id": 1157, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "been", + "token_id": 1158, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "about", + "token_id": 1159, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "getting", + "token_id": 1160, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1161, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "grips", + "token_id": 1162, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "with", + "token_id": 1163, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1164, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "mental", + "token_id": 1165, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "mechanisms", + "token_id": 1166, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "that", + "token_id": 1167, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "make", + "token_id": 1168, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1169, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "miraculous", + "token_id": 1170, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "mundane", + "token_id": 1171, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1172, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "he", + "token_id": 1173, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "goes", + "token_id": 1174, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1175, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "real", + "token_id": 1176, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1177, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "life", + "token_id": 1178, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "clinical", + "token_id": 1179, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "cases", + "token_id": 1180, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "for", + "token_id": 1181, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "evidence", + "token_id": 1182, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1183, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "exactly", + "token_id": 1184, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "how", + "token_id": 1185, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1186, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "brain", + "token_id": 1187, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "behaves", + "token_id": 1188, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 1189, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "action", + "token_id": 1190, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "or", + "token_id": 1191, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "examines", + "token_id": 1192, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1193, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "experimental", + "token_id": 1194, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "record", + "token_id": 1195, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "for", + "token_id": 1196, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "clues", + "token_id": 1197, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1198, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1199, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "wonderful", + "token_id": 1200, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "intricacy", + "token_id": 1201, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 1202, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "astonishing", + "token_id": 1203, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "scope", + "token_id": 1204, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1205, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1206, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "human", + "token_id": 1207, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "mind", + "token_id": 1208, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1209, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "*", + "token_id": 1210, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "*", + "token_id": 1211, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "*", + "token_id": 1212, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "*", + "token_id": 1213, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "*", + "token_id": 1214, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "scotsman", + "token_id": 1215, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "(", + "token_id": 1216, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "15", + "token_id": 1217, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1218, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "1", + "token_id": 1219, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1220, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "11", + "token_id": 1221, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ")", + "token_id": 1222, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "http", + "token_id": 1223, + "o_rev_id": 460730548, + "in": [], + "out": [ + 800928735 + ] + }, + { + "str": ":", + "token_id": 1224, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1225, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1226, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "www", + "token_id": 1227, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": ".", + "token_id": 1228, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "scotsman", + "token_id": 1229, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1230, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "com", + "token_id": 1231, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1232, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "features", + "token_id": 1233, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "/", + "token_id": 1234, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "book", + "token_id": 1235, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1236, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "review", + "token_id": 1237, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1238, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1239, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1240, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "telltale", + "token_id": 1241, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1242, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "brain", + "token_id": 1243, + "o_rev_id": 460730548, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": ".", + "token_id": 1244, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "6691176", + "token_id": 1245, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1246, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "jp", + "token_id": 1247, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "‘when", + "token_id": 1248, + "o_rev_id": 460730548, + "in": [], + "out": [ + 460801847 + ] + }, + { + "str": "vs", + "token_id": 1249, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "ramachandran", + "token_id": 1250, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1251, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "one", + "token_id": 1252, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1253, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 1254, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "world", + "token_id": 1255, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "’", + "token_id": 1256, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "s", + "token_id": 1257, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "most", + "token_id": 1258, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "influential", + "token_id": 1259, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "neurologists", + "token_id": 1260, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1261, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "wants", + "token_id": 1262, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1263, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "get", + "token_id": 1264, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "inside", + "token_id": 1265, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 1266, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "human", + "token_id": 1267, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "head", + "token_id": 1268, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1269, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "he", + "token_id": 1270, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "doesn", + "token_id": 1271, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "’", + "token_id": 1272, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "t", + "token_id": 1273, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "reach", + "token_id": 1274, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "for", + "token_id": 1275, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "his", + "token_id": 1276, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "scalpel", + "token_id": 1277, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "or", + "token_id": 1278, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "mri", + "token_id": 1279, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "scanner", + "token_id": 1280, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1281, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "instead", + "token_id": 1282, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1283, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "like", + "token_id": 1284, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "sherlock", + "token_id": 1285, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "holmes", + "token_id": 1286, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "(", + "token_id": 1287, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1288, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "whom", + "token_id": 1289, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "he", + "token_id": 1290, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 1291, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "often", + "token_id": 1292, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "compared", + "token_id": 1293, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ")", + "token_id": 1294, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1295, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "he", + "token_id": 1296, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "seizes", + "token_id": 1297, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "on", + "token_id": 1298, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "an", + "token_id": 1299, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "oddity", + "token_id": 1300, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 1301, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 1302, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "case", + "token_id": 1303, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "study", + "token_id": 1304, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1305, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "then", + "token_id": 1306, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "begins", + "token_id": 1307, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 1308, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "pleasing", + "token_id": 1309, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "process", + "token_id": 1310, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1311, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "deduction", + "token_id": 1312, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "interspersed", + "token_id": 1313, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "with", + "token_id": 1314, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "leaps", + "token_id": 1315, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1316, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "excitingly", + "token_id": 1317, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "creative", + "token_id": 1318, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "thought", + "token_id": 1319, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1320, + "o_rev_id": 460730548, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "this", + "token_id": 1321, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "absorbing", + "token_id": 1322, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "book", + "token_id": 1323, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "charts", + "token_id": 1324, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1325, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "acclaimed", + "token_id": 1326, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "experiments", + "token_id": 1327, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "he", + "token_id": 1328, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "has", + "token_id": 1329, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "performed", + "token_id": 1330, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "around", + "token_id": 1331, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1332, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "world", + "token_id": 1333, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 1334, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "at", + "token_id": 1335, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 1336, + "o_rev_id": 460730548, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "university", + "token_id": 1337, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "of", + "token_id": 1338, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "california", + "token_id": 1339, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "’", + "token_id": 1340, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "s", + "token_id": 1341, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "cutting", + "token_id": 1342, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1343, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "edge", + "token_id": 1344, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "centre", + "token_id": 1345, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "for", + "token_id": 1346, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1347, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "brain", + "token_id": 1348, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1349, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 1350, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "explains", + "token_id": 1351, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "how", + "token_id": 1352, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "they", + "token_id": 1353, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "have", + "token_id": 1354, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "helped", + "token_id": 1355, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "unravel", + "token_id": 1356, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1357, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "workings", + "token_id": 1358, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1359, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1360, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "human", + "token_id": 1361, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "mind", + "token_id": 1362, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1363, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "’", + "token_id": 1364, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "james", + "token_id": 1365, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "mcconnachie", + "token_id": 1366, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1367, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "sunday", + "token_id": 1368, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "times", + "token_id": 1369, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "(", + "token_id": 1370, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "9", + "token_id": 1371, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1372, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "1", + "token_id": 1373, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1374, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "11", + "token_id": 1375, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ")", + "token_id": 1376, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "‘compared", + "token_id": 1377, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "with", + "token_id": 1378, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "physics", + "token_id": 1379, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 1380, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "chemistry", + "token_id": 1381, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1382, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "says", + "token_id": 1383, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "ramachandran", + "token_id": 1384, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1385, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "neuroscience", + "token_id": 1386, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 1387, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "a", + "token_id": 1388, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "young", + "token_id": 1389, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "upstart", + "token_id": 1390, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1391, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "but", + "token_id": 1392, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "it", + "token_id": 1393, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "’", + "token_id": 1394, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "s", + "token_id": 1395, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "growing", + "token_id": 1396, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "up", + "token_id": 1397, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "fast", + "token_id": 1398, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1399, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "this", + "token_id": 1400, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "book", + "token_id": 1401, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1402, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 1403, + "o_rev_id": 460730548, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "“modest", + "token_id": 1404, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "contribution", + "token_id": 1405, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1406, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1407, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "grand", + "token_id": 1408, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "attempt", + "token_id": 1409, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1410, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "crack", + "token_id": 1411, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1412, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "code", + "token_id": 1413, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1414, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1415, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "human", + "token_id": 1416, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "brain", + "token_id": 1417, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "”", + "token_id": 1418, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1419, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 1420, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "written", + "token_id": 1421, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "with", + "token_id": 1422, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "all", + "token_id": 1423, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "his", + "token_id": 1424, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "synapses", + "token_id": 1425, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "lit", + "token_id": 1426, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "up", + "token_id": 1427, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "like", + "token_id": 1428, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "supernovas", + "token_id": 1429, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1430, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "his", + "token_id": 1431, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "mission", + "token_id": 1432, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "to", + "token_id": 1433, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "educate", + "token_id": 1434, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 1435, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "entertain", + "token_id": 1436, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 1437, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "perfectly", + "token_id": 1438, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "achieved", + "token_id": 1439, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1440, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1441, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1442, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "like", + "token_id": 1443, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "sherlock", + "token_id": 1444, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "holmes", + "token_id": 1445, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1446, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "he", + "token_id": 1447, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "imagines", + "token_id": 1448, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "what", + "token_id": 1449, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "might", + "token_id": 1450, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "be", + "token_id": 1451, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "true", + "token_id": 1452, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 1453, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "tests", + "token_id": 1454, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "it", + "token_id": 1455, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "for", + "token_id": 1456, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "probability", + "token_id": 1457, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1458, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "neuroscience", + "token_id": 1459, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "and", + "token_id": 1460, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "stand", + "token_id": 1461, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "-", + "token_id": 1462, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "up", + "token_id": 1463, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "comedy", + "token_id": 1464, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "collide", + "token_id": 1465, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "with", + "token_id": 1466, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "eureka", + "token_id": 1467, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "results", + "token_id": 1468, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1469, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "’", + "token_id": 1470, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "iain", + "token_id": 1471, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "finlayson", + "token_id": 1472, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1473, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "times", + "token_id": 1474, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "(", + "token_id": 1475, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "1", + "token_id": 1476, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1477, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "1", + "token_id": 1478, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1479, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "11", + "token_id": 1480, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ")", + "token_id": 1481, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1482, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "book", + "token_id": 1483, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "is", + "token_id": 1484, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "mentioned", + "token_id": 1485, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 1486, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1487, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "eureka", + "token_id": 1488, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "supplement", + "token_id": 1489, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1490, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1491, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "times", + "token_id": 1492, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "(", + "token_id": 1493, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "january", + "token_id": 1494, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2011", + "token_id": 1495, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ")", + "token_id": 1496, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "–", + "token_id": 1497, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "‘a", + "token_id": 1498, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "holmesian", + "token_id": 1499, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "look", + "token_id": 1500, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "at", + "token_id": 1501, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "what", + "token_id": 1502, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "we", + "token_id": 1503, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "learn", + "token_id": 1504, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "about", + "token_id": 1505, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "human", + "token_id": 1506, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "nature", + "token_id": 1507, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "when", + "token_id": 1508, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1509, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "brain", + "token_id": 1510, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "goes", + "token_id": 1511, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "wrong", + "token_id": 1512, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1513, + "o_rev_id": 460730548, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "written", + "token_id": 1514, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "by", + "token_id": 1515, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "one", + "token_id": 1516, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "of", + "token_id": 1517, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1518, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "leading", + "token_id": 1519, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "neuroscientists", + "token_id": 1520, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "in", + "token_id": 1521, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "the", + "token_id": 1522, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "world", + "token_id": 1523, + "o_rev_id": 460730548, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ".", + "token_id": 1524, + "o_rev_id": 460730548, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1525, + "o_rev_id": 460801847, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "clean", + "token_id": 1526, + "o_rev_id": 460801847, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "up", + "token_id": 1527, + "o_rev_id": 460801847, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "}}", + "token_id": 1528, + "o_rev_id": 460801847, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "=", + "token_id": 1529, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1530, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "reception", + "token_id": 1531, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1532, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1533, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "", + "token_id": 1542, + "o_rev_id": 460801847, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "{{", + "token_id": 1543, + "o_rev_id": 460801847, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "ad", + "token_id": 1544, + "o_rev_id": 460801847, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "}}", + "token_id": 1545, + "o_rev_id": 460801847, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "'", + "token_id": 1546, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1547, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 1548, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1549, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 1550, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 1551, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1552, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 1553, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "largely", + "token_id": 1554, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463585308 + ] + }, + { + "str": "writes", + "token_id": 1555, + "o_rev_id": 460801847, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 1556, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "v", + "token_id": 1557, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1558, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 1559, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1560, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 1561, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "fact", + "token_id": 1562, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "}}", + "token_id": 1563, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": ",", + "token_id": 1564, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "[[", + "token_id": 1565, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "]]", + "token_id": 1566, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "{{", + "token_id": 1567, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "fact", + "token_id": 1568, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "}}", + "token_id": 1569, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "{{", + "token_id": 1570, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "fact", + "token_id": 1571, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "}}", + "token_id": 1572, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "{{", + "token_id": 1573, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "fact", + "token_id": 1574, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "}}", + "token_id": 1575, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "<", + "token_id": 1576, + "o_rev_id": 460801847, + "in": [ + 772572484 + ], + "out": [ + 520569830, + 908258055 + ] + }, + { + "str": "ref", + "token_id": 1577, + "o_rev_id": 460801847, + "in": [ + 772572484 + ], + "out": [ + 520569830, + 908258055 + ] + }, + { + "str": ">", + "token_id": 1578, + "o_rev_id": 460801847, + "in": [ + 772572484 + ], + "out": [ + 520569830, + 908258055 + ] + }, + { + "str": "<", + "token_id": 1579, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1580, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1581, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1582, + "o_rev_id": 460801847, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1583, + "o_rev_id": 460801847, + "in": [ + 466775504 + ], + "out": [ + 463754831, + 908259693 + ] + }, + { + "str": "when", + "token_id": 1584, + "o_rev_id": 460801847, + "in": [ + 466775504 + ], + "out": [ + 463754831 + ] + }, + { + "str": "{{", + "token_id": 1585, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "fact", + "token_id": 1586, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "}}", + "token_id": 1587, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "{{", + "token_id": 1588, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "fact", + "token_id": 1589, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "}}", + "token_id": 1590, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "{{", + "token_id": 1591, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "fact", + "token_id": 1592, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "}}", + "token_id": 1593, + "o_rev_id": 460801847, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "|", + "token_id": 1594, + "o_rev_id": 460804882, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "date", + "token_id": 1595, + "o_rev_id": 460804882, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "=", + "token_id": 1596, + "o_rev_id": 460804882, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "november", + "token_id": 1597, + "o_rev_id": 460804882, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "2011", + "token_id": 1598, + "o_rev_id": 460804882, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "|", + "token_id": 1599, + "o_rev_id": 460804882, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "date", + "token_id": 1600, + "o_rev_id": 460804882, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "=", + "token_id": 1601, + "o_rev_id": 460804882, + "in": [], + "out": [ + 490580070 + ] + }, + { + "str": "november", + "token_id": 1602, + "o_rev_id": 460804882, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "2011", + "token_id": 1603, + "o_rev_id": 460804882, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "|", + "token_id": 1604, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "date", + "token_id": 1605, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "=", + "token_id": 1606, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "november", + "token_id": 1607, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2011", + "token_id": 1608, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "|", + "token_id": 1609, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "date", + "token_id": 1610, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "=", + "token_id": 1611, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "november", + "token_id": 1612, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2011", + "token_id": 1613, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "|", + "token_id": 1614, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "date", + "token_id": 1615, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "=", + "token_id": 1616, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "november", + "token_id": 1617, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2011", + "token_id": 1618, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "|", + "token_id": 1619, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "date", + "token_id": 1620, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "=", + "token_id": 1621, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "november", + "token_id": 1622, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2011", + "token_id": 1623, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "|", + "token_id": 1624, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "date", + "token_id": 1625, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "=", + "token_id": 1626, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "november", + "token_id": 1627, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2011", + "token_id": 1628, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "|", + "token_id": 1629, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "date", + "token_id": 1630, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "=", + "token_id": 1631, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "november", + "token_id": 1632, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2011", + "token_id": 1633, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "|", + "token_id": 1634, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "date", + "token_id": 1635, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "=", + "token_id": 1636, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "november", + "token_id": 1637, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "2011", + "token_id": 1638, + "o_rev_id": 460804882, + "in": [], + "out": [ + 463754831 + ] + }, + { + "str": "=", + "token_id": 1639, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "=", + "token_id": 1640, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "=", + "token_id": 1641, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "=", + "token_id": 1642, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "in", + "token_id": 1643, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 1644, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "new", + "token_id": 1645, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "york", + "token_id": 1646, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "times", + "token_id": 1647, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 1648, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "[[", + "token_id": 1649, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "anthony", + "token_id": 1650, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "gottlieb", + "token_id": 1651, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1652, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "criticized", + "token_id": 1653, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 1654, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 1655, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "not", + "token_id": 1656, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "mentioning", + "token_id": 1657, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 1658, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "his", + "token_id": 1659, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "ideas", + "token_id": 1660, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "about", + "token_id": 1661, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1662, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "importance", + "token_id": 1663, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "of", + "token_id": 1664, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "mirror", + "token_id": 1665, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "neurons", + "token_id": 1666, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "are", + "token_id": 1667, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "controversial", + "token_id": 1668, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ":", + "token_id": 1669, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1670, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "although", + "token_id": 1671, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 1672, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "admits", + "token_id": 1673, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 1674, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 1675, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "account", + "token_id": 1676, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1677, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1678, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "significance", + "token_id": 1679, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 1680, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "mirror", + "token_id": 1681, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "neurons", + "token_id": 1682, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 1683, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "speculative", + "token_id": 1684, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1685, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 1686, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "doesn", + "token_id": 1687, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "’", + "token_id": 1688, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "t", + "token_id": 1689, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "let", + "token_id": 1690, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 1691, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "just", + "token_id": 1692, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "how", + "token_id": 1693, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "controversial", + "token_id": 1694, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 1695, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 1696, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1697, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "the", + "token_id": 1698, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "past", + "token_id": 1699, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "four", + "token_id": 1700, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "years", + "token_id": 1701, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ",", + "token_id": 1702, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "a", + "token_id": 1703, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "spate", + "token_id": 1704, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "of", + "token_id": 1705, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "studies", + "token_id": 1706, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "has", + "token_id": 1707, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "dented", + "token_id": 1708, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "every", + "token_id": 1709, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "part", + "token_id": 1710, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "of", + "token_id": 1711, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "the", + "token_id": 1712, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "mirror", + "token_id": 1713, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "-", + "token_id": 1714, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "neuron", + "token_id": 1715, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "story", + "token_id": 1716, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ".", + "token_id": 1717, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "doubt", + "token_id": 1718, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "has", + "token_id": 1719, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "been", + "token_id": 1720, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "cast", + "token_id": 1721, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "on", + "token_id": 1722, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 1723, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "idea", + "token_id": 1724, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "that", + "token_id": 1725, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "imitation", + "token_id": 1726, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "and", + "token_id": 1727, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 1728, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "understanding", + "token_id": 1729, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "of", + "token_id": 1730, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "actions", + "token_id": 1731, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "depend", + "token_id": 1732, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "on", + "token_id": 1733, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "mirror", + "token_id": 1734, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "neurons", + "token_id": 1735, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ",", + "token_id": 1736, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "and", + "token_id": 1737, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "on", + "token_id": 1738, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 1739, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "theory", + "token_id": 1740, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "that", + "token_id": 1741, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "autism", + "token_id": 1742, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "involves", + "token_id": 1743, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "a", + "token_id": 1744, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "defect", + "token_id": 1745, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "in", + "token_id": 1746, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "these", + "token_id": 1747, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "systems", + "token_id": 1748, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "of", + "token_id": 1749, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "cells", + "token_id": 1750, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ".", + "token_id": 1751, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 1752, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "has", + "token_id": 1753, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "even", + "token_id": 1754, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "been", + "token_id": 1755, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "claimed", + "token_id": 1756, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "that", + "token_id": 1757, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 1758, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "techniques", + "token_id": 1759, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "used", + "token_id": 1760, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "to", + "token_id": 1761, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "detect", + "token_id": 1762, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 1763, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "activity", + "token_id": 1764, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "of", + "token_id": 1765, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "mirror", + "token_id": 1766, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "neurons", + "token_id": 1767, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "have", + "token_id": 1768, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "been", + "token_id": 1769, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "widely", + "token_id": 1770, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "misinterpreted", + "token_id": 1771, + "o_rev_id": 463583282, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ".", + "token_id": 1772, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 1773, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "may", + "token_id": 1774, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "have", + "token_id": 1775, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "good", + "token_id": 1776, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "reason", + "token_id": 1777, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "to", + "token_id": 1778, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "discount", + "token_id": 1779, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "these", + "token_id": 1780, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "skeptical", + "token_id": 1781, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "studies", + "token_id": 1782, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ",", + "token_id": 1783, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "but", + "token_id": 1784, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "he", + "token_id": 1785, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "surely", + "token_id": 1786, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "should", + "token_id": 1787, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "have", + "token_id": 1788, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "mentioned", + "token_id": 1789, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "them", + "token_id": 1790, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ".", + "token_id": 1791, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 1792, + "o_rev_id": 463583282, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "<", + "token_id": 1793, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1794, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1795, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "anthony", + "token_id": 1796, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "gottlieb", + "token_id": 1797, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1798, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 1799, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "lion", + "token_id": 1800, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 1801, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1802, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "undergrowth", + "token_id": 1803, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1804, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "sunday", + "token_id": 1805, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 1806, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 1807, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1808, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "janauary", + "token_id": 1809, + "o_rev_id": 463583282, + "in": [], + "out": [ + 497360713 + ] + }, + { + "str": "28", + "token_id": 1810, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1811, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 1812, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 1813, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "http", + "token_id": 1814, + "o_rev_id": 463583282, + "in": [], + "out": [ + 767431312 + ] + }, + { + "str": ":", + "token_id": 1815, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1816, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1817, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 1818, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1819, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "nytimes", + "token_id": 1820, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1821, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 1822, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1823, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 1824, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1825, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "01", + "token_id": 1826, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1827, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "30", + "token_id": 1828, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1829, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 1830, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1831, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 1832, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1833, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "gottlieb", + "token_id": 1834, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1835, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "t", + "token_id": 1836, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1837, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 1838, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "?", + "token_id": 1839, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "pagewanted", + "token_id": 1840, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1841, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "all", + "token_id": 1842, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 1843, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1844, + "o_rev_id": 463583282, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1845, + "o_rev_id": 463583282, + "in": [ + 525447955, + 771345815 + ], + "out": [ + 520569830, + 771344182 + ] + }, + { + "str": "ref", + "token_id": 1846, + "o_rev_id": 463583282, + "in": [ + 525447955, + 771345815 + ], + "out": [ + 520569830, + 771344182 + ] + }, + { + "str": ">", + "token_id": 1847, + "o_rev_id": 463583282, + "in": [ + 525447955, + 771345815 + ], + "out": [ + 520569830, + 771344182 + ] + }, + { + "str": "(", + "token_id": 1848, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "number", + "token_id": 1849, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "32", + "token_id": 1850, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 1851, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1852, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "hardcover", + "token_id": 1853, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "nonfiction", + "token_id": 1854, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "list", + "token_id": 1855, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 1856, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 1857, + "o_rev_id": 463585308, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "ref", + "token_id": 1858, + "o_rev_id": 463585308, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ">", + "token_id": 1859, + "o_rev_id": 463585308, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "new", + "token_id": 1860, + "o_rev_id": 463585308, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "york", + "token_id": 1861, + "o_rev_id": 463585308, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "times", + "token_id": 1862, + "o_rev_id": 463585308, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "best", + "token_id": 1863, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "sellars", + "token_id": 1864, + "o_rev_id": 463585308, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": ",", + "token_id": 1865, + "o_rev_id": 463585308, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "february", + "token_id": 1866, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "20", + "token_id": 1867, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1868, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 1869, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1870, + "o_rev_id": 463585308, + "in": [], + "out": [ + 503176753 + ] + }, + { + "str": "http", + "token_id": 1871, + "o_rev_id": 463585308, + "in": [], + "out": [ + 767431312 + ] + }, + { + "str": ":", + "token_id": 1872, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1873, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1874, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 1875, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1876, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "nytimes", + "token_id": 1877, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1878, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 1879, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1880, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "best", + "token_id": 1881, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1882, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "sellers", + "token_id": 1883, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1884, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 1885, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1886, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 1887, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1888, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "02", + "token_id": 1889, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1890, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "20", + "token_id": 1891, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1892, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "hardcover", + "token_id": 1893, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1894, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "nonfiction", + "token_id": 1895, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 1896, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "list", + "token_id": 1897, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1898, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 1899, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1900, + "o_rev_id": 463585308, + "in": [], + "out": [ + 503176753 + ] + }, + { + "str": "<", + "token_id": 1901, + "o_rev_id": 463585308, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "/", + "token_id": 1902, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1903, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1904, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "both", + "token_id": 1905, + "o_rev_id": 463585308, + "in": [], + "out": [ + 771345815 + ] + }, + { + "str": "positive", + "token_id": 1906, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 1907, + "o_rev_id": 463585308, + "in": [], + "out": [ + 771345815 + ] + }, + { + "str": "critical", + "token_id": 1908, + "o_rev_id": 463585308, + "in": [], + "out": [ + 771345815 + ] + }, + { + "str": "reviews", + "token_id": 1909, + "o_rev_id": 463585308, + "in": [], + "out": [ + 771345815 + ] + }, + { + "str": ".", + "token_id": 1910, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1911, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1912, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1913, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 1914, + "o_rev_id": 463585308, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 1915, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 1916, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "“no", + "token_id": 1917, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1221992549 + ] + }, + { + "str": "observation", + "token_id": 1918, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 1919, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 1920, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 1921, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 1922, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 1923, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 1924, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 1925, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 1926, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 1927, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 1928, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 1929, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "best", + "token_id": 1930, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "”", + "token_id": 1931, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1221992549 + ] + }, + { + "str": "<", + "token_id": 1932, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 1933, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 1934, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "oliver", + "token_id": 1935, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "sachs", + "token_id": 1936, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ",", + "token_id": 1937, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "review", + "token_id": 1938, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "on", + "token_id": 1939, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "amazon", + "token_id": 1940, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "web", + "token_id": 1941, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "site", + "token_id": 1942, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "[", + "token_id": 1943, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "http", + "token_id": 1944, + "o_rev_id": 463754831, + "in": [], + "out": [ + 800928735 + ] + }, + { + "str": ":", + "token_id": 1945, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1946, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1947, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "www", + "token_id": 1948, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": ".", + "token_id": 1949, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "amazon", + "token_id": 1950, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": ".", + "token_id": 1951, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "com", + "token_id": 1952, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1953, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "tell", + "token_id": 1954, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 1955, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "tale", + "token_id": 1956, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 1957, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "brain", + "token_id": 1958, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 1959, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "neuroscientists", + "token_id": 1960, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 1961, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "quest", + "token_id": 1962, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 1963, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "makes", + "token_id": 1964, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1965, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "dp", + "token_id": 1966, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1967, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "product", + "token_id": 1968, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "-", + "token_id": 1969, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "description", + "token_id": 1970, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "/", + "token_id": 1971, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "0393077829", + "token_id": 1972, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 1973, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "ref", + "token_id": 1974, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 1975, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "dp", + "token_id": 1976, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 1977, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "proddesc", + "token_id": 1978, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 1979, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "0", + "token_id": 1980, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "?", + "token_id": 1981, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "ie", + "token_id": 1982, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "=", + "token_id": 1983, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "utf8", + "token_id": 1984, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "&", + "token_id": 1985, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "n", + "token_id": 1986, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "=", + "token_id": 1987, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "283155", + "token_id": 1988, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "&", + "token_id": 1989, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "s", + "token_id": 1990, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 1991, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "books", + "token_id": 1992, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "]", + "token_id": 1993, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "<", + "token_id": 1994, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "said", + "token_id": 1995, + "o_rev_id": 463754831, + "in": [ + 788355724 + ], + "out": [ + 785294020 + ] + }, + { + "str": "that", + "token_id": 1996, + "o_rev_id": 463754831, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967552844 + ] + }, + { + "str": "the", + "token_id": 1997, + "o_rev_id": 463754831, + "in": [ + 788355724 + ], + "out": [ + 785294020 + ] + }, + { + "str": "books", + "token_id": 1998, + "o_rev_id": 463754831, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967552844 + ] + }, + { + "str": "is", + "token_id": 1999, + "o_rev_id": 463754831, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 967552844 + ] + }, + { + "str": ":", + "token_id": 2000, + "o_rev_id": 463754831, + "in": [ + 788355724 + ], + "out": [ + 785294020 + ] + }, + { + "str": "“a", + "token_id": 2001, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1104913821 + ] + }, + { + "str": "the", + "token_id": 2002, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "best", + "token_id": 2003, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2004, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "its", + "token_id": 2005, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "kind", + "token_id": 2006, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2007, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "beautifully", + "token_id": 2008, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "crafted", + "token_id": 2009, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "alluring", + "token_id": 2010, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "story", + "token_id": 2011, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "telling", + "token_id": 2012, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2013, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "building", + "token_id": 2014, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 2015, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 2016, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "penetrating", + "token_id": 2017, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "understanding", + "token_id": 2018, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2019, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 2020, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 2021, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 2022, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 2023, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "be", + "token_id": 2024, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "uniquely", + "token_id": 2025, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 2026, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "”", + "token_id": 2027, + "o_rev_id": 463754831, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 1104913821 + ] + }, + { + "str": "<", + "token_id": 2028, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "ref", + "token_id": 2029, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ">", + "token_id": 2030, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "oliver", + "token_id": 2031, + "o_rev_id": 463754831, + "in": [], + "out": [ + 464250707 + ] + }, + { + "str": "sachs", + "token_id": 2032, + "o_rev_id": 463754831, + "in": [], + "out": [ + 464250707 + ] + }, + { + "str": "review", + "token_id": 2033, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "on", + "token_id": 2034, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "amazon", + "token_id": 2035, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "web", + "token_id": 2036, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "site", + "token_id": 2037, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "[", + "token_id": 2038, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "amazon", + "token_id": 2039, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "tell", + "token_id": 2040, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 2041, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "tale", + "token_id": 2042, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 2043, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "brain", + "token_id": 2044, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 2045, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "neuroscientists", + "token_id": 2046, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 2047, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "quest", + "token_id": 2048, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 2049, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "makes", + "token_id": 2050, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "dp", + "token_id": 2051, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 2052, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "product", + "token_id": 2053, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "-", + "token_id": 2054, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "description", + "token_id": 2055, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "/", + "token_id": 2056, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "0393077829", + "token_id": 2057, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 2058, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "ref", + "token_id": 2059, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 2060, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "dp", + "token_id": 2061, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 2062, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "proddesc", + "token_id": 2063, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 2064, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "0", + "token_id": 2065, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "?", + "token_id": 2066, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "ie", + "token_id": 2067, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "=", + "token_id": 2068, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "utf8", + "token_id": 2069, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "&", + "token_id": 2070, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "n", + "token_id": 2071, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "=", + "token_id": 2072, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "283155", + "token_id": 2073, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "&", + "token_id": 2074, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 2075, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "books", + "token_id": 2076, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "]", + "token_id": 2077, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "<", + "token_id": 2078, + "o_rev_id": 463754831, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "ref", + "token_id": 2079, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2080, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "norman", + "token_id": 2081, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "doidge", + "token_id": 2082, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2083, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "m", + "token_id": 2084, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": ".", + "token_id": 2085, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "d", + "token_id": 2086, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": ".", + "token_id": 2087, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": ",", + "token_id": 2088, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "author", + "token_id": 2089, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "of", + "token_id": 2090, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "the", + "token_id": 2091, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 2092, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "that", + "token_id": 2093, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "changes", + "token_id": 2094, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "itself", + "token_id": 2095, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "praised", + "token_id": 2096, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "the", + "token_id": 2097, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 2098, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 2099, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "saying", + "token_id": 2100, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": ":", + "token_id": 2101, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "“ramachandran", + "token_id": 2102, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "is", + "token_id": 2103, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2104, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "modern", + "token_id": 2105, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "wizard", + "token_id": 2106, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2107, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "neuroscience", + "token_id": 2108, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2109, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2110, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2111, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 2112, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 2113, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 2114, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2115, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "we", + "token_id": 2116, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "see", + "token_id": 2117, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2118, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "genius", + "token_id": 2119, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 2120, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "work", + "token_id": 2121, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2122, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "tackling", + "token_id": 2123, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "extraordinary", + "token_id": 2124, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "cases", + "token_id": 2125, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2126, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "many", + "token_id": 2127, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2128, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "which", + "token_id": 2129, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "mark", + "token_id": 2130, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "turning", + "token_id": 2131, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "points", + "token_id": 2132, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2133, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "neuroscientific", + "token_id": 2134, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "knowledge", + "token_id": 2135, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "we", + "token_id": 2136, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "see", + "token_id": 2137, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "him", + "token_id": 2138, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "hypothesizing", + "token_id": 2139, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2140, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "experimenting", + "token_id": 2141, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2142, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "failing", + "token_id": 2143, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2144, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "having", + "token_id": 2145, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "epiphanies", + "token_id": 2146, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2147, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "experimenting", + "token_id": 2148, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2149, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "succeeding", + "token_id": 2150, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2151, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2152, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "this", + "token_id": 2153, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "utterly", + "token_id": 2154, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "entertaining", + "token_id": 2155, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "account", + "token_id": 2156, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2157, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "we", + "token_id": 2158, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "see", + "token_id": 2159, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "how", + "token_id": 2160, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "these", + "token_id": 2161, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "fascinating", + "token_id": 2162, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "cases", + "token_id": 2163, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "fit", + "token_id": 2164, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "together", + "token_id": 2165, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2166, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2167, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "how", + "token_id": 2168, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 2169, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "uses", + "token_id": 2170, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "them", + "token_id": 2171, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 2172, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "explain", + "token_id": 2173, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2174, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 2175, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "darwinian", + "token_id": 2176, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "point", + "token_id": 2177, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "view", + "token_id": 2178, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2179, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2180, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "though", + "token_id": 2181, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "evolved", + "token_id": 2182, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 2183, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "other", + "token_id": 2184, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "animals", + "token_id": 2185, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "become", + "token_id": 2186, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "neurologically", + "token_id": 2187, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "distinct", + "token_id": 2188, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2189, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "fundamentally", + "token_id": 2190, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 2191, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "”", + "token_id": 2192, + "o_rev_id": 463754831, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "oliver", + "token_id": 2193, + "o_rev_id": 463754831, + "in": [], + "out": [ + 464250707 + ] + }, + { + "str": "sachs", + "token_id": 2194, + "o_rev_id": 463754831, + "in": [], + "out": [ + 464250707 + ] + }, + { + "str": ",", + "token_id": 2195, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "review", + "token_id": 2196, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "on", + "token_id": 2197, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "amazon", + "token_id": 2198, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "web", + "token_id": 2199, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "site", + "token_id": 2200, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "[", + "token_id": 2201, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "amazon", + "token_id": 2202, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "tell", + "token_id": 2203, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "tale", + "token_id": 2204, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 2205, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "neuroscientists", + "token_id": 2206, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 2207, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "quest", + "token_id": 2208, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 2209, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "makes", + "token_id": 2210, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 2211, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "dp", + "token_id": 2212, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 2213, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "product", + "token_id": 2214, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "-", + "token_id": 2215, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "description", + "token_id": 2216, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "/", + "token_id": 2217, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "0393077829", + "token_id": 2218, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "/", + "token_id": 2219, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "ref", + "token_id": 2220, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 2221, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "dp", + "token_id": 2222, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 2223, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "proddesc", + "token_id": 2224, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 2225, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "0", + "token_id": 2226, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "?", + "token_id": 2227, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "ie", + "token_id": 2228, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "=", + "token_id": 2229, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "utf8", + "token_id": 2230, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "&", + "token_id": 2231, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "n", + "token_id": 2232, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "=", + "token_id": 2233, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "283155", + "token_id": 2234, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "&", + "token_id": 2235, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "s", + "token_id": 2236, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 2237, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "books", + "token_id": 2238, + "o_rev_id": 463754831, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "]", + "token_id": 2239, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "/", + "token_id": 2240, + "o_rev_id": 463754831, + "in": [ + 772572484 + ], + "out": [ + 520569830, + 908258055 + ] + }, + { + "str": "ref", + "token_id": 2241, + "o_rev_id": 463754831, + "in": [ + 772572484 + ], + "out": [ + 520569830, + 908258055 + ] + }, + { + "str": ">", + "token_id": 2242, + "o_rev_id": 463754831, + "in": [ + 772572484 + ], + "out": [ + 520569830, + 908258055 + ] + }, + { + "str": "in", + "token_id": 2243, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "his", + "token_id": 2244, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "review", + "token_id": 2245, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "for", + "token_id": 2246, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 2247, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "wall", + "token_id": 2248, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "street", + "token_id": 2249, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "journal", + "token_id": 2250, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "[[", + "token_id": 2251, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "raymond", + "token_id": 2252, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "tallis", + "token_id": 2253, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 2254, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2255, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "emeritus", + "token_id": 2256, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "professor", + "token_id": 2257, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "geriatric", + "token_id": 2258, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "medicine", + "token_id": 2259, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "manchester", + "token_id": 2260, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "complained", + "token_id": 2261, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 2262, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 2263, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "has", + "token_id": 2264, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "failed", + "token_id": 2265, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 2266, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "provide", + "token_id": 2267, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2268, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "research", + "token_id": 2269, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "needed", + "token_id": 2270, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 2271, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "back", + "token_id": 2272, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "up", + "token_id": 2273, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 2274, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "theories", + "token_id": 2275, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2276, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2277, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "the", + "token_id": 2278, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "trouble", + "token_id": 2279, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "begins", + "token_id": 2280, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "when", + "token_id": 2281, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "the", + "token_id": 2282, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "neuro", + "token_id": 2283, + "o_rev_id": 463754831, + "in": [], + "out": [ + 671227181 + ] + }, + { + "str": "logist", + "token_id": 2284, + "o_rev_id": 463754831, + "in": [], + "out": [ + 671227181 + ] + }, + { + "str": "turns", + "token_id": 2285, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "philosopher", + "token_id": 2286, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "and", + "token_id": 2287, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "tries", + "token_id": 2288, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "to", + "token_id": 2289, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "use", + "token_id": 2290, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "these", + "token_id": 2291, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "insights", + "token_id": 2292, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "to", + "token_id": 2293, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "get", + "token_id": 2294, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "closer", + "token_id": 2295, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "to", + "token_id": 2296, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "\"", + "token_id": 2297, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "what", + "token_id": 2298, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "makes", + "token_id": 2299, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 2300, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 2301, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2302, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "\"", + "token_id": 2303, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "he", + "token_id": 2304, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "suggests", + "token_id": 2305, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "that", + "token_id": 2306, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "such", + "token_id": 2307, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "cross", + "token_id": 2308, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "wiring", + "token_id": 2309, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "underpins", + "token_id": 2310, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "both", + "token_id": 2311, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "humans", + "token_id": 2312, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "'", + "token_id": 2313, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "ability", + "token_id": 2314, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "to", + "token_id": 2315, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "enjoy", + "token_id": 2316, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "metaphors", + "token_id": 2317, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "artists", + "token_id": 2318, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "'", + "token_id": 2319, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "capacity", + "token_id": 2320, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "to", + "token_id": 2321, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "create", + "token_id": 2322, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "novel", + "token_id": 2323, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "connections", + "token_id": 2324, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "—", + "token_id": 2325, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "an", + "token_id": 2326, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "assertion", + "token_id": 2327, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "that", + "token_id": 2328, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "has", + "token_id": 2329, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "scarcely", + "token_id": 2330, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "any", + "token_id": 2331, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "research", + "token_id": 2332, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "to", + "token_id": 2333, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "back", + "token_id": 2334, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "it", + "token_id": 2335, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "up", + "token_id": 2336, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ".", + "token_id": 2337, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "(", + "token_id": 2338, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "what", + "token_id": 2339, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "little", + "token_id": 2340, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "has", + "token_id": 2341, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "been", + "token_id": 2342, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "done", + "token_id": 2343, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "depends", + "token_id": 2344, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "on", + "token_id": 2345, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "laughably", + "token_id": 2346, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "simplistic", + "token_id": 2347, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "models", + "token_id": 2348, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "of", + "token_id": 2349, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "metaphors", + "token_id": 2350, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "and", + "token_id": 2351, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "creativity", + "token_id": 2352, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "really", + "token_id": 2353, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "work", + "token_id": 2354, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "likewise", + "token_id": 2355, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "explanation", + "token_id": 2356, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "of", + "token_id": 2357, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "how", + "token_id": 2358, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "we", + "token_id": 2359, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "became", + "token_id": 2360, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "speaking", + "token_id": 2361, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "animals", + "token_id": 2362, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "has", + "token_id": 2363, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "scarcely", + "token_id": 2364, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "a", + "token_id": 2365, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "toe", + "token_id": 2366, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "-", + "token_id": 2367, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "hold", + "token_id": 2368, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "on", + "token_id": 2369, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "empirical", + "token_id": 2370, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "data", + "token_id": 2371, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ".", + "token_id": 2372, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2373, + "o_rev_id": 463754831, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "<", + "token_id": 2374, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2375, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2376, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "raymond", + "token_id": 2377, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "tallis", + "token_id": 2378, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": ",", + "token_id": 2379, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "mind", + "token_id": 2380, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "mirror", + "token_id": 2381, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "wall", + "token_id": 2382, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "street", + "token_id": 2383, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "journal", + "token_id": 2384, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "bookshelf", + "token_id": 2385, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "[", + "token_id": 2386, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "http", + "token_id": 2387, + "o_rev_id": 463754831, + "in": [], + "out": [ + 770399485 + ] + }, + { + "str": ":", + "token_id": 2388, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2389, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2390, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "online", + "token_id": 2391, + "o_rev_id": 463754831, + "in": [], + "out": [ + 794591153 + ] + }, + { + "str": "wsj", + "token_id": 2392, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2393, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 2394, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2395, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "article", + "token_id": 2396, + "o_rev_id": 463754831, + "in": [], + "out": [ + 794591153 + ] + }, + { + "str": "/", + "token_id": 2397, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "sb10001424052748704034804576025681468057572", + "token_id": 2398, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2399, + "o_rev_id": 463754831, + "in": [], + "out": [ + 794591153 + ] + }, + { + "str": "html", + "token_id": 2400, + "o_rev_id": 463754831, + "in": [], + "out": [ + 794591153 + ] + }, + { + "str": "]", + "token_id": 2401, + "o_rev_id": 463754831, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "<", + "token_id": 2402, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2403, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2404, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2405, + "o_rev_id": 463754831, + "in": [], + "out": [] + }, + { + "str": "snyder", + "token_id": 2406, + "o_rev_id": 464250707, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "doidge", + "token_id": 2407, + "o_rev_id": 464250707, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ",", + "token_id": 2408, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2409, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2410, + "o_rev_id": 466775504, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "the", + "token_id": 2411, + "o_rev_id": 466775504, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "sunday", + "token_id": 2412, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "times", + "token_id": 2413, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2414, + "o_rev_id": 466775504, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "james", + "token_id": 2415, + "o_rev_id": 466775504, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "mcconnachie", + "token_id": 2416, + "o_rev_id": 466775504, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "writes", + "token_id": 2417, + "o_rev_id": 466775504, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ":", + "token_id": 2418, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "this", + "token_id": 2419, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "absorbing", + "token_id": 2420, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 2421, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "charts", + "token_id": 2422, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2423, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "acclaimed", + "token_id": 2424, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "experiments", + "token_id": 2425, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 2426, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "has", + "token_id": 2427, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "performed", + "token_id": 2428, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "around", + "token_id": 2429, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2430, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "world", + "token_id": 2431, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2432, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "at", + "token_id": 2433, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2434, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "university", + "token_id": 2435, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2436, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "california", + "token_id": 2437, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "’", + "token_id": 2438, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 2439, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "cutting", + "token_id": 2440, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2441, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "edge", + "token_id": 2442, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "centre", + "token_id": 2443, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 2444, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2445, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 2446, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2447, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2448, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "explains", + "token_id": 2449, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "how", + "token_id": 2450, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "they", + "token_id": 2451, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "have", + "token_id": 2452, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "helped", + "token_id": 2453, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "unravel", + "token_id": 2454, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2455, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "workings", + "token_id": 2456, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2457, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2458, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 2459, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "mind", + "token_id": 2460, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2461, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2462, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2463, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2464, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2465, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "james", + "token_id": 2466, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "mcconnachie", + "token_id": 2467, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2468, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2469, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 2470, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2471, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 2472, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 2473, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 2474, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "vs", + "token_id": 2475, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 2476, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2477, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2478, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "sunday", + "token_id": 2479, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "times", + "token_id": 2480, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2481, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "janauary", + "token_id": 2482, + "o_rev_id": 466775504, + "in": [], + "out": [ + 497360713 + ] + }, + { + "str": "09", + "token_id": 2483, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2484, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 2485, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 2486, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "http", + "token_id": 2487, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 2488, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2489, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2490, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 2491, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2492, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "thesundaytimes", + "token_id": 2493, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2494, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "co", + "token_id": 2495, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2496, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "uk", + "token_id": 2497, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2498, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "sto", + "token_id": 2499, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2500, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "culture", + "token_id": 2501, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2502, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 2503, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2504, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "non", + "token_id": 2505, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 2506, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "fiction", + "token_id": 2507, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2508, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "article500581", + "token_id": 2509, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2510, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "ece", + "token_id": 2511, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "?", + "token_id": 2512, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "pagewanted", + "token_id": 2513, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2514, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "all", + "token_id": 2515, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 2516, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2517, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2518, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2519, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2520, + "o_rev_id": 466775504, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 2521, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "his", + "token_id": 2522, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "review", + "token_id": 2523, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "for", + "token_id": 2524, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 2525, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "american", + "token_id": 2526, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "scientist", + "token_id": 2527, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 2528, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "[[", + "token_id": 2529, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "simon", + "token_id": 2530, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "baron", + "token_id": 2531, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2532, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "cohen", + "token_id": 2533, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 2534, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2535, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "professor", + "token_id": 2536, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "of", + "token_id": 2537, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "developmental", + "token_id": 2538, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "psychopathology", + "token_id": 2539, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "at", + "token_id": 2540, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "cambridge", + "token_id": 2541, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "university", + "token_id": 2542, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 2543, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "said", + "token_id": 2544, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 2545, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "found", + "token_id": 2546, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2547, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 2548, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "stimulating", + "token_id": 2549, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2550, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "enjoyable", + "token_id": 2551, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "but", + "token_id": 2552, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "questioned", + "token_id": 2553, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 2554, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "validity", + "token_id": 2555, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2556, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 2557, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2558, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 2559, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "views", + "token_id": 2560, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 2561, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2562, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "important", + "token_id": 2563, + "o_rev_id": 467386609, + "in": [], + "out": [ + 467386753 + ] + }, + { + "str": "of", + "token_id": 2564, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "mirror", + "token_id": 2565, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "neurons", + "token_id": 2566, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2567, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "in", + "token_id": 2568, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "particular", + "token_id": 2569, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ",", + "token_id": 2570, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "baron", + "token_id": 2571, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "-", + "token_id": 2572, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "cohen", + "token_id": 2573, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "took", + "token_id": 2574, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "issue", + "token_id": 2575, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "with", + "token_id": 2576, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "ramachandran", + "token_id": 2577, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "'", + "token_id": 2578, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "s", + "token_id": 2579, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "well", + "token_id": 2580, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "known", + "token_id": 2581, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "prediction", + "token_id": 2582, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "\"", + "token_id": 2583, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ".", + "token_id": 2584, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ".", + "token_id": 2585, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ".", + "token_id": 2586, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "that", + "token_id": 2587, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "mirror", + "token_id": 2588, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "neurons", + "token_id": 2589, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "will", + "token_id": 2590, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "do", + "token_id": 2591, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "for", + "token_id": 2592, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "psychology", + "token_id": 2593, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "what", + "token_id": 2594, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "dna", + "token_id": 2595, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "did", + "token_id": 2596, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "for", + "token_id": 2597, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "biology", + "token_id": 2598, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ":", + "token_id": 2599, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "they", + "token_id": 2600, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "will", + "token_id": 2601, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "provide", + "token_id": 2602, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "a", + "token_id": 2603, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "unifying", + "token_id": 2604, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "framework", + "token_id": 2605, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "and", + "token_id": 2606, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "help", + "token_id": 2607, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "explain", + "token_id": 2608, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "a", + "token_id": 2609, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "host", + "token_id": 2610, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "of", + "token_id": 2611, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "mental", + "token_id": 2612, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "abilities", + "token_id": 2613, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "that", + "token_id": 2614, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "have", + "token_id": 2615, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "hitherto", + "token_id": 2616, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "remained", + "token_id": 2617, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "mysterious", + "token_id": 2618, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "and", + "token_id": 2619, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "inaccessible", + "token_id": 2620, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "to", + "token_id": 2621, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "experiments", + "token_id": 2622, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ".", + "token_id": 2623, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "”", + "token_id": 2624, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "baron", + "token_id": 2625, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "-", + "token_id": 2626, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "cohen", + "token_id": 2627, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "stated", + "token_id": 2628, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "\"", + "token_id": 2629, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "whether", + "token_id": 2630, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "[", + "token_id": 2631, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "ramachandran", + "token_id": 2632, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "]", + "token_id": 2633, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "has", + "token_id": 2634, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "overstated", + "token_id": 2635, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 2636, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "importance", + "token_id": 2637, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "of", + "token_id": 2638, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "mirror", + "token_id": 2639, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "neurons", + "token_id": 2640, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "and", + "token_id": 2641, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "will", + "token_id": 2642, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "decide", + "token_id": 2643, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "to", + "token_id": 2644, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "retract", + "token_id": 2645, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "this", + "token_id": 2646, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "statement", + "token_id": 2647, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "remains", + "token_id": 2648, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "to", + "token_id": 2649, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "be", + "token_id": 2650, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "seen", + "token_id": 2651, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ".", + "token_id": 2652, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "\"", + "token_id": 2653, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "baron", + "token_id": 2654, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "-", + "token_id": 2655, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "cohen", + "token_id": 2656, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": ",", + "token_id": 2657, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "who", + "token_id": 2658, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "is", + "token_id": 2659, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "director", + "token_id": 2660, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "of", + "token_id": 2661, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "the", + "token_id": 2662, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "autism", + "token_id": 2663, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "research", + "token_id": 2664, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "center", + "token_id": 2665, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "at", + "token_id": 2666, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "cambridge", + "token_id": 2667, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "university", + "token_id": 2668, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": ",", + "token_id": 2669, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "pointed", + "token_id": 2670, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "out", + "token_id": 2671, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "that", + "token_id": 2672, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "ramachandran", + "token_id": 2673, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "has", + "token_id": 2674, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "failed", + "token_id": 2675, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "to", + "token_id": 2676, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "acknowledge", + "token_id": 2677, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 2678, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "the", + "token_id": 2679, + "o_rev_id": 467386609, + "in": [], + "out": [ + 467386937 + ] + }, + { + "str": "experimental", + "token_id": 2680, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "evidence", + "token_id": 2681, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "that", + "token_id": 2682, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "contradicts", + "token_id": 2683, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "his", + "token_id": 2684, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "theory", + "token_id": 2685, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "that", + "token_id": 2686, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "dysfunctional", + "token_id": 2687, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "mirror", + "token_id": 2688, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "neurons", + "token_id": 2689, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "play", + "token_id": 2690, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "a", + "token_id": 2691, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "significant", + "token_id": 2692, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "role", + "token_id": 2693, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "in", + "token_id": 2694, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "autism", + "token_id": 2695, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ".", + "token_id": 2696, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "baron", + "token_id": 2697, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "-", + "token_id": 2698, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "cohen", + "token_id": 2699, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "writes", + "token_id": 2700, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "\"", + "token_id": 2701, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "there", + "token_id": 2702, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "are", + "token_id": 2703, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "also", + "token_id": 2704, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "clinical", + "token_id": 2705, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2706, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "experimental", + "token_id": 2707, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "reasons", + "token_id": 2708, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 2709, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "being", + "token_id": 2710, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "skeptical", + "token_id": 2711, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2712, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2713, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "broken", + "token_id": 2714, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2715, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "mirror", + "token_id": 2716, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "theory", + "token_id": 2717, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2718, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "autism", + "token_id": 2719, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2720, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2721, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2722, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 2723, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 2724, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "explanation", + "token_id": 2725, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2726, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "autism", + "token_id": 2727, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2728, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2729, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 2730, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908263835 + ] + }, + { + "str": "broken", + "token_id": 2731, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "mirror", + "token_id": 2732, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 2733, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908263835 + ] + }, + { + "str": "theory", + "token_id": 2734, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "offers", + "token_id": 2735, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "some", + "token_id": 2736, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "tantalizing", + "token_id": 2737, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "clues", + "token_id": 2738, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ";", + "token_id": 2739, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "however", + "token_id": 2740, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2741, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "some", + "token_id": 2742, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "problematic", + "token_id": 2743, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "counter", + "token_id": 2744, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2745, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "evidence", + "token_id": 2746, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "challenges", + "token_id": 2747, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2748, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "theory", + "token_id": 2749, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 2750, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "particularly", + "token_id": 2751, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "its", + "token_id": 2752, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "scope", + "token_id": 2753, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2754, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 2755, + "o_rev_id": 467386609, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "<", + "token_id": 2756, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2757, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2758, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "baron", + "token_id": 2759, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2760, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "cohen", + "token_id": 2761, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2762, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "making", + "token_id": 2763, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "sense", + "token_id": 2764, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2765, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2766, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 2767, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 2768, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 2769, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "mysteries", + "token_id": 2770, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2771, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "american", + "token_id": 2772, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "scientist", + "token_id": 2773, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2774, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 2775, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2776, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "line", + "token_id": 2777, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 2778, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 2779, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2780, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "july", + "token_id": 2781, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2782, + "o_rev_id": 467386609, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "august", + "token_id": 2783, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 2784, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 2785, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 2786, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "http", + "token_id": 2787, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": ":", + "token_id": 2788, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2789, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2790, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 2791, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2792, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "americanscientist", + "token_id": 2793, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2794, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "org", + "token_id": 2795, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2796, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "bookshelf", + "token_id": 2797, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "/", + "token_id": 2798, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "pub", + "token_id": 2799, + "o_rev_id": 467386609, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "/", + "token_id": 2800, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "making", + "token_id": 2801, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2802, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "sense", + "token_id": 2803, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2804, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2805, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2806, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 2807, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2808, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "brains", + "token_id": 2809, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2810, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "mysteries", + "token_id": 2811, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 2812, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2813, + "o_rev_id": 467386609, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2814, + "o_rev_id": 467386609, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "ref", + "token_id": 2815, + "o_rev_id": 467386609, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ">", + "token_id": 2816, + "o_rev_id": 467386609, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "importance", + "token_id": 2817, + "o_rev_id": 467386753, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "{{", + "token_id": 2818, + "o_rev_id": 490580070, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "cleanup", + "token_id": 2819, + "o_rev_id": 490580070, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "|", + "token_id": 2820, + "o_rev_id": 490580070, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "=", + "token_id": 2821, + "o_rev_id": 490580070, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "}}", + "token_id": 2822, + "o_rev_id": 490580070, + "in": [], + "out": [ + 526956281 + ] + }, + { + "str": "0", + "token_id": 2823, + "o_rev_id": 490580070, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2824, + "o_rev_id": 490580070, + "in": [], + "out": [] + }, + { + "str": "393", + "token_id": 2825, + "o_rev_id": 490580070, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2826, + "o_rev_id": 490580070, + "in": [], + "out": [] + }, + { + "str": "07782", + "token_id": 2827, + "o_rev_id": 490580070, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 2828, + "o_rev_id": 490580070, + "in": [], + "out": [] + }, + { + "str": "7", + "token_id": 2829, + "o_rev_id": 490580070, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 2830, + "o_rev_id": 490580070, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "advert", + "token_id": 2831, + "o_rev_id": 490580070, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "|", + "token_id": 2832, + "o_rev_id": 490580070, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "=", + "token_id": 2833, + "o_rev_id": 490580070, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "}}", + "token_id": 2834, + "o_rev_id": 490580070, + "in": [], + "out": [ + 529223756 + ] + }, + { + "str": "[[", + "token_id": 2835, + "o_rev_id": 492199676, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "expressive", + "token_id": 2836, + "o_rev_id": 492199676, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "]]", + "token_id": 2837, + "o_rev_id": 492199676, + "in": [], + "out": [ + 507603974 + ] + }, + { + "str": "january", + "token_id": 2838, + "o_rev_id": 497360713, + "in": [], + "out": [] + }, + { + "str": "january", + "token_id": 2839, + "o_rev_id": 497360713, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 2840, + "o_rev_id": 503176753, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "]", + "token_id": 2841, + "o_rev_id": 503176753, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "the", + "token_id": 2842, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "uniqueness", + "token_id": 2843, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 2844, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 2845, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "nature", + "token_id": 2846, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 2847, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 2848, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "explores", + "token_id": 2849, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "visual", + "token_id": 2850, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "cognition", + "token_id": 2851, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 2852, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "argue", + "token_id": 2853, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "that", + "token_id": 2854, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "are", + "token_id": 2855, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "example", + "token_id": 2856, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "he", + "token_id": 2857, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "notes", + "token_id": 2858, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "that", + "token_id": 2859, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "although", + "token_id": 2860, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "animals", + "token_id": 2861, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "show", + "token_id": 2862, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "cortical", + "token_id": 2863, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "remapping", + "token_id": 2864, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "after", + "token_id": 2865, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "the", + "token_id": 2866, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "loss", + "token_id": 2867, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "a", + "token_id": 2868, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "limb", + "token_id": 2869, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": ",", + "token_id": 2870, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "the", + "token_id": 2871, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "plasticity", + "token_id": 2872, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "seen", + "token_id": 2873, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "human", + "token_id": 2874, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 2875, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "after", + "token_id": 2876, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "amputation", + "token_id": 2877, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": ")", + "token_id": 2878, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "is", + "token_id": 2879, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "much", + "token_id": 2880, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "more", + "token_id": 2881, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "dramatic", + "token_id": 2882, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": ".", + "token_id": 2883, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 2884, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2885, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2886, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "brugger", + "token_id": 2887, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "peter", + "token_id": 2888, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 2889, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "review", + "token_id": 2890, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "cognitive", + "token_id": 2891, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "neuropsychiatry", + "token_id": 2892, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "vol", + "token_id": 2893, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "17", + "token_id": 2894, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "issue", + "token_id": 2895, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "4", + "token_id": 2896, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": ",", + "token_id": 2897, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "2012", + "token_id": 2898, + "o_rev_id": 507603974, + "in": [], + "out": [ + 908278188 + ] + }, + { + "str": "<", + "token_id": 2899, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 2900, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 2901, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 2902, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 2903, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "=", + "token_id": 2904, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "controversy", + "token_id": 2905, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "=", + "token_id": 2906, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "=", + "token_id": 2907, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "in", + "token_id": 2908, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "a", + "token_id": 2909, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "review", + "token_id": 2910, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "for", + "token_id": 2911, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "cognitive", + "token_id": 2912, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "neuropsychiatry", + "token_id": 2913, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "(", + "token_id": 2914, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "july", + "token_id": 2915, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "11", + "token_id": 2916, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2917, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "2012", + "token_id": 2918, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ")", + "token_id": 2919, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "professor", + "token_id": 2920, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "peter", + "token_id": 2921, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "brugger", + "token_id": 2922, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "(", + "token_id": 2923, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "neurology", + "token_id": 2924, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2925, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "university", + "token_id": 2926, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "hospital", + "token_id": 2927, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2928, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "zurich", + "token_id": 2929, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ")", + "token_id": 2930, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "criticized", + "token_id": 2931, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "the", + "token_id": 2932, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "tell", + "token_id": 2933, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "-", + "token_id": 2934, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "tale", + "token_id": 2935, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "brain", + "token_id": 2936, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "as", + "token_id": 2937, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "a", + "token_id": 2938, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "pop", + "token_id": 2939, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "-", + "token_id": 2940, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "neuroscience", + "token_id": 2941, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "book", + "token_id": 2942, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "that", + "token_id": 2943, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "provides", + "token_id": 2944, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "vague", + "token_id": 2945, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "answers", + "token_id": 2946, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "to", + "token_id": 2947, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "big", + "token_id": 2948, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "questions", + "token_id": 2949, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 2950, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "<", + "token_id": 2951, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ref", + "token_id": 2952, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ">", + "token_id": 2953, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "brugger", + "token_id": 2954, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2955, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "peter", + "token_id": 2956, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2957, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "book", + "token_id": 2958, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "review", + "token_id": 2959, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2960, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "cognitive", + "token_id": 2961, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "neuropsychiatry", + "token_id": 2962, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2963, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "vol", + "token_id": 2964, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 2965, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "17", + "token_id": 2966, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2967, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "issue", + "token_id": 2968, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "4", + "token_id": 2969, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 2970, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "2012", + "token_id": 2971, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "<", + "token_id": 2972, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "/", + "token_id": 2973, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ref", + "token_id": 2974, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ">", + "token_id": 2975, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "in", + "token_id": 2976, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "the", + "token_id": 2977, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "same", + "token_id": 2978, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "issue", + "token_id": 2979, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "of", + "token_id": 2980, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "cognitive", + "token_id": 2981, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "neuropsychiatry", + "token_id": 2982, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "v", + "token_id": 2983, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 2984, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "s", + "token_id": 2985, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 2986, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ramachandran", + "token_id": 2987, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "answered", + "token_id": 2988, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "brugger", + "token_id": 2989, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "'", + "token_id": 2990, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "s", + "token_id": 2991, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "criticism", + "token_id": 2992, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "in", + "token_id": 2993, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "an", + "token_id": 2994, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "author", + "token_id": 2995, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "response", + "token_id": 2996, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 2997, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ramachandran", + "token_id": 2998, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "argues", + "token_id": 2999, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "that", + "token_id": 3000, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "brugger", + "token_id": 3001, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "'", + "token_id": 3002, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "s", + "token_id": 3003, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "approach", + "token_id": 3004, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "to", + "token_id": 3005, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "science", + "token_id": 3006, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "has", + "token_id": 3007, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "been", + "token_id": 3008, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "focused", + "token_id": 3009, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "on", + "token_id": 3010, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "only", + "token_id": 3011, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "a", + "token_id": 3012, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "few", + "token_id": 3013, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "topics", + "token_id": 3014, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "and", + "token_id": 3015, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "that", + "token_id": 3016, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "he", + "token_id": 3017, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "(", + "token_id": 3018, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ramachandran", + "token_id": 3019, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ")", + "token_id": 3020, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "has", + "token_id": 3021, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "taken", + "token_id": 3022, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "a", + "token_id": 3023, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "much", + "token_id": 3024, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "broader", + "token_id": 3025, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "approach", + "token_id": 3026, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 3027, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ramachandran", + "token_id": 3028, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "states", + "token_id": 3029, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "that", + "token_id": 3030, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "\"", + "token_id": 3031, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "i", + "token_id": 3032, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "have", + "token_id": 3033, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "-", + "token_id": 3034, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "-", + "token_id": 3035, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "for", + "token_id": 3036, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "better", + "token_id": 3037, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "or", + "token_id": 3038, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "worse", + "token_id": 3039, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "-", + "token_id": 3040, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "-", + "token_id": 3041, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "roamed", + "token_id": 3042, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "the", + "token_id": 3043, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "whole", + "token_id": 3044, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "landscape", + "token_id": 3045, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "of", + "token_id": 3046, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "visual", + "token_id": 3047, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "perception", + "token_id": 3048, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3049, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "stereopsis", + "token_id": 3050, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3051, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "phantom", + "token_id": 3052, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "limbs", + "token_id": 3053, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3054, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "denial", + "token_id": 3055, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "of", + "token_id": 3056, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "paralysis", + "token_id": 3057, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3058, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "capgras", + "token_id": 3059, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "syndrome", + "token_id": 3060, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3061, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "synaesthesia", + "token_id": 3062, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3063, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "and", + "token_id": 3064, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "many", + "token_id": 3065, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "others", + "token_id": 3066, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 3067, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "\"", + "token_id": 3068, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "<", + "token_id": 3069, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ref", + "token_id": 3070, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ">", + "token_id": 3071, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ramachandran", + "token_id": 3072, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3073, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "v", + "token_id": 3074, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 3075, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "s", + "token_id": 3076, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 3077, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "author", + "token_id": 3078, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "response", + "token_id": 3079, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3080, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "cognitive", + "token_id": 3081, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "neuropsychiatry", + "token_id": 3082, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3083, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "vol", + "token_id": 3084, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ".", + "token_id": 3085, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "17", + "token_id": 3086, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3087, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "issue", + "token_id": 3088, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "4", + "token_id": 3089, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ",", + "token_id": 3090, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "2012", + "token_id": 3091, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "<", + "token_id": 3092, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "/", + "token_id": 3093, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "ref", + "token_id": 3094, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": ">", + "token_id": 3095, + "o_rev_id": 507603974, + "in": [], + "out": [ + 800665303 + ] + }, + { + "str": "professor", + "token_id": 3096, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "greg", + "token_id": 3097, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "hickok", + "token_id": 3098, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "(", + "token_id": 3099, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "cognitive", + "token_id": 3100, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "sciences", + "token_id": 3101, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ",", + "token_id": 3102, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "uc", + "token_id": 3103, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "irvine", + "token_id": 3104, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ")", + "token_id": 3105, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "has", + "token_id": 3106, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "reported", + "token_id": 3107, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "this", + "token_id": 3108, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "exchange", + "token_id": 3109, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "on", + "token_id": 3110, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "his", + "token_id": 3111, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "web", + "token_id": 3112, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "site", + "token_id": 3113, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "(", + "token_id": 3114, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "talkinbrains", + "token_id": 3115, + "o_rev_id": 507603974, + "in": [], + "out": [ + 507704191 + ] + }, + { + "str": ".", + "token_id": 3116, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "org", + "token_id": 3117, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ")", + "token_id": 3118, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "and", + "token_id": 3119, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "he", + "token_id": 3120, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "is", + "token_id": 3121, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "conducting", + "token_id": 3122, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "an", + "token_id": 3123, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "informal", + "token_id": 3124, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "poll", + "token_id": 3125, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "to", + "token_id": 3126, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "determine", + "token_id": 3127, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "the", + "token_id": 3128, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "reaction", + "token_id": 3129, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "of", + "token_id": 3130, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "scientists", + "token_id": 3131, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "who", + "token_id": 3132, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "have", + "token_id": 3133, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "read", + "token_id": 3134, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "the", + "token_id": 3135, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "book", + "token_id": 3136, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ".", + "token_id": 3137, + "o_rev_id": 507603974, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "<", + "token_id": 3138, + "o_rev_id": 507603974, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "ref", + "token_id": 3139, + "o_rev_id": 507603974, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ">", + "token_id": 3140, + "o_rev_id": 507603974, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "[", + "token_id": 3141, + "o_rev_id": 507603974, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "talkingbrains", + "token_id": 3142, + "o_rev_id": 507603974, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": ".", + "token_id": 3143, + "o_rev_id": 507603974, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "org", + "token_id": 3144, + "o_rev_id": 507603974, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "]]", + "token_id": 3145, + "o_rev_id": 507603974, + "in": [], + "out": [ + 520569830 + ] + }, + { + "str": "<", + "token_id": 3146, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3147, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3148, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3149, + "o_rev_id": 507603974, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3150, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3151, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "external", + "token_id": 3152, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "links", + "token_id": 3153, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3154, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3155, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "*", + "token_id": 3156, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "[", + "token_id": 3157, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "http", + "token_id": 3158, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3159, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3160, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3161, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "talkingbrains", + "token_id": 3162, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3163, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "org", + "token_id": 3164, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3165, + "o_rev_id": 507605066, + "in": [], + "out": [ + 519108836 + ] + }, + { + "str": "html", + "token_id": 3166, + "o_rev_id": 507605066, + "in": [], + "out": [ + 507605330 + ] + }, + { + "str": ".", + "token_id": 3167, + "o_rev_id": 507605066, + "in": [], + "out": [ + 507605330 + ] + }, + { + "str": "talkingbrains", + "token_id": 3168, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3169, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "site", + "token_id": 3170, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 3171, + "o_rev_id": 507605066, + "in": [], + "out": [] + }, + { + "str": "talkingbrains", + "token_id": 3172, + "o_rev_id": 507704191, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3173, + "o_rev_id": 514920195, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "[", + "token_id": 3174, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "<", + "token_id": 3175, + "o_rev_id": 520569830, + "in": [ + 771345815 + ], + "out": [ + 771344182, + 1173115659 + ] + }, + { + "str": "ref", + "token_id": 3176, + "o_rev_id": 520569830, + "in": [ + 771345815 + ], + "out": [ + 771344182, + 1173115659 + ] + }, + { + "str": ">", + "token_id": 3177, + "o_rev_id": 520569830, + "in": [ + 771345815 + ], + "out": [ + 771344182, + 1173115659 + ] + }, + { + "str": "[[", + "token_id": 3178, + "o_rev_id": 520569830, + "in": [], + "out": [ + 525447955 + ] + }, + { + "str": "talkingbrains", + "token_id": 3179, + "o_rev_id": 520569830, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ".", + "token_id": 3180, + "o_rev_id": 520569830, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "org", + "token_id": 3181, + "o_rev_id": 520569830, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "]]", + "token_id": 3182, + "o_rev_id": 520569830, + "in": [], + "out": [ + 525447955 + ] + }, + { + "str": "<", + "token_id": 3183, + "o_rev_id": 520569830, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "/", + "token_id": 3184, + "o_rev_id": 520569830, + "in": [], + "out": [ + 525447955 + ] + }, + { + "str": "ref", + "token_id": 3185, + "o_rev_id": 520569830, + "in": [], + "out": [ + 525447955 + ] + }, + { + "str": ">", + "token_id": 3186, + "o_rev_id": 520569830, + "in": [], + "out": [ + 525447955 + ] + }, + { + "str": "<", + "token_id": 3187, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "ref", + "token_id": 3188, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": ">", + "token_id": 3189, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "oliver", + "token_id": 3190, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "sachs", + "token_id": 3191, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "]", + "token_id": 3192, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "<", + "token_id": 3193, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3194, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3195, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3196, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3197, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3198, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3199, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "snyder", + "token_id": 3200, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "]", + "token_id": 3201, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "<", + "token_id": 3202, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3203, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3204, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3205, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3206, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3207, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3208, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "doidge", + "token_id": 3209, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": ",", + "token_id": 3210, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "review", + "token_id": 3211, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "on", + "token_id": 3212, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "amazon", + "token_id": 3213, + "o_rev_id": 520569830, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "web", + "token_id": 3214, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "site", + "token_id": 3215, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "–", + "token_id": 3216, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "nicholas", + "token_id": 3217, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": "shakespeare", + "token_id": 3218, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3219, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "book", + "token_id": 3220, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "reviews", + "token_id": 3221, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": ",", + "token_id": 3222, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "the", + "token_id": 3223, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "telegraph", + "token_id": 3224, + "o_rev_id": 520569830, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3225, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "jan", + "token_id": 3226, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "7", + "token_id": 3227, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": ",", + "token_id": 3228, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "2011", + "token_id": 3229, + "o_rev_id": 520569830, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "[", + "token_id": 3230, + "o_rev_id": 525447955, + "in": [ + 771345815 + ], + "out": [ + 771344182, + 862632766 + ] + }, + { + "str": "http", + "token_id": 3231, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ":", + "token_id": 3232, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "/", + "token_id": 3233, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "/", + "token_id": 3234, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "www", + "token_id": 3235, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ".", + "token_id": 3236, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "/", + "token_id": 3237, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "2012", + "token_id": 3238, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "/", + "token_id": 3239, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "08", + "token_id": 3240, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "/", + "token_id": 3241, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "the", + "token_id": 3242, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3243, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "tell", + "token_id": 3244, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3245, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "tale", + "token_id": 3246, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3247, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "brain", + "token_id": 3248, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3249, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "fact", + "token_id": 3250, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3251, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "or", + "token_id": 3252, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3253, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "fiction", + "token_id": 3254, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ".", + "token_id": 3255, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "html", + "token_id": 3256, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "]", + "token_id": 3257, + "o_rev_id": 525447955, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "the", + "token_id": 3258, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "tell", + "token_id": 3259, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3260, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "tale", + "token_id": 3261, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "brain", + "token_id": 3262, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ":", + "token_id": 3263, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "fact", + "token_id": 3264, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "or", + "token_id": 3265, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "fiction", + "token_id": 3266, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "?", + "token_id": 3267, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "-", + "token_id": 3268, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "august", + "token_id": 3269, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "14", + "token_id": 3270, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": ",", + "token_id": 3271, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "2012", + "token_id": 3272, + "o_rev_id": 525448236, + "in": [], + "out": [ + 771344182 + ] + }, + { + "str": "{{", + "token_id": 3273, + "o_rev_id": 526956281, + "in": [], + "out": [ + 771957452 + ] + }, + { + "str": "-", + "token_id": 3274, + "o_rev_id": 526956281, + "in": [], + "out": [ + 771957452 + ] + }, + { + "str": "book", + "token_id": 3275, + "o_rev_id": 526956281, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "|", + "token_id": 3276, + "o_rev_id": 526956281, + "in": [], + "out": [ + 771957452 + ] + }, + { + "str": "=", + "token_id": 3277, + "o_rev_id": 526956281, + "in": [], + "out": [ + 771957452 + ] + }, + { + "str": "}}", + "token_id": 3278, + "o_rev_id": 526956281, + "in": [], + "out": [ + 771957452 + ] + }, + { + "str": "neurologist", + "token_id": 3279, + "o_rev_id": 671227181, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "https", + "token_id": 3280, + "o_rev_id": 767431312, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3281, + "o_rev_id": 767431312, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3282, + "o_rev_id": 770399485, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "mostly", + "token_id": 3283, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "highly", + "token_id": 3284, + "o_rev_id": 771345815, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "with", + "token_id": 3285, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "some", + "token_id": 3286, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "exceptions", + "token_id": 3287, + "o_rev_id": 771345815, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "http", + "token_id": 3288, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3289, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3290, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3291, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "cbc", + "token_id": 3292, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3293, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "ucsd", + "token_id": 3294, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3295, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "edu", + "token_id": 3296, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 3297, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "press", + "token_id": 3298, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3299, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "html", + "token_id": 3300, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": "]", + "token_id": 3301, + "o_rev_id": 771345815, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "<", + "token_id": 3302, + "o_rev_id": 771345815, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3303, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "dr", + "token_id": 3304, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ".", + "token_id": 3305, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "baron", + "token_id": 3306, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "-", + "token_id": 3307, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "cohen", + "token_id": 3308, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 3309, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "however", + "token_id": 3310, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 3311, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "does", + "token_id": 3312, + "o_rev_id": 771346828, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "not", + "token_id": 3313, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "address", + "token_id": 3314, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "numerous", + "token_id": 3315, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "other", + "token_id": 3316, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "chapters", + "token_id": 3317, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "and", + "token_id": 3318, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "ideas", + "token_id": 3319, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "discussed", + "token_id": 3320, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "in", + "token_id": 3321, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 3322, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "book", + "token_id": 3323, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ".", + "token_id": 3324, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "ramachandran", + "token_id": 3325, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "himself", + "token_id": 3326, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 3327, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "has", + "token_id": 3328, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "noted", + "token_id": 3329, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "(", + "token_id": 3330, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "even", + "token_id": 3331, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "in", + "token_id": 3332, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 3333, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "tell", + "token_id": 3334, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "-", + "token_id": 3335, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "tale", + "token_id": 3336, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "brain", + "token_id": 3337, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ")", + "token_id": 3338, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "that", + "token_id": 3339, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 3340, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "evidence", + "token_id": 3341, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "for", + "token_id": 3342, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "the", + "token_id": 3343, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "broken", + "token_id": 3344, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "mirror", + "token_id": 3345, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "theory", + "token_id": 3346, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "of", + "token_id": 3347, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "autism", + "token_id": 3348, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 3349, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "is", + "token_id": 3350, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 3351, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "at", + "token_id": 3352, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "present", + "token_id": 3353, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ",", + "token_id": 3354, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "\"", + "token_id": 3355, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "compelling", + "token_id": 3356, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "but", + "token_id": 3357, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "not", + "token_id": 3358, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "conclusive", + "token_id": 3359, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "\"", + "token_id": 3360, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ".", + "token_id": 3361, + "o_rev_id": 771346828, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": ".", + "token_id": 3362, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "however", + "token_id": 3363, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ",", + "token_id": 3364, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "in", + "token_id": 3365, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "his", + "token_id": 3366, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "footnotes", + "token_id": 3367, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ",", + "token_id": 3368, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "ramachandran", + "token_id": 3369, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "does", + "token_id": 3370, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "in", + "token_id": 3371, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "fact", + "token_id": 3372, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "point", + "token_id": 3373, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "out", + "token_id": 3374, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "the", + "token_id": 3375, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "controversy", + "token_id": 3376, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "surrounding", + "token_id": 3377, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "mirror", + "token_id": 3378, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "neurons", + "token_id": 3379, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": ".", + "token_id": 3380, + "o_rev_id": 771347289, + "in": [], + "out": [ + 908253636 + ] + }, + { + "str": "{{", + "token_id": 3381, + "o_rev_id": 771957452, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "|", + "token_id": 3382, + "o_rev_id": 771957452, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "=", + "token_id": 3383, + "o_rev_id": 771957452, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "}}", + "token_id": 3384, + "o_rev_id": 771957452, + "in": [], + "out": [ + 908451228 + ] + }, + { + "str": "allan", + "token_id": 3385, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "snyder", + "token_id": 3386, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ",", + "token_id": 3387, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "frs", + "token_id": 3388, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ",", + "token_id": 3389, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "director", + "token_id": 3390, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "of", + "token_id": 3391, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "the", + "token_id": 3392, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "centre", + "token_id": 3393, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "for", + "token_id": 3394, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "the", + "token_id": 3395, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "mind", + "token_id": 3396, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "writes", + "token_id": 3397, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ":", + "token_id": 3398, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "“a", + "token_id": 3399, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "masterpiece", + "token_id": 3400, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": ".", + "token_id": 3401, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "the", + "token_id": 3402, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "best", + "token_id": 3403, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "of", + "token_id": 3404, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "its", + "token_id": 3405, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "kind", + "token_id": 3406, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "and", + "token_id": 3407, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "beautifully", + "token_id": 3408, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "crafted", + "token_id": 3409, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": ".", + "token_id": 3410, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "alluring", + "token_id": 3411, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "story", + "token_id": 3412, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "telling", + "token_id": 3413, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": ",", + "token_id": 3414, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "building", + "token_id": 3415, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "to", + "token_id": 3416, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "a", + "token_id": 3417, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "penetrating", + "token_id": 3418, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "understanding", + "token_id": 3419, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "of", + "token_id": 3420, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "what", + "token_id": 3421, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "it", + "token_id": 3422, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "is", + "token_id": 3423, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "to", + "token_id": 3424, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "be", + "token_id": 3425, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "uniquely", + "token_id": 3426, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "human", + "token_id": 3427, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": ".", + "token_id": 3428, + "o_rev_id": 772572484, + "in": [ + 788355724 + ], + "out": [ + 785294020, + 908258055 + ] + }, + { + "str": "ramachandran", + "token_id": 3429, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "is", + "token_id": 3430, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "the", + "token_id": 3431, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "foremost", + "token_id": 3432, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "pioneer", + "token_id": 3433, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "—", + "token_id": 3434, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "the", + "token_id": 3435, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "galileo", + "token_id": 3436, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "—", + "token_id": 3437, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "of", + "token_id": 3438, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "neurocognition", + "token_id": 3439, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": ".", + "token_id": 3440, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "\"", + "token_id": 3441, + "o_rev_id": 772572484, + "in": [ + 1104913821 + ], + "out": [ + 908258055 + ] + }, + { + "str": "http", + "token_id": 3442, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ":", + "token_id": 3443, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "/", + "token_id": 3444, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "/", + "token_id": 3445, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "books", + "token_id": 3446, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ".", + "token_id": 3447, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "wwnorton", + "token_id": 3448, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ".", + "token_id": 3449, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "com", + "token_id": 3450, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "/", + "token_id": 3451, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "books", + "token_id": 3452, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "/", + "token_id": 3453, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "detail", + "token_id": 3454, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ".", + "token_id": 3455, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "aspx", + "token_id": 3456, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "?", + "token_id": 3457, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "id", + "token_id": 3458, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "=", + "token_id": 3459, + "o_rev_id": 772572484, + "in": [], + "out": [ + 862632766 + ] + }, + { + "str": "17227", + "token_id": 3460, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "<", + "token_id": 3461, + "o_rev_id": 772572484, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "www", + "token_id": 3462, + "o_rev_id": 794591153, + "in": [], + "out": [] + }, + { + "str": "articles", + "token_id": 3463, + "o_rev_id": 794591153, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 3464, + "o_rev_id": 800928735, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "https", + "token_id": 3465, + "o_rev_id": 800928735, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "https", + "token_id": 3466, + "o_rev_id": 800928735, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "https", + "token_id": 3467, + "o_rev_id": 833891199, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 3468, + "o_rev_id": 840168304, + "in": [], + "out": [] + }, + { + "str": "non", + "token_id": 3469, + "o_rev_id": 840168304, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3470, + "o_rev_id": 840168304, + "in": [], + "out": [] + }, + { + "str": "fiction", + "token_id": 3471, + "o_rev_id": 840168304, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 3472, + "o_rev_id": 840168304, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 3473, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 3474, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 3475, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3476, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3477, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3478, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3479, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3480, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3481, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3482, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3483, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3484, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "hardcover", + "token_id": 3485, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "nonfiction", + "token_id": 3486, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 3487, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3488, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "sellers", + "token_id": 3489, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3490, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3491, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3492, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "new", + "token_id": 3493, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "york", + "token_id": 3494, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "times", + "token_id": 3495, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3496, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "publisher", + "token_id": 3497, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3498, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "}}", + "token_id": 3499, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "{{", + "token_id": 3500, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "cite", + "token_id": 3501, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3502, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3503, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "url", + "token_id": 3504, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3505, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3506, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3507, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3508, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3509, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "center", + "token_id": 3510, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 3511, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 3512, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 3513, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "cognition", + "token_id": 3514, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3515, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "home", + "token_id": 3516, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3517, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "website", + "token_id": 3518, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3519, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "cbc", + "token_id": 3520, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3521, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "ucsd", + "token_id": 3522, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3523, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "edu", + "token_id": 3524, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3525, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3526, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "cite", + "token_id": 3527, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "web", + "token_id": 3528, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3529, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "url", + "token_id": 3530, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3531, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "133", + "token_id": 3532, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 3533, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "8201841", + "token_id": 3534, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 3535, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "3538510", + "token_id": 3536, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "?", + "token_id": 3537, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 3538, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "encoding", + "token_id": 3539, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3540, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "utf8", + "token_id": 3541, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "&", + "token_id": 3542, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "n", + "token_id": 3543, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3544, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "283155", + "token_id": 3545, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "&", + "token_id": 3546, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 3547, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3548, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3549, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3550, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "title", + "token_id": 3551, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3552, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "the", + "token_id": 3553, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 3554, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3555, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 3556, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 3557, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3558, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 3559, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "neuroscientist", + "token_id": 3560, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3561, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 3562, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "quest", + "token_id": 3563, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 3564, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 3565, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "makes", + "token_id": 3566, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 3567, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 3568, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3569, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "first", + "token_id": 3570, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3571, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "search", + "token_id": 3572, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3573, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "last", + "token_id": 3574, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3575, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "results", + "token_id": 3576, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3577, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "date", + "token_id": 3578, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3579, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "17", + "token_id": 3580, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "january", + "token_id": 3581, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 3582, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3583, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "publisher", + "token_id": 3584, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3585, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "w", + "token_id": 3586, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3587, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "w", + "token_id": 3588, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3589, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "norton", + "token_id": 3590, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 3591, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "company", + "token_id": 3592, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3593, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "via", + "token_id": 3594, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3595, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "}}", + "token_id": 3596, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "{{", + "token_id": 3597, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "cite", + "token_id": 3598, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3599, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3600, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "url", + "token_id": 3601, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3602, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "131", + "token_id": 3603, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 3604, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "9291652", + "token_id": 3605, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 3606, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "8282259", + "token_id": 3607, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "?", + "token_id": 3608, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 3609, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "encoding", + "token_id": 3610, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3611, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "utf8", + "token_id": 3612, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "&", + "token_id": 3613, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "n", + "token_id": 3614, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3615, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "283155", + "token_id": 3616, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "&", + "token_id": 3617, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 3618, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3619, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3620, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3621, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "title", + "token_id": 3622, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3623, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "the", + "token_id": 3624, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 3625, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3626, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 3627, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 3628, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3629, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 3630, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "neuroscientist", + "token_id": 3631, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3632, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 3633, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "quest", + "token_id": 3634, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 3635, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 3636, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "makes", + "token_id": 3637, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 3638, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 3639, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3640, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "first", + "token_id": 3641, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3642, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "search", + "token_id": 3643, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3644, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "last", + "token_id": 3645, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3646, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "results", + "token_id": 3647, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3648, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "date", + "token_id": 3649, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3650, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "17", + "token_id": 3651, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "january", + "token_id": 3652, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 3653, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3654, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "publisher", + "token_id": 3655, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3656, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "w", + "token_id": 3657, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3658, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "w", + "token_id": 3659, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3660, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "norton", + "token_id": 3661, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 3662, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "company", + "token_id": 3663, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3664, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "via", + "token_id": 3665, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3666, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "}}", + "token_id": 3667, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "{{", + "token_id": 3668, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "cite", + "token_id": 3669, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3670, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3671, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "url", + "token_id": 3672, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3673, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "137", + "token_id": 3674, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 3675, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "4519162", + "token_id": 3676, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "-", + "token_id": 3677, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "4049053", + "token_id": 3678, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "?", + "token_id": 3679, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 3680, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "encoding", + "token_id": 3681, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3682, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "utf8", + "token_id": 3683, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "&", + "token_id": 3684, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "n", + "token_id": 3685, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3686, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "283155", + "token_id": 3687, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "&", + "token_id": 3688, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "_", + "token_id": 3689, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3690, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3691, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3692, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "title", + "token_id": 3693, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3694, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "the", + "token_id": 3695, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 3696, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3697, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 3698, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 3699, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3700, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 3701, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "neuroscientist", + "token_id": 3702, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3703, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 3704, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "quest", + "token_id": 3705, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 3706, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 3707, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "makes", + "token_id": 3708, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 3709, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 3710, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3711, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "first", + "token_id": 3712, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3713, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "search", + "token_id": 3714, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3715, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "last", + "token_id": 3716, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3717, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "results", + "token_id": 3718, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3719, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "date", + "token_id": 3720, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3721, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "17", + "token_id": 3722, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "january", + "token_id": 3723, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 3724, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3725, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "publisher", + "token_id": 3726, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3727, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "w", + "token_id": 3728, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3729, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "w", + "token_id": 3730, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3731, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "norton", + "token_id": 3732, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "&", + "token_id": 3733, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "company", + "token_id": 3734, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3735, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "via", + "token_id": 3736, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 3737, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "}}", + "token_id": 3738, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "{{", + "token_id": 3739, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "cite", + "token_id": 3740, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "web", + "token_id": 3741, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "|", + "token_id": 3742, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "url", + "token_id": 3743, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "=", + "token_id": 3744, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "=", + "token_id": 3745, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "|", + "token_id": 3746, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "title", + "token_id": 3747, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "=", + "token_id": 3748, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "page", + "token_id": 3749, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "not", + "token_id": 3750, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "found", + "token_id": 3751, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "-", + "token_id": 3752, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "w", + "token_id": 3753, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ".", + "token_id": 3754, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "w", + "token_id": 3755, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ".", + "token_id": 3756, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "norton", + "token_id": 3757, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "&", + "token_id": 3758, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "company", + "token_id": 3759, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "|", + "token_id": 3760, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "website", + "token_id": 3761, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "=", + "token_id": 3762, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "books", + "token_id": 3763, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ".", + "token_id": 3764, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "wwnorton", + "token_id": 3765, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": ".", + "token_id": 3766, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "com", + "token_id": 3767, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "}}", + "token_id": 3768, + "o_rev_id": 862632766, + "in": [], + "out": [ + 908258055 + ] + }, + { + "str": "{{", + "token_id": 3769, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 3770, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3771, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3772, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 3773, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3774, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3775, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3776, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3777, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3778, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 3779, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3780, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 3781, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 3782, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3783, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "unlocking", + "token_id": 3784, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3785, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "mystery", + "token_id": 3786, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 3787, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 3788, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "nature", + "token_id": 3789, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 3790, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "v", + "token_id": 3791, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 3792, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 3793, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 3794, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 3795, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3796, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 3797, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3798, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3799, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 3800, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3801, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3802, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 3803, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3804, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "5", + "token_id": 3805, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "october", + "token_id": 3806, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 3807, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3808, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "publisher", + "token_id": 3809, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3810, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3811, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "via", + "token_id": 3812, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3813, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 3814, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3815, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3816, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "co", + "token_id": 3817, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3818, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "uk", + "token_id": 3819, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3820, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 3821, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "cite", + "token_id": 3822, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 3823, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3824, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "url", + "token_id": 3825, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3826, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "http", + "token_id": 3827, + "o_rev_id": 862632766, + "in": [], + "out": [ + 880448918 + ] + }, + { + "str": "|", + "token_id": 3828, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 3829, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3830, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3831, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "first", + "token_id": 3832, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3833, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "raymond", + "token_id": 3834, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3835, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "last", + "token_id": 3836, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3837, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "tallis", + "token_id": 3838, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3839, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "date", + "token_id": 3840, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3841, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "8", + "token_id": 3842, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "january", + "token_id": 3843, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 3844, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 3845, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "publisher", + "token_id": 3846, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3847, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 3848, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "via", + "token_id": 3849, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 3850, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "www", + "token_id": 3851, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3852, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "wsj", + "token_id": 3853, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 3854, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 3855, + "o_rev_id": 862632766, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 3856, + "o_rev_id": 862632766, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "[[", + "token_id": 3857, + "o_rev_id": 862632876, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "]]", + "token_id": 3858, + "o_rev_id": 862632876, + "in": [], + "out": [ + 904391806 + ] + }, + { + "str": "[[", + "token_id": 3859, + "o_rev_id": 868189470, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "]]", + "token_id": 3860, + "o_rev_id": 868189470, + "in": [], + "out": [ + 908451141 + ] + }, + { + "str": "https", + "token_id": 3861, + "o_rev_id": 880448918, + "in": [], + "out": [] + }, + { + "str": "devoted", + "token_id": 3862, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "most", + "token_id": 3863, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 3864, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 3865, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 3866, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 3867, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "questioning", + "token_id": 3868, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "stated", + "token_id": 3869, + "o_rev_id": 904391806, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "https", + "token_id": 3870, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "article", + "token_id": 3871, + "o_rev_id": 904391806, + "in": [], + "out": [] + }, + { + "str": "did", + "token_id": 3872, + "o_rev_id": 904391806, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "synopsis", + "token_id": 3873, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3874, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3875, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3876, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3877, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "how", + "token_id": 3878, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "controversial", + "token_id": 3879, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "some", + "token_id": 3880, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 3881, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "even", + "token_id": 3882, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "if", + "token_id": 3883, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "mirror", + "token_id": 3884, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "neurons", + "token_id": 3885, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "turn", + "token_id": 3886, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "out", + "token_id": 3887, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "not", + "token_id": 3888, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 3889, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "be", + "token_id": 3890, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "quite", + "token_id": 3891, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 3892, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "important", + "token_id": 3893, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "as", + "token_id": 3894, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 3895, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "thinks", + "token_id": 3896, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "—", + "token_id": 3897, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 3898, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "has", + "token_id": 3899, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "elsewhere", + "token_id": 3900, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "predicted", + "token_id": 3901, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 3902, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "they", + "token_id": 3903, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "will", + "token_id": 3904, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "do", + "token_id": 3905, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 3906, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "psychology", + "token_id": 3907, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 3908, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "dna", + "token_id": 3909, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "did", + "token_id": 3910, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 3911, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "biology", + "token_id": 3912, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "—", + "token_id": 3913, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3914, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 3915, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 3916, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "packed", + "token_id": 3917, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 3918, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "other", + "token_id": 3919, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "evidence", + "token_id": 3920, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 3921, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "neuroscience", + "token_id": 3922, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "has", + "token_id": 3923, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "made", + "token_id": 3924, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "illuminating", + "token_id": 3925, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "progress", + "token_id": 3926, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 3927, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "recent", + "token_id": 3928, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "years", + "token_id": 3929, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "reading", + "token_id": 3930, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "such", + "token_id": 3931, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "accounts", + "token_id": 3932, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 3933, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "exactly", + "token_id": 3934, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 3935, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "our", + "token_id": 3936, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "brains", + "token_id": 3937, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "get", + "token_id": 3938, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "up", + "token_id": 3939, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 3940, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "apt", + "token_id": 3941, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 3942, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "leave", + "token_id": 3943, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "one", + "token_id": 3944, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 3945, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3946, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "disconcerting", + "token_id": 3947, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "thought", + "token_id": 3948, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 3949, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "they", + "token_id": 3950, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "are", + "token_id": 3951, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "often", + "token_id": 3952, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 3953, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "lot", + "token_id": 3954, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "cleverer", + "token_id": 3955, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "than", + "token_id": 3956, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "their", + "token_id": 3957, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "owners", + "token_id": 3958, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "realize", + "token_id": 3959, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3960, + "o_rev_id": 908253636, + "in": [], + "out": [ + 908259103 + ] + }, + { + "str": "some", + "token_id": 3961, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 3962, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3963, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "concluding", + "token_id": 3964, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3965, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3966, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 3967, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 3968, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 3969, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 3970, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3971, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 3972, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3973, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "though", + "token_id": 3974, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 3975, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 3976, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "engagingly", + "token_id": 3977, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "written", + "token_id": 3978, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 3979, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "often", + "token_id": 3980, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "fascinating", + "token_id": 3981, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 3982, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "reminds", + "token_id": 3983, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 3984, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "how", + "token_id": 3985, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "little", + "token_id": 3986, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "cause", + "token_id": 3987, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "we", + "token_id": 3988, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "have", + "token_id": 3989, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 3990, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "privilege", + "token_id": 3991, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "what", + "token_id": 3992, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "neuro", + "token_id": 3993, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "scientists", + "token_id": 3994, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 3995, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "us", + "token_id": 3996, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "about", + "token_id": 3997, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "over", + "token_id": 3998, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 3999, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "testimony", + "token_id": 4000, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "novelists", + "token_id": 4001, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "poets", + "token_id": 4002, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4003, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "social", + "token_id": 4004, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "workers", + "token_id": 4005, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "or", + "token_id": 4006, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "philosophers", + "token_id": 4007, + "o_rev_id": 908253636, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4008, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4009, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4010, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "pre", + "token_id": 4011, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4012, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "publication", + "token_id": 4013, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "endorsements", + "token_id": 4014, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4015, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4016, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "blurbs", + "token_id": 4017, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4018, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4019, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4020, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4021, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "wrote", + "token_id": 4022, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4023, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "'", + "token_id": 4024, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "'", + "token_id": 4025, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "'", + "token_id": 4026, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967552585 + ] + }, + { + "str": "=", + "token_id": 4027, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4028, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4029, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4030, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "reviews", + "token_id": 4031, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4032, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4033, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4034, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "wrote", + "token_id": 4035, + "o_rev_id": 908259103, + "in": [], + "out": [ + 908259693 + ] + }, + { + "str": "(", + "token_id": 4036, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4037, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4038, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "american", + "token_id": 4039, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "scientist", + "token_id": 4040, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4041, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4042, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": ")", + "token_id": 4043, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "(", + "token_id": 4044, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4045, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4046, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "new", + "token_id": 4047, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "york", + "token_id": 4048, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "times", + "token_id": 4049, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4050, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4051, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": ")", + "token_id": 4052, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": ",", + "token_id": 4053, + "o_rev_id": 908259103, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "but", + "token_id": 4054, + "o_rev_id": 908259103, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "generally", + "token_id": 4055, + "o_rev_id": 908259103, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "praised", + "token_id": 4056, + "o_rev_id": 908259103, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "the", + "token_id": 4057, + "o_rev_id": 908259103, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "book", + "token_id": 4058, + "o_rev_id": 908259103, + "in": [], + "out": [ + 908260436 + ] + }, + { + "str": "(", + "token_id": 4059, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4060, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4061, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "telegraph", + "token_id": 4062, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4063, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4064, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4065, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4066, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4067, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4068, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4069, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4070, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4071, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4072, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4073, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4074, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "wall", + "token_id": 4075, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "street", + "token_id": 4076, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "journal", + "token_id": 4077, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4078, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4079, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4080, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "praised", + "token_id": 4081, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "book", + "token_id": 4082, + "o_rev_id": 908259103, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "but", + "token_id": 4083, + "o_rev_id": 908259103, + "in": [], + "out": [] + }, + { + "str": "james", + "token_id": 4084, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "mcconnachie", + "token_id": 4085, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4086, + "o_rev_id": 908259693, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": ")", + "token_id": 4087, + "o_rev_id": 908259693, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "<", + "token_id": 4088, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4089, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4090, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4091, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4092, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4093, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4094, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4095, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4096, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "broken", + "token_id": 4097, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "mirror", + "token_id": 4098, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "theory", + "token_id": 4099, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4100, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "autism", + "token_id": 4101, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "saying", + "token_id": 4102, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 4103, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "example", + "token_id": 4104, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4105, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4106, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4107, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4108, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4109, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4110, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4111, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4112, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4113, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4114, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4115, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4116, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4117, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4118, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4119, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4120, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4121, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4122, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4123, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 4124, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "year", + "token_id": 4125, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "’", + "token_id": 4126, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 4127, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "magisterial", + "token_id": 4128, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "study", + "token_id": 4129, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4130, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4131, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 4132, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "’", + "token_id": 4133, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 4134, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "two", + "token_id": 4135, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "opposed", + "token_id": 4136, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "hemispheres", + "token_id": 4137, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4138, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4139, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4140, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4141, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4142, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4143, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4144, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4145, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4146, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4147, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4148, + "o_rev_id": 908259693, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4149, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 4150, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "reviews", + "token_id": 4151, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4152, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "criticism", + "token_id": 4153, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "particularly", + "token_id": 4154, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "focusing", + "token_id": 4155, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 4156, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "ramchandran", + "token_id": 4157, + "o_rev_id": 908260436, + "in": [], + "out": [ + 1104913821 + ] + }, + { + "str": "'", + "token_id": 4158, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 4159, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "theories", + "token_id": 4160, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "about", + "token_id": 4161, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "mirror", + "token_id": 4162, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "neurons", + "token_id": 4163, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "generally", + "token_id": 4164, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "recommended", + "token_id": 4165, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4166, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4167, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "but", + "token_id": 4168, + "o_rev_id": 908260436, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4169, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "colin", + "token_id": 4170, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "mcginn", + "token_id": 4171, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4172, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4173, + "o_rev_id": 908262059, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "'", + "token_id": 4174, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4175, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "new", + "token_id": 4176, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "york", + "token_id": 4177, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 4178, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4179, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 4180, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4181, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4182, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4183, + "o_rev_id": 908262059, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "praised", + "token_id": 4184, + "o_rev_id": 908262059, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "the", + "token_id": 4185, + "o_rev_id": 908262059, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "book", + "token_id": 4186, + "o_rev_id": 908262059, + "in": [], + "out": [ + 967553399 + ] + }, + { + "str": "despite", + "token_id": 4187, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "criticizing", + "token_id": 4188, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 4189, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 4190, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "reductionism", + "token_id": 4191, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4192, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "oversimplification", + "token_id": 4193, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4194, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "saying", + "token_id": 4195, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4196, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 4197, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "discusses", + "token_id": 4198, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 4199, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "enormous", + "token_id": 4200, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "range", + "token_id": 4201, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4202, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "syndromes", + "token_id": 4203, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4204, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "topics", + "token_id": 4205, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4206, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4207, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4208, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4209, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 4210, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4211, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 4212, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 4213, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4214, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4215, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4216, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 4217, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "writing", + "token_id": 4218, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 4219, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "generally", + "token_id": 4220, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "lucid", + "token_id": 4221, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4222, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "charming", + "token_id": 4223, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4224, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4225, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "informative", + "token_id": 4226, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4227, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 4228, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "much", + "token_id": 4229, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "humor", + "token_id": 4230, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4231, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "lighten", + "token_id": 4232, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4233, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "load", + "token_id": 4234, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4235, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "latinate", + "token_id": 4236, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 4237, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "disquisitions", + "token_id": 4238, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4239, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 4240, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 4241, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4242, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "leader", + "token_id": 4243, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4244, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 4245, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "field", + "token_id": 4246, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4247, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 4248, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "certainly", + "token_id": 4249, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "an", + "token_id": 4250, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "ingenious", + "token_id": 4251, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4252, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "tireless", + "token_id": 4253, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "researcher", + "token_id": 4254, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4255, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "this", + "token_id": 4256, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 4257, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4258, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "best", + "token_id": 4259, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4260, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4261, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "its", + "token_id": 4262, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "kind", + "token_id": 4263, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 4264, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "i", + "token_id": 4265, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "have", + "token_id": 4266, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "come", + "token_id": 4267, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "across", + "token_id": 4268, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 4269, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "scientific", + "token_id": 4270, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "rigor", + "token_id": 4271, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4272, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "general", + "token_id": 4273, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "interest", + "token_id": 4274, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4275, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4276, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "clarity", + "token_id": 4277, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "—", + "token_id": 4278, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "though", + "token_id": 4279, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "some", + "token_id": 4280, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4281, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "it", + "token_id": 4282, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "will", + "token_id": 4283, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "be", + "token_id": 4284, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4285, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "hard", + "token_id": 4286, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "slog", + "token_id": 4287, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 4288, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4289, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "uninitiated", + "token_id": 4290, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4291, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4292, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4293, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 4294, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4295, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4296, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "nyrb", + "token_id": 4297, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4298, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4299, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4300, + "o_rev_id": 908262059, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "cite", + "token_id": 4301, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4302, + "o_rev_id": 908262059, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "|", + "token_id": 4303, + "o_rev_id": 908262059, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "url", + "token_id": 4304, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4305, + "o_rev_id": 908262059, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "https", + "token_id": 4306, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4307, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4308, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4309, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 4310, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4311, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "nybooks", + "token_id": 4312, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4313, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "com", + "token_id": 4314, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4315, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "articles", + "token_id": 4316, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4317, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 4318, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4319, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "03", + "token_id": 4320, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4321, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "24", + "token_id": 4322, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4323, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "can", + "token_id": 4324, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4325, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 4326, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4327, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "explain", + "token_id": 4328, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4329, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "your", + "token_id": 4330, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4331, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "mind", + "token_id": 4332, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4333, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4334, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 4335, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4336, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "can", + "token_id": 4337, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4338, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 4339, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "explain", + "token_id": 4340, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "your", + "token_id": 4341, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "mind", + "token_id": 4342, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "?", + "token_id": 4343, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4344, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 4345, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4346, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "mcginn", + "token_id": 4347, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4348, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 4349, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4350, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "colin", + "token_id": 4351, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4352, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "work", + "token_id": 4353, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4354, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "ny", + "token_id": 4355, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "review", + "token_id": 4356, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4357, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "books", + "token_id": 4358, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4359, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "quote", + "token_id": 4360, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4361, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4362, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4363, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4364, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "march", + "token_id": 4365, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "24", + "token_id": 4366, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4367, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "2011", + "token_id": 4368, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4369, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "accessdate", + "token_id": 4370, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4371, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "july", + "token_id": 4372, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "28", + "token_id": 4373, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4374, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "2019", + "token_id": 4375, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4376, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4377, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4378, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4379, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4380, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4381, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4382, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4383, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "until", + "token_id": 4384, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "we", + "token_id": 4385, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "clear", + "token_id": 4386, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "up", + "token_id": 4387, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4388, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "ground", + "token_id": 4389, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4390, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "floor", + "token_id": 4391, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "aspects", + "token_id": 4392, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4393, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 4394, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "consciousness", + "token_id": 4395, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "—", + "token_id": 4396, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4397, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "particular", + "token_id": 4398, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4399, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 4400, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4401, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "person", + "token_id": 4402, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "being", + "token_id": 4403, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "—", + "token_id": 4404, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "claims", + "token_id": 4405, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4406, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "advance", + "token_id": 4407, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "our", + "token_id": 4408, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "understanding", + "token_id": 4409, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4410, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "its", + "token_id": 4411, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "higher", + "token_id": 4412, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "levels", + "token_id": 4413, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4414, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4415, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4416, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4417, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "grand", + "token_id": 4418, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "edifice", + "token_id": 4419, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4420, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "civilization", + "token_id": 4421, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4422, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 4423, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "peering", + "token_id": 4424, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "into", + "token_id": 4425, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "intra", + "token_id": 4426, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "cranial", + "token_id": 4427, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "darkness", + "token_id": 4428, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "will", + "token_id": 4429, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "not", + "token_id": 4430, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "withstand", + "token_id": 4431, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "even", + "token_id": 4432, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4433, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "most", + "token_id": 4434, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "cursory", + "token_id": 4435, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "examination", + "token_id": 4436, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4437, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4438, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4439, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4440, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4441, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4442, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "blockquote", + "token_id": 4443, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4444, + "o_rev_id": 908262059, + "in": [], + "out": [] + }, + { + "str": "name", + "token_id": 4445, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4446, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4447, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "brugger", + "token_id": 4448, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4449, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4450, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 4451, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "journal", + "token_id": 4452, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4453, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 4454, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4455, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 4456, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4457, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4458, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4459, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "www", + "token_id": 4460, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4461, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "zora", + "token_id": 4462, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4463, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "uzh", + "token_id": 4464, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4465, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "ch", + "token_id": 4466, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4467, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "id", + "token_id": 4468, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4469, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "eprint", + "token_id": 4470, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4471, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "67368", + "token_id": 4472, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4473, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "1", + "token_id": 4474, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4475, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4476, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 4477, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 4478, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4479, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 4480, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "_", + "token_id": 4481, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 4482, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4483, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "pdf", + "token_id": 4484, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4485, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "title", + "token_id": 4486, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4487, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4488, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "tell", + "token_id": 4489, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4490, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "tale", + "token_id": 4491, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 4492, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4493, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "unlocking", + "token_id": 4494, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4495, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "mystery", + "token_id": 4496, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4497, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 4498, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "nature", + "token_id": 4499, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4500, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "last", + "token_id": 4501, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4502, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4503, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 4504, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4505, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4506, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "work", + "token_id": 4507, + "o_rev_id": 908278188, + "in": [], + "out": [ + 1173115659 + ] + }, + { + "str": "=", + "token_id": 4508, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4509, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "doi", + "token_id": 4510, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4511, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "10", + "token_id": 4512, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4513, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "1080", + "token_id": 4514, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4515, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "13546805", + "token_id": 4516, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4517, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "2012", + "token_id": 4518, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4519, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "685295", + "token_id": 4520, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4521, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "quote", + "token_id": 4522, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4523, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "i", + "token_id": 4524, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "think", + "token_id": 4525, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "i", + "token_id": 4526, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "will", + "token_id": 4527, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "recommend", + "token_id": 4528, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "this", + "token_id": 4529, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4530, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4531, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "any", + "token_id": 4532, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4533, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "my", + "token_id": 4534, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "friends", + "token_id": 4535, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "who", + "token_id": 4536, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "do", + "token_id": 4537, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "not", + "token_id": 4538, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "shun", + "token_id": 4539, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "pop", + "token_id": 4540, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4541, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "neuro", + "token_id": 4542, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4543, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "science", + "token_id": 4544, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4545, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "principle", + "token_id": 4546, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4547, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "although", + "token_id": 4548, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4549, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4550, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4551, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "telltale", + "token_id": 4552, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "brain", + "token_id": 4553, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4554, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4555, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "does", + "token_id": 4556, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "contain", + "token_id": 4557, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4558, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "lot", + "token_id": 4559, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4560, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "pop", + "token_id": 4561, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 4562, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4563, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "surface", + "token_id": 4564, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4565, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "overall", + "token_id": 4566, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "content", + "token_id": 4567, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "is", + "token_id": 4568, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "very", + "token_id": 4569, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "much", + "token_id": 4570, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "popper", + "token_id": 4571, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4572, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "who", + "token_id": 4573, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "once", + "token_id": 4574, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "clearly", + "token_id": 4575, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "stated", + "token_id": 4576, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "that", + "token_id": 4577, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4578, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "bold", + "token_id": 4579, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "ideas", + "token_id": 4580, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4581, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "unjustified", + "token_id": 4582, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "anticipations", + "token_id": 4583, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4584, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "speculative", + "token_id": 4585, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "thought", + "token_id": 4586, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "are", + "token_id": 4587, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "our", + "token_id": 4588, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "only", + "token_id": 4589, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "means", + "token_id": 4590, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 4591, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "interpreting", + "token_id": 4592, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "nature", + "token_id": 4593, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4594, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "(", + "token_id": 4595, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "popper", + "token_id": 4596, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4597, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "1959", + "token_id": 4598, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4599, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "1980", + "token_id": 4600, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4601, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "p", + "token_id": 4602, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "280", + "token_id": 4603, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ")", + "token_id": 4604, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4605, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4606, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "date", + "token_id": 4607, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4608, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "december", + "token_id": 4609, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "7", + "token_id": 4610, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "2018", + "token_id": 4611, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4612, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "accessdate", + "token_id": 4613, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4614, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "july", + "token_id": 4615, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "10", + "token_id": 4616, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "2019", + "token_id": 4617, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4618, + "o_rev_id": 908278188, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4619, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4620, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "first", + "token_id": 4621, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "chapter", + "token_id": 4622, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4623, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "discusses", + "token_id": 4624, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4625, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 4626, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "ability", + "token_id": 4627, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4628, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "change", + "token_id": 4629, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4630, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "adapt", + "token_id": 4631, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4632, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "illustrating", + "token_id": 4633, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4634, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "concept", + "token_id": 4635, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "from", + "token_id": 4636, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 4637, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "work", + "token_id": 4638, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "on", + "token_id": 4639, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "phantom", + "token_id": 4640, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "limbs", + "token_id": 4641, + "o_rev_id": 908451141, + "in": [], + "out": [ + 967554085 + ] + }, + { + "str": ".", + "token_id": 4642, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4643, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "second", + "token_id": 4644, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "chapter", + "token_id": 4645, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "describes", + "token_id": 4646, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "some", + "token_id": 4647, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "his", + "token_id": 4648, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "work", + "token_id": 4649, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 4650, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4651, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "addressing", + "token_id": 4652, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4653, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "concept", + "token_id": 4654, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4655, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 4656, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "awareness", + "token_id": 4657, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4658, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "chapter", + "token_id": 4659, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "three", + "token_id": 4660, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "connects", + "token_id": 4661, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "ideas", + "token_id": 4662, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "about", + "token_id": 4663, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "synesthesia", + "token_id": 4664, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "to", + "token_id": 4665, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "creativity", + "token_id": 4666, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4667, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "chapters", + "token_id": 4668, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "four", + "token_id": 4669, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4670, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "five", + "token_id": 4671, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "talk", + "token_id": 4672, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "about", + "token_id": 4673, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "mirror", + "token_id": 4674, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "neurons", + "token_id": 4675, + "o_rev_id": 908451141, + "in": [], + "out": [ + 967554085 + ] + }, + { + "str": ",", + "token_id": 4676, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "while", + "token_id": 4677, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "chapter", + "token_id": 4678, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "six", + "token_id": 4679, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "discusses", + "token_id": 4680, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "human", + "token_id": 4681, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "language", + "token_id": 4682, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4683, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 4684, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "proposes", + "token_id": 4685, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4686, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "nine", + "token_id": 4687, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "laws", + "token_id": 4688, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4689, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "aesthetics", + "token_id": 4690, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4691, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4692, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "which", + "token_id": 4693, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "he", + "token_id": 4694, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "discusses", + "token_id": 4695, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4696, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "chapters", + "token_id": 4697, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "seven", + "token_id": 4698, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4699, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "eight", + "token_id": 4700, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4701, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "final", + "token_id": 4702, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "chapter", + "token_id": 4703, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4704, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "chapter", + "token_id": 4705, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "nine", + "token_id": 4706, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4707, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4708, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4709, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "ape", + "token_id": 4710, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "with", + "token_id": 4711, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "soul", + "token_id": 4712, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4713, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "concerns", + "token_id": 4714, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "introspection", + "token_id": 4715, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "and", + "token_id": 4716, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "self", + "token_id": 4717, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4718, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "awareness", + "token_id": 4719, + "o_rev_id": 908451141, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4720, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4721, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "offered", + "token_id": 4722, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "following", + "token_id": 4723, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "praise", + "token_id": 4724, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "for", + "token_id": 4725, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4726, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "quote", + "token_id": 4727, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4728, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 4729, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4730, + "o_rev_id": 967552585, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4731, + "o_rev_id": 967552844, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4732, + "o_rev_id": 967552844, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4733, + "o_rev_id": 967552844, + "in": [], + "out": [] + }, + { + "str": "of", + "token_id": 4734, + "o_rev_id": 967552844, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4735, + "o_rev_id": 967552844, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4736, + "o_rev_id": 967553019, + "in": [], + "out": [] + }, + { + "str": "neurologist", + "token_id": 4737, + "o_rev_id": 967553019, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4738, + "o_rev_id": 967553019, + "in": [], + "out": [] + }, + { + "str": "scientist", + "token_id": 4739, + "o_rev_id": 967553019, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4740, + "o_rev_id": 967553019, + "in": [], + "out": [] + }, + { + "str": "psychiatrist", + "token_id": 4741, + "o_rev_id": 967553019, + "in": [], + "out": [] + }, + { + "str": "wrote", + "token_id": 4742, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4743, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4744, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "writing", + "token_id": 4745, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4746, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4747, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4748, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4749, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4750, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "new", + "token_id": 4751, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "york", + "token_id": 4752, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "times", + "token_id": 4753, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4754, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4755, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4756, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4757, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "praised", + "token_id": 4758, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4759, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4760, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4761, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4762, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4763, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4764, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "praised", + "token_id": 4765, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4766, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4767, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4768, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4769, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4770, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4771, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "wrote", + "token_id": 4772, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4773, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4774, + "o_rev_id": 967553399, + "in": [], + "out": [ + 967553905 + ] + }, + { + "str": "]]", + "token_id": 4775, + "o_rev_id": 967553399, + "in": [], + "out": [ + 967553905 + ] + }, + { + "str": "writing", + "token_id": 4776, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "in", + "token_id": 4777, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4778, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4779, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4780, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "american", + "token_id": 4781, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "scientist", + "token_id": 4782, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4783, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4784, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4785, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": ",", + "token_id": 4786, + "o_rev_id": 967553399, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4787, + "o_rev_id": 967553905, + "in": [], + "out": [] + }, + { + "str": "philosopher", + "token_id": 4788, + "o_rev_id": 967553905, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4789, + "o_rev_id": 967553905, + "in": [], + "out": [] + }, + { + "str": "philosopher", + "token_id": 4790, + "o_rev_id": 967553905, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4791, + "o_rev_id": 967553905, + "in": [], + "out": [] + }, + { + "str": "daily", + "token_id": 4792, + "o_rev_id": 967553905, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4793, + "o_rev_id": 967553905, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4794, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4795, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4796, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "limb", + "token_id": 4797, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4798, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 4799, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4800, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "neuron", + "token_id": 4801, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4802, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "s", + "token_id": 4803, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4804, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4805, + "o_rev_id": 967554085, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 4806, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4807, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4808, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4809, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4810, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4811, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "archive", + "token_id": 4812, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4813, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "org", + "token_id": 4814, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4815, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4816, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4817, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "20121017122227", + "token_id": 4818, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4819, + "o_rev_id": 1019929778, + "in": [], + "out": [] + }, + { + "str": "https", + "token_id": 4820, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": ":", + "token_id": 4821, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4822, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4823, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4824, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4825, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "archive", + "token_id": 4826, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": ".", + "token_id": 4827, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "org", + "token_id": 4828, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4829, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "web", + "token_id": 4830, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4831, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "20160303233556", + "token_id": 4832, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "/", + "token_id": 4833, + "o_rev_id": 1072077071, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 4834, + "o_rev_id": 1104913821, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4835, + "o_rev_id": 1104913821, + "in": [], + "out": [] + }, + { + "str": "a", + "token_id": 4836, + "o_rev_id": 1104913821, + "in": [], + "out": [] + }, + { + "str": "journal", + "token_id": 4837, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "volume", + "token_id": 4838, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4839, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "17", + "token_id": 4840, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4841, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "issue", + "token_id": 4842, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4843, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "4", + "token_id": 4844, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4845, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "pages", + "token_id": 4846, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4847, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "351", + "token_id": 4848, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "–", + "token_id": 4849, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "358", + "token_id": 4850, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4851, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "s2cid", + "token_id": 4852, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4853, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "144065665", + "token_id": 4854, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4855, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "<", + "token_id": 4856, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "ref", + "token_id": 4857, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": ">", + "token_id": 4858, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4859, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "cite", + "token_id": 4860, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "news", + "token_id": 4861, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4862, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "url", + "token_id": 4863, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4864, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4865, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4866, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "work", + "token_id": 4867, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4868, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "the", + "token_id": 4869, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "new", + "token_id": 4870, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "york", + "token_id": 4871, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "times", + "token_id": 4872, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4873, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4874, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4875, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4876, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4877, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4878, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4879, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4880, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4881, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4882, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4883, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4884, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4885, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4886, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4887, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4888, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "isbn", + "token_id": 4889, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4890, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "978", + "token_id": 4891, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4892, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "0393077827", + "token_id": 4893, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4894, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4895, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4896, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4897, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4898, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4899, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4900, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4901, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4902, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4903, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4904, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4905, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4906, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4907, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "isbn", + "token_id": 4908, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4909, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "978", + "token_id": 4910, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4911, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "0393077827", + "token_id": 4912, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4913, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4914, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4915, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4916, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4917, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4918, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4919, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4920, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4921, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4922, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4923, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4924, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4925, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4926, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "isbn", + "token_id": 4927, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4928, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "978", + "token_id": 4929, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "-", + "token_id": 4930, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "0393077827", + "token_id": 4931, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4932, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4933, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "magazine", + "token_id": 4934, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4935, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4936, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4937, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "news", + "token_id": 4938, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4939, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4940, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4941, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4942, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4943, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4944, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4945, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4946, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "newspaper", + "token_id": 4947, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4948, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "wall", + "token_id": 4949, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "street", + "token_id": 4950, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "journal", + "token_id": 4951, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4952, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4953, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4954, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4955, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4956, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "=", + "token_id": 4957, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4958, + "o_rev_id": 1173115659, + "in": [], + "out": [] + }, + { + "str": "{{", + "token_id": 4959, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "short", + "token_id": 4960, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "description", + "token_id": 4961, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "|", + "token_id": 4962, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "2010", + "token_id": 4963, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "book", + "token_id": 4964, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "by", + "token_id": 4965, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "vilayanur", + "token_id": 4966, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "ramachandran", + "token_id": 4967, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "}}", + "token_id": 4968, + "o_rev_id": 1221992479, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4969, + "o_rev_id": 1221992549, + "in": [], + "out": [] + }, + { + "str": "no", + "token_id": 4970, + "o_rev_id": 1221992549, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4971, + "o_rev_id": 1221992549, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4972, + "o_rev_id": 1221992549, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4973, + "o_rev_id": 1221992549, + "in": [], + "out": [] + }, + { + "str": "'", + "token_id": 4974, + "o_rev_id": 1221992549, + "in": [], + "out": [] + }, + { + "str": "\"", + "token_id": 4975, + "o_rev_id": 1221992549, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4976, + "o_rev_id": 1338832494, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4977, + "o_rev_id": 1338832494, + "in": [], + "out": [] + }, + { + "str": "[[", + "token_id": 4978, + "o_rev_id": 1338832494, + "in": [], + "out": [] + }, + { + "str": "]]", + "token_id": 4979, + "o_rev_id": 1338832494, + "in": [], + "out": [] + } +] \ No newline at end of file diff --git a/tests/fixtures/the_tell-tale_brain_revisions.json b/tests/fixtures/the_tell-tale_brain_revisions.json new file mode 100644 index 0000000..527fc1c --- /dev/null +++ b/tests/fixtures/the_tell-tale_brain_revisions.json @@ -0,0 +1,1122 @@ +[ + { + "revid": 415694066, + "parentid": 0, + "user": "Loodog", + "userid": 783435, + "timestamp": "2011-02-24T14:39:04Z", + "sha1": "db3918762064f373edf0fc4098ae64e80a5f2f78", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "[[WP:AES|←]]Created page with ''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that expl...'", + "*": "'''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way its processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder.\n\n\n[[Category:Non-fiction book stubs]]\n[[Category:Neurology]]" + }, + { + "revid": 415694128, + "parentid": 415694066, + "user": "Loodog", + "userid": 783435, + "timestamp": "2011-02-24T14:39:38Z", + "sha1": "4c8824dc14eb38c33dfb6f645932a79065e56d47", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "stub", + "*": "'''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way its processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder.\n\n{{Nonfiction-book-stub}}\n\n[[Category:Non-fiction book stubs]]\n[[Category:Neurology]]" + }, + { + "revid": 415732915, + "parentid": 415694128, + "user": "Reaper Eternal", + "userid": 10639536, + "timestamp": "2011-02-24T19:05:36Z", + "sha1": "8bb4bb7ad8493d9b687768df7ea9296aa55a83ae", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added {{[[Template:unreferenced|unreferenced]]}} tag to article using [[WP:TW|TW]]", + "*": "{{unreferenced|date=February 2011}}\n'''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way its processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder.\n\n{{Nonfiction-book-stub}}\n\n[[Category:Non-fiction book stubs]]\n[[Category:Neurology]]" + }, + { + "revid": 426462311, + "parentid": 415732915, + "minor": "", + "user": "Pegship", + "userid": 355698, + "timestamp": "2011-04-28T22:27:12Z", + "sha1": "1c5591b073f0a0245a4a693179ad977b6aa6398c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "sort", + "*": "{{unreferenced|date=February 2011}}\n'''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way its processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder.\n\n{{science-book-stub}}\n\n[[Category:Neuroscience books]]\n[[Category:Neurology]]\n[[Category:2010 books]]\n{{DEFAULTSORT:Tell-Tale Brain, The}}" + }, + { + "revid": 431014591, + "parentid": 426462311, + "minor": "", + "user": "Vanished 45kd09la13", + "userid": 6252672, + "timestamp": "2011-05-26T14:03:09Z", + "sha1": "4c5d17691360c68626ee0221ae8680de487e4351", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{unreferenced|date=February 2011}}\n'''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder.\n\n{{science-book-stub}}\n\n[[Category:Neuroscience books]]\n[[Category:Neurology]]\n[[Category:2010 books]]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}" + }, + { + "revid": 432260105, + "parentid": 431014591, + "user": "Gamaliel", + "userid": 44846, + "timestamp": "2011-06-02T23:19:31Z", + "sha1": "890dda475932639a61732bbce1a3a82181f1a84b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "{{DEFAULTSORT:Tell-Tale Brain, The}}", + "*": "{{unreferenced|date=February 2011}}\n'''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder.\n\n{{science-book-stub}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:Neurology]]\n[[Category:2010 books]]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}" + }, + { + "revid": 446017258, + "parentid": 432260105, + "minor": "", + "user": "Rjwilmsi", + "userid": 203434, + "timestamp": "2011-08-21T17:45:28Z", + "sha1": "6e50f5065bcbfae689a677abefef66735bcf1fec", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Fix multiple DEFAULTSORTS using [[Project:AWB|AWB]] (7815)", + "*": "{{unreferenced|date=February 2011}}\n'''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder.\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:Neurology]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 448414637, + "parentid": 446017258, + "user": "GreenC", + "userid": 8931761, + "timestamp": "2011-09-04T14:53:05Z", + "sha1": "986e3f55125847fc7974dfd63ba46e0b03c14247", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder.\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 450626031, + "parentid": 448414637, + "user": "Pgr94", + "userid": 1162083, + "timestamp": "2011-09-15T11:32:10Z", + "sha1": "af577642257f98f329c3cfa5e69f69e9254a669c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "the 7 concepts", + "*": "'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 450673847, + "parentid": 450626031, + "user": "Loodog", + "userid": 783435, + "timestamp": "2011-09-15T17:35:06Z", + "sha1": "8bbbdd3d89c72d4d0ce9a4bdbd63153a8ca08421", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "infobox book with fair use cover pic", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 455120457, + "parentid": 450673847, + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-10-11T23:18:14Z", + "sha1": "a9d16e9ea8b4379b1dec38d4b545d42eeb6005e1", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added excerpt from review by Nicholas Shakespeare.", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\nThe Tell-Tale Brain did receive some critical reviews.Nicholas Shakespeare, the eminent British writer felt that the author did not really engage his subject:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html] \n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 455233959, + "parentid": 455120457, + "minor": "", + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-10-12T17:08:49Z", + "sha1": "53862367f07348c383a60501afcfc70ae34686fe", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\nThe Tell-Tale Brain did receive some critical reviews.[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 460650213, + "parentid": 455233959, + "user": "Esowteric", + "userid": 1472380, + "timestamp": "2011-11-14T18:59:11Z", + "sha1": "ba5d2484913bc3ae4f97639cd83cb59a0320fe2c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Wikilink Iain McGilchrist and The Master and His Emissary.", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachrandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\nThe Tell-Tale Brain did receive some critical reviews.[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of [[Iain McGilchrist]]'s ''[[The Master and His Emissary]]'', last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 460730548, + "parentid": 460650213, + "user": "72.130.187.31", + "anon": "", + "userid": 0, + "timestamp": "2011-11-15T05:12:55Z", + "sha1": "68316afd69cbc00cdc92ea958890de64045ded6d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "The summary was overall ok, but gives a skewed picture of the reviews to date by quoting only a single one, whereas the overwhelming majority have been strongly positive.", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nThe book was on the New York Times best-seller list and received very positive reviews for the most part. Oliver Sacks says (on the cover) \"No one is better than VS Ramachandran at combining minute, careful observations with ingenious experiments and bold adventurous theorizing, ... a profoundly intriguing and compelling guide to the intricacies of the human brain.\" Allan Snyder, Director of the Center for the Mind, Australian National University adds \"A masterpiece... Ramachandran is the foremost pioneer — the Galileo — of neurocognition.\" And Nickolas Humphrey, Professor of University College, London \"Ramachandran has written an astonishing book. His humanity, humor and scientific genius inform every passage.\" \n\nThe book also received much acclaim in book reviews published in newspapers and journals: \"Much of “The Tell-Tale Brain,”... is a general tour of neuroscience. There are lively treatments of three areas in which Ramachandran has himself done pioneering work: visual perception, pain in amputated “phantom” limbs, and synesthesia... Ramachandran is an exceptionally inventive researcher who tosses off suggestions at a dizzying pace\" Antony Gottlieb, International Herald Tribune (29-1-11).\n\n\"I cannot imagine a better account of the sweep of contemporary neuroscience... excellent... will give pleasure to anyone interested in original thinking about the brain.\" Clive Cookson, Financial Times (15.1.11)\nhttp://www.ft.com/cms/s/2/2275273a-1f56-11e0-8c1c-00144feab49a.html#axzz1BI6rfptv\n\n'\"What a piece of work is man!\" How many monkeys would it have taken to come up with that tag from Hamlet? Are we really no more than \"chimps with a software upgrade\"? Yes and – emphatically – no, comes the reply from neurologist VS Ramachandran. Our brains are those of apes: Ramachandran is in no doubt of that, yet at the same time we're uniquely special too. His life's work has been about getting to grips with the mental mechanisms that make the miraculous mundane. He goes to real-life clinical cases for evidence of exactly how the brain behaves in action or examines the experimental record for clues to the wonderful intricacy and astonishing scope of the human mind.' ***** Scotsman (15.1.11)\nhttp://www.scotsman.com/features/Book-review-The-TellTale-Brain.6691176.jp\n\n‘When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.’ James McConnachie, Sunday Times (9.1.11)\n\n‘Compared with physics and chemistry, says Ramachandran, neuroscience is a young upstart. But it’s growing up fast. This book, his “modest contribution to the grand attempt to crack the code of the human brain”, is written with all his synapses lit up like supernovas. His mission to educate and entertain is perfectly achieved... Like Sherlock Holmes, he imagines what might be true and tests it for probability. Neuroscience and stand-up comedy collide with eureka results.’ Iain Finlayson, Times (1.1.11)\n\nThe book is mentioned in the Eureka supplement of the Times (January 2011) – ‘A Holmesian look at what we learn about human nature when the brain goes wrong, written by one of the leading neuroscientists in the world.'\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\nThe Tell-Tale Brain did receive some critical reviews.[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 460801847, + "parentid": 460730548, + "user": "Loodog", + "userid": 783435, + "timestamp": "2011-11-15T17:03:29Z", + "sha1": "b5162152583cd8e767ca5baaf7512a4edad0c8ef", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "it's great to have a balance, but now it looks like a promotional for the book. also, barely any sources for these quotes.", + "*": "{{clean up}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad}}\n''Tell-Tale Brain'' was on the New York Times best-seller list and received largely positive reviews. Oliver Sacks writes, \"No one is better than V. S. Ramachandran at combining minute, careful observations with ingenious experiments and bold adventurous theorizing, ... a profoundly intriguing and compelling guide to the intricacies of the human brain.\"{{fact}} Allan Snyder, Director of the Center for the Mind, Australian National University adds, \"A masterpiece... Ramachandran is the foremost pioneer — the [[Galileo]] — of neurocognition.\"{{fact}} Nickolas Humphrey, Professor of University College, London \"Ramachandran has written an astonishing book. His humanity, humor and scientific genius inform every passage.\"{{fact}}\n\nThe book also received much acclaim in book reviews published in newspapers and journals: \"Much of “The Tell-Tale Brain,”... is a general tour of neuroscience. There are lively treatments of three areas in which Ramachandran has himself done pioneering work: visual perception, pain in amputated “phantom” limbs, and synesthesia... Ramachandran is an exceptionally inventive researcher who tosses off suggestions at a dizzying pace\" Antony Gottlieb, International Herald Tribune (29-1-11).{{fact}}\n\n\"I cannot imagine a better account of the sweep of contemporary neuroscience... excellent... will give pleasure to anyone interested in original thinking about the brain.\" Clive Cookson, Financial Times (15.1.11)\nhttp://www.ft.com/cms/s/2/2275273a-1f56-11e0-8c1c-00144feab49a.html#axzz1BI6rfptv\n\n'\"What a piece of work is man!\" How many monkeys would it have taken to come up with that tag from Hamlet? Are we really no more than \"chimps with a software upgrade\"? Yes and – emphatically – no, comes the reply from neurologist VS Ramachandran. Our brains are those of apes: Ramachandran is in no doubt of that, yet at the same time we're uniquely special too. His life's work has been about getting to grips with the mental mechanisms that make the miraculous mundane. He goes to real-life clinical cases for evidence of exactly how the brain behaves in action or examines the experimental record for clues to the wonderful intricacy and astonishing scope of the human mind.' ***** Scotsman (15.1.11)\nhttp://www.scotsman.com/features/Book-review-The-TellTale-Brain.6691176.jp\n\n\"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.’ James McConnachie, Sunday Times (9.1.11){{fact}}\n\n‘Compared with physics and chemistry, says Ramachandran, neuroscience is a young upstart. But it’s growing up fast. This book, his “modest contribution to the grand attempt to crack the code of the human brain”, is written with all his synapses lit up like supernovas. His mission to educate and entertain is perfectly achieved... Like Sherlock Holmes, he imagines what might be true and tests it for probability. Neuroscience and stand-up comedy collide with eureka results.’ Iain Finlayson, Times (1.1.11){{fact}}\n\nThe book is mentioned in the Eureka supplement of the Times (January 2011) – ‘A Holmesian look at what we learn about human nature when the brain goes wrong, written by one of the leading neuroscientists in the world.'{{fact}}\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\nThe Tell-Tale Brain did receive some critical reviews.[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 460804882, + "parentid": 460801847, + "minor": "", + "user": "AnomieBOT", + "userid": 7611264, + "timestamp": "2011-11-15T17:23:51Z", + "sha1": "7dcd9c99785c59b2337fe6efcb11a9e818849728", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Dating maintenance tags: {{Fact}} {{Ad}} {{Clean up}}", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list and received largely positive reviews. Oliver Sacks writes, \"No one is better than V. S. Ramachandran at combining minute, careful observations with ingenious experiments and bold adventurous theorizing, ... a profoundly intriguing and compelling guide to the intricacies of the human brain.\"{{fact|date=November 2011}} Allan Snyder, Director of the Center for the Mind, Australian National University adds, \"A masterpiece... Ramachandran is the foremost pioneer — the [[Galileo]] — of neurocognition.\"{{fact|date=November 2011}} Nickolas Humphrey, Professor of University College, London \"Ramachandran has written an astonishing book. His humanity, humor and scientific genius inform every passage.\"{{fact|date=November 2011}}\n\nThe book also received much acclaim in book reviews published in newspapers and journals: \"Much of “The Tell-Tale Brain,”... is a general tour of neuroscience. There are lively treatments of three areas in which Ramachandran has himself done pioneering work: visual perception, pain in amputated “phantom” limbs, and synesthesia... Ramachandran is an exceptionally inventive researcher who tosses off suggestions at a dizzying pace\" Antony Gottlieb, International Herald Tribune (29-1-11).{{fact|date=November 2011}}\n\n\"I cannot imagine a better account of the sweep of contemporary neuroscience... excellent... will give pleasure to anyone interested in original thinking about the brain.\" Clive Cookson, Financial Times (15.1.11)\nhttp://www.ft.com/cms/s/2/2275273a-1f56-11e0-8c1c-00144feab49a.html#axzz1BI6rfptv\n\n'\"What a piece of work is man!\" How many monkeys would it have taken to come up with that tag from Hamlet? Are we really no more than \"chimps with a software upgrade\"? Yes and – emphatically – no, comes the reply from neurologist VS Ramachandran. Our brains are those of apes: Ramachandran is in no doubt of that, yet at the same time we're uniquely special too. His life's work has been about getting to grips with the mental mechanisms that make the miraculous mundane. He goes to real-life clinical cases for evidence of exactly how the brain behaves in action or examines the experimental record for clues to the wonderful intricacy and astonishing scope of the human mind.' ***** Scotsman (15.1.11)\nhttp://www.scotsman.com/features/Book-review-The-TellTale-Brain.6691176.jp\n\n\"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.’ James McConnachie, Sunday Times (9.1.11){{fact|date=November 2011}}\n\n‘Compared with physics and chemistry, says Ramachandran, neuroscience is a young upstart. But it’s growing up fast. This book, his “modest contribution to the grand attempt to crack the code of the human brain”, is written with all his synapses lit up like supernovas. His mission to educate and entertain is perfectly achieved... Like Sherlock Holmes, he imagines what might be true and tests it for probability. Neuroscience and stand-up comedy collide with eureka results.’ Iain Finlayson, Times (1.1.11){{fact|date=November 2011}}\n\nThe book is mentioned in the Eureka supplement of the Times (January 2011) – ‘A Holmesian look at what we learn about human nature when the brain goes wrong, written by one of the leading neuroscientists in the world.'{{fact|date=November 2011}}\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\nThe Tell-Tale Brain did receive some critical reviews.[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 463583282, + "parentid": 460804882, + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-12-01T23:51:46Z", + "sha1": "b54ebd952433c94b7569269a8ad381589d6b06e8", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added quotation from New York Times Sunday Book Review", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list and received largely positive reviews. Oliver Sacks writes, \"No one is better than V. S. Ramachandran at combining minute, careful observations with ingenious experiments and bold adventurous theorizing, ... a profoundly intriguing and compelling guide to the intricacies of the human brain.\"{{fact|date=November 2011}} Allan Snyder, Director of the Center for the Mind, Australian National University adds, \"A masterpiece... Ramachandran is the foremost pioneer — the [[Galileo]] — of neurocognition.\"{{fact|date=November 2011}} Nickolas Humphrey, Professor of University College, London \"Ramachandran has written an astonishing book. His humanity, humor and scientific genius inform every passage.\"{{fact|date=November 2011}}\n\nThe book also received much acclaim in book reviews published in newspapers and journals: \"Much of “The Tell-Tale Brain,”... is a general tour of neuroscience. There are lively treatments of three areas in which Ramachandran has himself done pioneering work: visual perception, pain in amputated “phantom” limbs, and synesthesia... Ramachandran is an exceptionally inventive researcher who tosses off suggestions at a dizzying pace\" Antony Gottlieb, International Herald Tribune (29-1-11).{{fact|date=November 2011}}\n\n\"I cannot imagine a better account of the sweep of contemporary neuroscience... excellent... will give pleasure to anyone interested in original thinking about the brain.\" Clive Cookson, Financial Times (15.1.11)\nhttp://www.ft.com/cms/s/2/2275273a-1f56-11e0-8c1c-00144feab49a.html#axzz1BI6rfptv\n\n'\"What a piece of work is man!\" How many monkeys would it have taken to come up with that tag from Hamlet? Are we really no more than \"chimps with a software upgrade\"? Yes and – emphatically – no, comes the reply from neurologist VS Ramachandran. Our brains are those of apes: Ramachandran is in no doubt of that, yet at the same time we're uniquely special too. His life's work has been about getting to grips with the mental mechanisms that make the miraculous mundane. He goes to real-life clinical cases for evidence of exactly how the brain behaves in action or examines the experimental record for clues to the wonderful intricacy and astonishing scope of the human mind.' ***** Scotsman (15.1.11)\nhttp://www.scotsman.com/features/Book-review-The-TellTale-Brain.6691176.jp\n\n\"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.’ James McConnachie, Sunday Times (9.1.11){{fact|date=November 2011}}\n\n‘Compared with physics and chemistry, says Ramachandran, neuroscience is a young upstart. But it’s growing up fast. This book, his “modest contribution to the grand attempt to crack the code of the human brain”, is written with all his synapses lit up like supernovas. His mission to educate and entertain is perfectly achieved... Like Sherlock Holmes, he imagines what might be true and tests it for probability. Neuroscience and stand-up comedy collide with eureka results.’ Iain Finlayson, Times (1.1.11){{fact|date=November 2011}}\n\nThe book is mentioned in the Eureka supplement of the Times (January 2011) – ‘A Holmesian look at what we learn about human nature when the brain goes wrong, written by one of the leading neuroscientists in the world.'{{fact|date=November 2011}}\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Critical Reviews ==\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 463585308, + "parentid": 463583282, + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-12-02T00:07:57Z", + "sha1": "56fdc662f969a6b679e2fa13a6a4e065de0cd69e", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Clarified reference to New York Times Best Sellars List. Let's stick to reviews that can be verified/referenced.", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. \n\n== Positive Reviews ==\n\nOliver Sacks writes, \"No one is better than V. S. Ramachandran at combining minute, careful observations with ingenious experiments and bold adventurous theorizing, ... a profoundly intriguing and compelling guide to the intricacies of the human brain.\"{{fact|date=November 2011}} Allan Snyder, Director of the Center for the Mind, Australian National University adds, \"A masterpiece... Ramachandran is the foremost pioneer — the [[Galileo]] — of neurocognition.\"{{fact|date=November 2011}} Nickolas Humphrey, Professor of University College, London \"Ramachandran has written an astonishing book. His humanity, humor and scientific genius inform every passage.\"{{fact|date=November 2011}}\n\nThe book also received much acclaim in book reviews published in newspapers and journals: \"Much of “The Tell-Tale Brain,”... is a general tour of neuroscience. There are lively treatments of three areas in which Ramachandran has himself done pioneering work: visual perception, pain in amputated “phantom” limbs, and synesthesia... Ramachandran is an exceptionally inventive researcher who tosses off suggestions at a dizzying pace\" Antony Gottlieb, International Herald Tribune (29-1-11).{{fact|date=November 2011}}\n\n\"I cannot imagine a better account of the sweep of contemporary neuroscience... excellent... will give pleasure to anyone interested in original thinking about the brain.\" Clive Cookson, Financial Times (15.1.11)\nhttp://www.ft.com/cms/s/2/2275273a-1f56-11e0-8c1c-00144feab49a.html#axzz1BI6rfptv\n\n'\"What a piece of work is man!\" How many monkeys would it have taken to come up with that tag from Hamlet? Are we really no more than \"chimps with a software upgrade\"? Yes and – emphatically – no, comes the reply from neurologist VS Ramachandran. Our brains are those of apes: Ramachandran is in no doubt of that, yet at the same time we're uniquely special too. His life's work has been about getting to grips with the mental mechanisms that make the miraculous mundane. He goes to real-life clinical cases for evidence of exactly how the brain behaves in action or examines the experimental record for clues to the wonderful intricacy and astonishing scope of the human mind.' ***** Scotsman (15.1.11)\nhttp://www.scotsman.com/features/Book-review-The-TellTale-Brain.6691176.jp\n\n\"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.’ James McConnachie, Sunday Times (9.1.11){{fact|date=November 2011}}\n\n‘Compared with physics and chemistry, says Ramachandran, neuroscience is a young upstart. But it’s growing up fast. This book, his “modest contribution to the grand attempt to crack the code of the human brain”, is written with all his synapses lit up like supernovas. His mission to educate and entertain is perfectly achieved... Like Sherlock Holmes, he imagines what might be true and tests it for probability. Neuroscience and stand-up comedy collide with eureka results.’ Iain Finlayson, Times (1.1.11){{fact|date=November 2011}}\n\nThe book is mentioned in the Eureka supplement of the Times (January 2011) – ‘A Holmesian look at what we learn about human nature when the brain goes wrong, written by one of the leading neuroscientists in the world.'{{fact|date=November 2011}}\n\nThe book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Critical Reviews ==\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 463754831, + "parentid": 463585308, + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-12-03T00:51:14Z", + "sha1": "40ebd1fcc67235ce2df2ca21f9a026c4284aa222", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "I have attempted to balance the pro and con reviews and provide proper citations.", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\n== Critical Reviews ==\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 464250707, + "parentid": 463754831, + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-12-05T18:31:30Z", + "sha1": "9c1bf9bbc097453e0fb7938a99cc65e790ca6972", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Corrected references for Snyder and Doidge", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\n== Critical Reviews ==\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 466775504, + "parentid": 464250707, + "user": "128.54.46.248", + "anon": "", + "userid": 0, + "timestamp": "2011-12-19T23:33:45Z", + "sha1": "6ddb38562027959238704f11bd4ac434ab471458", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added James McConnachie's review from the Sunday Times", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, Janauary 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 467386609, + "parentid": 466775504, + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-12-23T19:52:21Z", + "sha1": "48813599d2a8983470f0ad6049cf57a0f324c077", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added review by Simon Baron-Cohen from American Scientist.", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, Janauary 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the important of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 467386753, + "parentid": 467386609, + "minor": "", + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-12-23T19:53:30Z", + "sha1": "dd71d7e47f344d5f26950d7c8921c9a38dd96107", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, Janauary 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 467386937, + "parentid": 467386753, + "minor": "", + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2011-12-23T19:54:53Z", + "sha1": "8fc7f5a669cce764c257fb46a8f0cf6cdc1169b0", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{clean up|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0393077827\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{ad|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, Janauary 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 490580070, + "parentid": 467386937, + "minor": "", + "user": "Helpful Pixie Bot", + "userid": 14216826, + "timestamp": "2012-05-04T04:49:20Z", + "sha1": "9a8a12317c4c6c94300c8e297ec0b873b6d4d9a6", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "ISBNs (Build KC)", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Broca's aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, Janauary 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 492199676, + "parentid": 490580070, + "user": "Dolfrog", + "userid": 175762, + "timestamp": "2012-05-12T13:33:31Z", + "sha1": "5f324e3656c1f846b4d18290f827dc09c4444398", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Expressive aphasia", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Expressive aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, Janauary 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, Janauary 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 497360713, + "parentid": 492199676, + "minor": "", + "user": "DynamoDegsy", + "userid": 7972131, + "timestamp": "2012-06-13T07:35:41Z", + "sha1": "a5fcab3f4d3ef45d49d561eed057023c85cf4838", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Typo", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Expressive aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html]] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.” Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"\nAnthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 503176753, + "parentid": 497360713, + "minor": "", + "user": "FrescoBot", + "userid": 9021902, + "timestamp": "2012-07-19T20:49:21Z", + "sha1": "19745ab534458ff9b1bef97915acc4eca98c473b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Bot: [[User:FrescoBot/Links|link syntax/spacing]] and minor changes", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, various aspects of human [[perception]] and how they relate to appreciation of [[art]], the development of [[language]], and how perception and the way it's processed make humans more like other animals, in particular [[hominids]], or unique among species. For this, Ramachandran investigates cases of patients where certain systems in the brain of an otherwise normal individual have been disrupted including among others: [[autism]], [[synesthesia]], [[phantom limb]]s, [[Cotard delusion]], and [[Expressive aphasia]].\n\nIn the final chapter, Ramachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03 \n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 507603974, + "parentid": 503176753, + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2012-08-15T23:05:31Z", + "sha1": "bbc890a16edc8487181b15658e3041ce7bad486e", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Shortened article and included controversy over Peter Brugger's review of the Tell Tale Brain.", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 \n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\" Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site ( Talkinbrains.org ) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[talkingbrains.org]] \n \n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 507605066, + "parentid": 507603974, + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2012-08-15T23:16:16Z", + "sha1": "46bbf86629055233c2f4eed2ef95c51881632853", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Added external link to Talkingbrains web site.", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 \n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\" Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site ( Talkinbrains.org ) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[talkingbrains.org]] \n \n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n==External links==\n\n* [http://talkingbrains.org.html. Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 507605330, + "parentid": 507605066, + "minor": "", + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2012-08-15T23:18:52Z", + "sha1": "94a4b8f61178a57342b7d03354484324ed8f59ed", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 \n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\" Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site ( Talkinbrains.org ) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[talkingbrains.org]] \n \n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n==External links==\n\n* [http://talkingbrains.org. Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 507704191, + "parentid": 507605330, + "minor": "", + "user": "Neurorel", + "userid": 13415791, + "timestamp": "2012-08-16T16:12:46Z", + "sha1": "0290845ea54e4cccecd82897460d7c1514adf999", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 \n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\" Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[talkingbrains.org]] \n \n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n==External links==\n\n* [http://talkingbrains.org. Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 514920195, + "parentid": 507704191, + "minor": "", + "user": "Chris the speller", + "userid": 525927, + "timestamp": "2012-09-28T01:25:45Z", + "sha1": "11f13e9fbf3351e58ea87716ca66818a8a467f9a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical Reviews */typos, replaced: well known British → well-known British using [[Project:AWB|AWB]] (8414)", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 \n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\" Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[talkingbrains.org]] \n \n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all] \n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories: \n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n==External links==\n\n* [http://talkingbrains.org. Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 519108836, + "parentid": 514920195, + "minor": "", + "user": "FrescoBot", + "userid": 9021902, + "timestamp": "2012-10-22T00:12:43Z", + "sha1": "8d1b532278450d021f6a50da295066d7f0de00ac", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Bot: [[User:FrescoBot/Links|link syntax/spacing]] and minor changes", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)New York Times Best Sellars, February 20, 2011[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[talkingbrains.org]]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”Oliver Sachs, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”Snyder, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”Doidge, Review on Amazon Web Site [http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011[http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July-August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28,2011[http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011 [http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf [http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html]\n\n==References==\n{{Reflist}}\n\n==External links==\n\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 520569830, + "parentid": 519108836, + "minor": "", + "user": "Magioladitis", + "userid": 1862829, + "timestamp": "2012-10-30T10:25:05Z", + "sha1": "c5db38da8ca46d57c1689a4096191addab2bebef", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "clean up using [[Project:AWB|AWB]] (8514)", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[[talkingbrains.org]]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 525447955, + "parentid": 520569830, + "minor": "", + "user": "Amtiss", + "userid": 746244, + "timestamp": "2012-11-28T23:46:04Z", + "sha1": "6b7311e19605b319cffbeca9134a54881400e5cc", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Controversy */ inserted the real talkings brains source", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 525448236, + "parentid": 525447955, + "minor": "", + "user": "Amtiss", + "userid": 746244, + "timestamp": "2012-11-28T23:47:22Z", + "sha1": "94fae9c905736113b7bd93ccfde2b499dd93ffca", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Controversy */ source text", + "*": "{{Cleanup|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]\n\n\n{{science-book-stub}}" + }, + { + "revid": 526956281, + "parentid": 525448236, + "user": "BattyBot", + "userid": 15996738, + "timestamp": "2012-12-08T01:15:48Z", + "sha1": "ca833965c6bd747f93b548b2aac6fc2b14c2e63f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "changed {{cleanup}} to {{cleanup-book}} & [[WP:AWB/GF|general fixes]], removed stub tag using [[Project:AWB|AWB]] (8759)", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n\n{{Advert|date=November 2011}}\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 529223756, + "parentid": 526956281, + "user": "Eminence2012", + "userid": 18091861, + "timestamp": "2012-12-22T05:05:08Z", + "sha1": "81e26af7d82be1d6d1ee057debf3241790f83c26", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "looks fine to me/* Reception */", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| image_caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 544935892, + "parentid": 529223756, + "minor": "", + "user": "Yobot", + "userid": 7328338, + "timestamp": "2013-03-17T12:28:33Z", + "sha1": "a5038cc3e4580eb5ccc42707590fd2de37fe421b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "clean up / infobox parameter standardisation using [[Project:AWB|AWB]] (8976)", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"...that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism...As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 585436060, + "parentid": 544935892, + "minor": "", + "user": "LahmacunKebab", + "userid": 18972796, + "timestamp": "2013-12-10T14:26:53Z", + "sha1": "670f3097d8d0595d9bacee484918927bef9a3764", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical Reviews */", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neuro logist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 671227181, + "parentid": 585436060, + "user": "87.212.163.45", + "anon": "", + "userid": 0, + "timestamp": "2015-07-13T09:06:46Z", + "sha1": "88d28bd359805145c71f99e0310d979630b365be", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical Reviews */", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = [[File:The Tell Tale Brain cover.jpg]] \n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 694843789, + "parentid": 671227181, + "user": "TAnthony", + "userid": 1808194, + "timestamp": "2015-12-11T23:37:51Z", + "sha1": "b267e11447bcf75ee60c7abf727c14b7e0bb8345", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Update Infobox book template image parameter to bare filename per template documentation, and other cleanup using [[Project:AWB|AWB]]", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive Reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical Reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 725403064, + "parentid": 694843789, + "user": "Mkrgolf", + "userid": 20791642, + "timestamp": "2016-06-15T12:56:38Z", + "sha1": "7356fbc89de80dbe8725099727577a8652ade00b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[http://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [http://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 767431312, + "parentid": 725403064, + "minor": "", + "user": "Bender the Bot", + "userid": 28903366, + "timestamp": "2017-02-25T22:07:21Z", + "sha1": "7fcf5b1f53b66e450c92ff9d6dee2bc0c9f3ac11", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "HTTP→HTTPS for [[The New York Times]]. using [[Project:AWB|AWB]]", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[http://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 770399485, + "parentid": 767431312, + "minor": "", + "user": "Bender the Bot", + "userid": 28903366, + "timestamp": "2017-03-15T04:54:46Z", + "sha1": "e48a92f5cf184c01e997d2de78649aacf7e75ff8", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical reviews */HTTP→HTTPS, per [[Wikipedia:Bots/Requests for approval/Bender the Bot 8|BRFA 8]] using [[Project:AWB|AWB]]", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nProfessor Greg Hickok (Cognitive Sciences, UC Irvine) has reported this exchange on his web site (Talkingbrains.org) and he is conducting an informal poll to determine the reaction of scientists who have read the book.[http://www.talkingbrains.org/2012/08/the-tell-tale-brain-fact-or-fiction.html The Tell-Tale Brain: Fact or Fiction? - August 14, 2012]\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 771344182, + "parentid": 770399485, + "user": "Joemark23", + "userid": 30647275, + "timestamp": "2017-03-21T00:28:50Z", + "sha1": "9b9d54bcd134e99ac1992d0871b5476d696c04e7", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Controversy */", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received both positive and critical reviews. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 771345815, + "parentid": 771344182, + "user": "Joemark23", + "userid": 30647275, + "timestamp": "2017-03-21T00:40:38Z", + "sha1": "e683e442602fe5c16049a2570bccf371a6385b2c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Reception */ Previous statements regarding the reception of Dr. Ramachandran's book, inacurately reflected the fact that a vast majority of reviews were positive.", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions[http://cbc.ucsd.edu/press.html]. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 771346828, + "parentid": 771345815, + "user": "Joemark23", + "userid": 30647275, + "timestamp": "2017-03-21T00:48:04Z", + "sha1": "b8dc9048bd2ac68412d1c1c54f8cc627570ea99b", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical reviews */", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions[http://cbc.ucsd.edu/press.html]. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]. Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\". \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 771347289, + "parentid": 771346828, + "user": "Joemark23", + "userid": 30647275, + "timestamp": "2017-03-21T00:51:16Z", + "sha1": "3f62dcc06ac9411829672e7f5db58711ff51763f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical reviews */ On page 312, footnote 2 of the Tell-Tale Brain, Ramachandran points out how controversial the Broken Mirror Theory is.", + "*": "{{cleanup-book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions[http://cbc.ucsd.edu/press.html]. The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\"Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries]. Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\". \n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\"Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]. However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons. \n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 771957452, + "parentid": 771347289, + "minor": "", + "user": "Magioladitis", + "userid": 1862829, + "timestamp": "2017-03-24T13:47:36Z", + "sha1": "31ac6422214059b9e89ad0a15358529e3d25043f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Fix prefpunct and/or other fixes using [[Project:AWB|AWB]]", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 772572484, + "parentid": 771957452, + "user": "Stephlapier255", + "userid": 30707348, + "timestamp": "2017-03-28T02:23:15Z", + "sha1": "589d6c54af2b522f21047fca3f932b3ee09ca60c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Positive reviews */ Including important positive review", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 785294020, + "parentid": 772572484, + "user": "216.10.188.57", + "anon": "", + "userid": 0, + "timestamp": "2017-06-12T18:30:13Z", + "sha1": "95307bbef8825343d08430021463b2f008cb4c3d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Positive reviews */ Removed redundant material.", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 788355724, + "parentid": 785294020, + "user": "69.196.46.186", + "anon": "", + "userid": 0, + "timestamp": "2017-06-30T23:54:32Z", + "sha1": "589d6c54af2b522f21047fca3f932b3ee09ca60c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Undid revision 785294020 by [[Special:Contributions/216.10.188.57|216.10.188.57]] ([[User talk:216.10.188.57|talk]])", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://online.wsj.com/article/SB10001424052748704034804576025681468057572.html Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 794591153, + "parentid": 788355724, + "minor": "", + "user": "Bender the Bot", + "userid": 28903366, + "timestamp": "2017-08-08T22:00:02Z", + "sha1": "d05f9d06428889b30cf211bc034ec40c7c1cc1d6", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical reviews */Repairing broken [[Wall Street Journal]] links using [[Project:AWB|AWB]]", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n==Controversy==\n\nIn a review for Cognitive Neuropsychiatry (July 11, 2012) Professor Peter Brugger (Neurology, University Hospital, Zurich) criticized the Tell-Tale Brain as a pop-neuroscience book that provides vague answers to big questions.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012 In the same issue of Cognitive Neuropsychiatry V.S. Ramachandran answered Brugger's criticism in an Author Response. Ramachandran argues that Brugger's approach to science has been focused on only a few topics and that he (Ramachandran) has taken a much broader approach. Ramachandran states that \"I have --for better or worse-- roamed the whole landscape of visual perception, stereopsis, phantom limbs, denial of paralysis, Capgras syndrome, synaesthesia, and many others.\"Ramachandran,V.S. Author Response,Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://www.wsj.com/articles/SB10001424052748704034804576025681468057572 Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 800665303, + "parentid": 794591153, + "user": "103.208.220.131", + "anon": "", + "userid": 0, + "timestamp": "2017-09-14T23:12:36Z", + "sha1": "fcbd86051dd15e2c95e0d89ff05d9e4948d88397", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Why is one slightly negative review given such prominence here? This seems like a non neutral POV by this editor. I adjust to reflect clear majority reviews very positive.", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[http://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://www.wsj.com/articles/SB10001424052748704034804576025681468057572 Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 800928735, + "parentid": 800665303, + "minor": "", + "user": "KolbertBot", + "userid": 31691822, + "timestamp": "2017-09-16T16:08:14Z", + "sha1": "ff6c120e5049ce9a68179103031b8e5ca240bf20", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Bot: [[User:KolbertBot|HTTP→HTTPS]]", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17,Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb,A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://www.wsj.com/articles/SB10001424052748704034804576025681468057572 Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 801090300, + "parentid": 800928735, + "minor": "", + "user": "BD2412", + "userid": 196446, + "timestamp": "2017-09-17T16:16:50Z", + "sha1": "3733961c38f6741994e5b862e551e0b3359644bc", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "clean up spacing around punctuation, replaced: ,A → , A, ,I → , I using [[Project:AWB|AWB]]", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[http://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://www.wsj.com/articles/SB10001424052748704034804576025681468057572 Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 833891199, + "parentid": 801090300, + "minor": "", + "user": "KolbertBot", + "userid": 31691822, + "timestamp": "2018-04-02T22:13:22Z", + "sha1": "f570185dee2c1aad8c6957bb1db1747a69681630", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Bot: [[User:KolbertBot|HTTP→HTTPS]] (v485)", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://www.wsj.com/articles/SB10001424052748704034804576025681468057572 Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 books]]" + }, + { + "revid": 840168304, + "parentid": 833891199, + "minor": "", + "user": "Bearcat", + "userid": 24902, + "timestamp": "2018-05-08T04:46:58Z", + "sha1": "03f9b3a6472f97870eab083733dc6509cc58e280", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* External links */recat using [[Project:AWB|AWB]]", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list)[https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html New York Times Best Sellars, February 20, 2011] and received mostly highly positive with some exceptions.[http://cbc.ucsd.edu/press.html] The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Oliver Sachs, Review on Amazon Web Site]\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Snyder, Review on Amazon Web Site]\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”[https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/product-description/0393077829/ref=dp_proddesc_0?ie=UTF8&n=283155&s=books Doidge, Review on Amazon Web Site]\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"http://books.wwnorton.com/books/detail.aspx?ID=17227\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"[https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html Nicholas Shakespeare, Book Reviews, The Telegraph, Jan 7, 2011]\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"[https://www.wsj.com/articles/SB10001424052748704034804576025681468057572 Raymond Tallis, The Mind in the Mirror, Wall Street Journal Bookshelf]\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 862632766, + "parentid": 840168304, + "user": "RJFJR", + "userid": 141808, + "timestamp": "2018-10-05T17:04:11Z", + "sha1": "f9055505cca283b454e8b85d446007023422c97a", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Filled in 8 bare reference(s) with [[:en:WP:REFILL|reFill]] ()", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite web|url=http://books.wwnorton.com/books/detail.aspx?ID=17227|title=Page Not Found - W. W. Norton & Company|website=books.wwnorton.com}}\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in autism. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"{{cite web|url=http://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 862632876, + "parentid": 862632766, + "minor": "", + "user": "RJFJR", + "userid": 141808, + "timestamp": "2018-10-05T17:05:07Z", + "sha1": "7856f9157891b84d23259c4e4c12263406e03b5f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical reviews */ link", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show cortical remapping after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite web|url=http://books.wwnorton.com/books/detail.aspx?ID=17227|title=Page Not Found - W. W. Norton & Company|website=books.wwnorton.com}}\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in [[autism]]. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"{{cite web|url=http://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 868189470, + "parentid": 862632876, + "minor": "", + "user": "RJFJR", + "userid": 141808, + "timestamp": "2018-11-10T16:03:47Z", + "sha1": "2eaf6d35c59f4ecd4337de27c29ca6fb40e797c8", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* top */ link", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite web|url=http://books.wwnorton.com/books/detail.aspx?ID=17227|title=Page Not Found - W. W. Norton & Company|website=books.wwnorton.com}}\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in [[autism]]. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"{{cite web|url=http://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 880448918, + "parentid": 868189470, + "minor": "", + "user": "KolbertBot", + "userid": 31691822, + "timestamp": "2019-01-27T14:06:06Z", + "sha1": "b30e620aac67249f4c13b1f9cf7f9d9d650515b2", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Bot: [[User:KolbertBot|HTTP→HTTPS]] (v485)", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite web|url=http://books.wwnorton.com/books/detail.aspx?ID=17227|title=Page Not Found - W. W. Norton & Company|website=books.wwnorton.com}}\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but questioned the validity of Ramachandran's views on the importance of mirror neurons. In particular, Baron-Cohen took issue with Ramachandran's well known prediction \"... that mirror neurons will do for psychology what DNA did for biology: they will provide a unifying framework and help explain a host of mental abilities that have hitherto remained mysterious and inaccessible to experiments.” Baron-Cohen stated \"Whether [Ramachandran] has overstated the importance of mirror neurons and will decide to retract this statement remains to be seen.\" Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, pointed out that Ramachandran has failed to acknowledge the experimental evidence that contradicts his theory that dysfunctional mirror neurons play a significant role in [[autism]]. Baron-Cohen writes \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [http://www.americanscientist.org/bookshelf/pub/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, does not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story. Doubt has been cast on the idea that imitation and the understanding of actions depend on mirror neurons, and on the theory that autism involves a defect in these systems of cells. It has even been claimed that the techniques used to detect the activity of mirror neurons have been widely misinterpreted. Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 904391806, + "parentid": 880448918, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-01T21:16:31Z", + "sha1": "1507691e96a9d689fee8450cc282ba0440772297", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Critical reviews */ repair broken link, trim coatracking of limited relevance to article topic", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. Ramachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n== Positive reviews ==\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nIn the Sunday Times, James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite web|url=http://books.wwnorton.com/books/detail.aspx?ID=17227|title=Page Not Found - W. W. Norton & Company|website=books.wwnorton.com}}\n\n== Critical reviews ==\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on the importance of mirror neurons. Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, stated \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, did not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning that his ideas about the importance of mirror neurons are controversial:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is. In the past four years, a spate of studies has dented every part of the mirror-neuron story... Ramachandran may have good reason to discount these skeptical studies, but he surely should have mentioned them.\".Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] However, in his footnotes, Ramachandran does in fact point out the controversy surrounding mirror neurons.\n\n[[Nicholas Shakespeare]], the well-known British writer, felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester complained that Ramachandran has failed to provide the research needed to back up his theories:\n\n\"The trouble begins when the neurologist turns philosopher and tries to use these insights to get closer to \"what makes us human.\" He suggests that such cross-wiring underpins both humans' ability to enjoy metaphors and artists' capacity to create novel connections—an assertion that has scarcely any research to back it up. (What little has been done depends on laughably simplistic models of how metaphors and creativity really work.) Likewise, his explanation of how we became speaking animals has scarcely a toe-hold on empirical data.\"{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908253636, + "parentid": 904391806, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-28T14:26:26Z", + "sha1": "2154d66518cab5ccea49d7dc17852c6808f33cee", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "See talk page: begin synopsis, remove false claim that NYT and WSJ reviews were \"negative\", trim reviewer quotes to reflect that article is about a book, not about its author", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nRamachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nIn the ''Sunday Times'', James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nAllan Snyder, FRS, Director of the Centre for the Mind writes: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite web|url=http://books.wwnorton.com/books/detail.aspx?ID=17227|title=Page Not Found - W. W. Norton & Company|website=books.wwnorton.com}}\n\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on the importance of mirror neurons. Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, stated \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, did not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.\"Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n[[Nicholas Shakespeare]] felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester, complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n\"''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.\"{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908258055, + "parentid": 908253636, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-28T15:07:20Z", + "sha1": "9b582b3efeb479c436e95fc7216c50eb4105b4e0", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Reception */ remove duplicate", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nRamachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n[[Oliver Sacks]] writes “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of The Brain That Changes Itself praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nIn the ''Sunday Times'', James McConnachie writes: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\nIn his review for the American Scientist, [[Simon Baron-Cohen]], Professor of Developmental Psychopathology at Cambridge University, said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on the importance of mirror neurons. Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, stated \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries] Dr. Baron-Cohen, however, did not address numerous other chapters and ideas discussed in the book. Ramachandran himself, has noted (even in the Tell-Tale Brain) that the evidence for the Broken Mirror Theory of autism, is, at present, \"Compelling but not conclusive\".\n\nIn the New York Times, [[Anthony Gottlieb]] criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.\"Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n[[Nicholas Shakespeare]] felt that Ramachandran did not fully engage the ideas presented in the book:\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist The Master and His Emissary, last year’s magisterial study of the brain’s two opposed hemispheres, which it nicely (though unintentionally) complements – even to the extent of using some of the same illustrations.\"{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}\n\nIn his review for the Wall Street Journal, [[Raymond Tallis]], emeritus professor of geriatric medicine at the University of Manchester, complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n\"''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.\"{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908259103, + "parentid": 908258055, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-28T15:17:14Z", + "sha1": "fa264924f64d0df87757267f8398df4cea86ef73", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Reception */ separate book blurbs from book reviews, start uniformly formatting quotes from book reviews", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nRamachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nIn the ''Sunday Times'', James McConnachie wrote: \"When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on the importance of mirror neurons. Baron-Cohen, who is Director of the Autism Research Center at Cambridge University, stated \"There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.\".Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]\n\n[[Anthony Gottlieb]] (''New York Times'') criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are, but generally praised the book:\n\n\"Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.\"Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all] \n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n\"Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary''...\"{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n\"''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.\"{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908259693, + "parentid": 908259103, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-28T15:22:20Z", + "sha1": "d16399ce6f58e7a02c0e640b558b1d5a9e6c2b6e", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Book reviews */ put long quotes into blockquotes", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nRamachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list){{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} and received mostly highly positive with some exceptions.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n[[Anthony Gottlieb]] (''New York Times'') criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are, but generally praised the book:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908260436, + "parentid": 908259693, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-28T15:28:24Z", + "sha1": "7353cf15beb098a5aa37dda0c2f6643657f87232", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Reception */ ce. organize reviews in rough order of the importance of review publisher", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nRamachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908262059, + "parentid": 908260436, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-28T15:42:08Z", + "sha1": "737044c8b9512ef664f8ad5aa7032055ccc643fc", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Book reviews */ Found another review, NYRB, add more to WSJ quote", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nRamachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the [Broken Mirror] theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908263835, + "parentid": 908262059, + "minor": "", + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-28T15:56:47Z", + "sha1": "c19a7845d080ab49258357385f9696799cec204c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Book reviews */ rm redlink", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nRamachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic.Brugger, Peter, Book Review, Cognitive Neuropsychiatry, Vol. 17, Issue 4, 2012\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908278188, + "parentid": 908263835, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-28T17:51:38Z", + "sha1": "1a0f129ccec5246d5795d84b39cc1de1385e4914", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Synopsis */ add better citation for Brugger, including link where people can read what he says", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nRamachandran explores various aspects of visual perception and cognition to argue that humans are unique among species. For example, he notes that although animals show [[cortical remapping]] after the loss of a limb, the plasticity seen in the human brain (after amputation) is much more dramatic. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908451141, + "parentid": 908278188, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-29T20:16:47Z", + "sha1": "1b260b3f3e1f821a330c80a5791df95c8295cbe8", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Synopsis */ add more to synopsis, which is based on lengthy description in Brugger", + "*": "{{cleanup book|date=November 2011}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on phantom limbs. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about mirror neurons, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of aesthetics,\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 908451228, + "parentid": 908451141, + "user": "HouseOfChange", + "userid": 20986356, + "timestamp": "2019-07-29T20:17:26Z", + "sha1": "20ad90eb11359c47be64738f7f067eec040be64f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Remove template, article has been cleaned up", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[neuroscience]]\n| genre = [[non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on phantom limbs. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about mirror neurons, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of aesthetics,\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 967550738, + "parentid": 908451228, + "minor": "", + "user": "Gazelle55", + "userid": 31384714, + "timestamp": "2020-07-13T22:34:31Z", + "sha1": "b169b5d74cef0c973bd9db3d5be8f4fb37dfb8a3", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Missing capitals", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on phantom limbs. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about mirror neurons, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of aesthetics,\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nNorman Doidge, M.D., author of ''The Brain That Changes Itself'' praised the book by saying:“Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 967552585, + "parentid": 967550738, + "user": "Gazelle55", + "userid": 31384714, + "timestamp": "2020-07-13T22:51:09Z", + "sha1": "3010afb09ec116fcbcdb332cd96e636f788fcf2e", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Pre-publication endorsements (book blurbs) */ Long quote should be a block quote; linked to Doidge and removed his bio details here", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on phantom limbs. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about mirror neurons, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of aesthetics,\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nAllan Snyder, Director of the Center for the Mind, said that the books is: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n[[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 967552844, + "parentid": 967552585, + "user": "Gazelle55", + "userid": 31384714, + "timestamp": "2020-07-13T22:53:47Z", + "sha1": "71904a437f10d624d986d9a61f8d3759bed2f7a4", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Pre-publication endorsements (book blurbs) */ Cleanup", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on phantom limbs. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about mirror neurons, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of aesthetics,\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\n[[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n[[Allan Snyder]], Director of the Center for the Mind, said of the book: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\n[[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 967553019, + "parentid": 967552844, + "user": "Gazelle55", + "userid": 31384714, + "timestamp": "2020-07-13T22:55:35Z", + "sha1": "159c04dc65937c2199fb1ff3c6b0924aee2b4de6", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Pre-publication endorsements (book blurbs) */ Noting the professions of those writing the endorsements", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on phantom limbs. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about mirror neurons, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of aesthetics,\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe scientist [[Allan Snyder]] said of the book: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie (''Sunday Times''):
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\n[[Anthony Gottlieb]] (''New York Times'') generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] (''New York Review of Books'') praised the book despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] (''Wall Street Journal'') praised the book but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] (''The Telegraph''):\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\n[[Simon Baron-Cohen]] (''American Scientist'') said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 967553399, + "parentid": 967553019, + "user": "Gazelle55", + "userid": 31384714, + "timestamp": "2020-07-13T22:58:58Z", + "sha1": "2f6c0239faf31de95c5fca5ed0aa09d16b8e5164", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Book reviews */ Normal phrasing", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on phantom limbs. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about mirror neurons, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of aesthetics,\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe scientist [[Allan Snyder]] said of the book: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\n[[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\n[[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 967553905, + "parentid": 967553399, + "user": "Gazelle55", + "userid": 31384714, + "timestamp": "2020-07-13T23:03:37Z", + "sha1": "1fe633dfbe1e922a28fb4d1294c66a760c6a17da", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Book reviews */ Some more cleanup", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, free-will, and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on phantom limbs. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about mirror neurons, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of aesthetics,\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe scientist [[Allan Snyder]] said of the book: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 967554085, + "parentid": 967553905, + "minor": "", + "user": "Gazelle55", + "userid": 31384714, + "timestamp": "2020-07-13T23:05:23Z", + "sha1": "017590d79b3604240684ea036c693c54c92de56c", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Synopsis */ Some links", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe scientist [[Allan Snyder]] said of the book: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 1019929778, + "parentid": 967554085, + "user": "GreenC bot", + "userid": 27823944, + "timestamp": "2021-04-26T06:11:44Z", + "sha1": "0df6c38469ba32ca96b19173d7673a2633ec38b3", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Rescued 1 archive link. [[User:GreenC/WaybackMedic_2.5|Wayback Medic 2.5]]", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[https://web.archive.org/web/20121017122227/http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe scientist [[Allan Snyder]] said of the book: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 1072077071, + "parentid": 1019929778, + "user": "GreenC bot", + "userid": 27823944, + "timestamp": "2022-02-15T21:09:56Z", + "sha1": "6d1a022d19dbe63d825f1d54ed406c8e20354435", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Rescued 1 archive link. [[User:GreenC/WaybackMedic_2.5|Wayback Medic 2.5]]", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramchandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[https://web.archive.org/web/20121017122227/http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe scientist [[Allan Snyder]] said of the book: “A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [https://web.archive.org/web/20160303233556/http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 1104913821, + "parentid": 1072077071, + "user": "Ibadibam", + "userid": 1138432, + "timestamp": "2022-08-17T14:18:19Z", + "sha1": "3bf6bd9dea076694d2b3087fb8d5ef743a0b3951", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Reception */fixed typo; straight quotes", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores, from a neurological viewpoint, the uniqueness of human nature. \n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramachandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[https://web.archive.org/web/20121017122227/http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe scientist [[Allan Snyder]] said of the book: \"A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [https://web.archive.org/web/20160303233556/http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 1144804184, + "parentid": 1104913821, + "user": "CrafterNova", + "userid": 39680754, + "timestamp": "2023-03-15T17:26:07Z", + "sha1": "cc06374584c740ee8f81a2d39d96682403c97f1f", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "copyedit", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores the uniqueness of human nature from a neurological viewpoint.\n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |work=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite web|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramachandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[https://web.archive.org/web/20121017122227/http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/133-8201841-3538510?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe scientist [[Allan Snyder]] said of the book: \"A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/131-9291652-8282259?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite web|url=https://www.amazon.com/Tell-Tale-Brain-Neuroscientists-Quest-Makes/dp/0393077829/137-4519162-4049053?_encoding=UTF8&n=283155&ref_=dp_proddesc_0&s=books|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|via=Amazon}}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [https://web.archive.org/web/20160303233556/http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite web |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite web|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 1173115659, + "parentid": 1144804184, + "user": "Citation bot", + "userid": 7903804, + "timestamp": "2023-08-31T10:41:16Z", + "sha1": "ee0dbb10f9e7284af67bc628bee5e948b5ecafcd", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Alter: template type. Add: newspaper, isbn, work, s2cid, pages, issue, volume, journal. Removed proxy/dead URL that duplicated identifier. Removed parameters. Some additions/deletions were parameter name changes. | [[:en:WP:UCB|Use this bot]]. [[:en:WP:DBUG|Report bugs]]. | Suggested by Abductive | [[Category:Neuroscience books]] | #UCB_Category 32/38", + "*": "{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores the uniqueness of human nature from a neurological viewpoint.\n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |journal=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |volume=17 |issue=4 |pages=351–358 |s2cid=144065665 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite news|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|work=The New York Times |publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramachandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[https://web.archive.org/web/20121017122227/http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}\n\nThe scientist [[Allan Snyder]] said of the book: \"A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [https://web.archive.org/web/20160303233556/http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite magazine |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite news|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|newspaper=Wall Street Journal |date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 1221992479, + "parentid": 1173115659, + "user": "SimLibrarian", + "userid": 39191556, + "timestamp": "2024-05-03T06:32:35Z", + "sha1": "8830a3b50cafb0924e2af7f5539b25b82daa13e5", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "Adding local [[Wikipedia:Short description|short description]]: \"2010 book by Vilayanur Ramachandran\", overriding Wikidata description \"book by Vilayanur Ramachandran\"", + "*": "{{Short description|2010 book by Vilayanur Ramachandran}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores the uniqueness of human nature from a neurological viewpoint.\n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |journal=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |volume=17 |issue=4 |pages=351–358 |s2cid=144065665 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite news|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|work=The New York Times |publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramachandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[https://web.archive.org/web/20121017122227/http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: “No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. The Tell-Tale Brain is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.”{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}\n\nThe scientist [[Allan Snyder]] said of the book: \"A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [https://web.archive.org/web/20160303233556/http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks — he has elsewhere predicted that they will do for psychology what DNA did for biology — the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite magazine |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite news|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|newspaper=Wall Street Journal |date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 1221992549, + "parentid": 1221992479, + "minor": "", + "user": "SimLibrarian", + "userid": 39191556, + "timestamp": "2024-05-03T06:33:25Z", + "sha1": "95d86370d40f1921d38a209778635552fca09894", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* Book reviews */ rm spaces around emdashes ([[MOS:DASH]]), changed curly to straight punctuation ([[MOS:CURLY]])", + "*": "{{Short description|2010 book by Vilayanur Ramachandran}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores the uniqueness of human nature from a neurological viewpoint.\n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with visual perception and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |journal=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |volume=17 |issue=4 |pages=351–358 |s2cid=144065665 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the Hardcover Nonfiction list).{{cite news|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|work=The New York Times |publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramachandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[https://web.archive.org/web/20121017122227/http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: \"No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. ''The Tell-Tale Brain'' is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.\"{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}\n\nThe scientist [[Allan Snyder]] said of the book: \"A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [https://web.archive.org/web/20160303233556/http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks—he has elsewhere predicted that they will do for psychology what DNA did for biology—the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite magazine |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite news|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|newspaper=Wall Street Journal |date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + }, + { + "revid": 1338832494, + "parentid": 1221992549, + "user": "Electronmore", + "userid": 52183485, + "timestamp": "2026-02-17T14:17:52Z", + "sha1": "acdb50b7e99648b4f8f764f411bd609d7cb0c14d", + "contentformat": "text/x-wiki", + "contentmodel": "wikitext", + "comment": "/* growthexperiments-addlink-summary-summary:2|0|0 */", + "*": "{{Short description|2010 book by Vilayanur Ramachandran}}\n{{Infobox book\n\n| name = The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human\n| image = The Tell Tale Brain cover.jpg\n| caption = \n| author = [[Vilayanur S. Ramachandran]]\n| title_orig = \n| translator = \n| illustrator = \n| cover_artist = \n| country = \n| language = English\n| series = \n| subject = [[Neuroscience]]\n| genre = [[Non-fiction]]\n| publisher = W. W. Norton & Company\n| pub_date = January 17, 2011\n| english_pub_date = \n| media_type = \n| pages = 357\n| isbn = 978-0-393-07782-7\n| oclc = \n| dewey = \n| congress = \n| preceded_by = \n| followed_by = \n}}\n\n'''''The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human''''' is a 2010 nonfiction book by [[Vilayanur S. Ramachandran|V. S. Ramachandran]] that explores the uniqueness of human nature from a neurological viewpoint.\n\n==Synopsis==\n\nRamachandran discusses seven main concepts which define the human aspect of [[self]] and how each may be disrupted by a specific neurological disorder. The concepts are: unity, continuity, embodiment, privacy, social embedding, [[free will]], and self-awareness.\n\nIn the first chapter, Ramachandran discusses the human ability to change and adapt, illustrating the concept from his work on [[phantom limb]]s. The second chapter describes some of his work with [[visual perception]] and cognition, addressing the concept of human awareness.\n\nIn chapter three, he connects ideas about synesthesia to creativity. Chapters four and five talk about [[mirror neuron]]s, while chapter six discusses human language.\n\nRamachandran proposes \"nine laws of [[aesthetics]],\" which he discusses in chapters seven and eight. The final chapter, chapter nine, \"The Ape With A Soul\" concerns introspection and human self-awareness. {{Cite journal |url=https://www.zora.uzh.ch/id/eprint/67368/1/The_tell-tale_brain.pdf |title=The tell-tale brain: Unlocking the mystery of human nature |last=Brugger |first=Peter |journal=Cognitive Neuropsychiatry |doi=10.1080/13546805.2012.685295|quote=I think I will recommend this book to any of my friends who do not shun pop (neuro)science in principle. Although the ''TellTale Brain'' does contain a lot of pop on the surface, the overall content is very much Popper, who once clearly stated that 'bold ideas, unjustified anticipations and speculative thought are our only means for interpreting nature' (Popper, 1959/1980, p. 280). |date=December 7, 2018 |volume=17 |issue=4 |pages=351–358 |s2cid=144065665 |accessdate=July 10, 2019}}\n\n==Reception==\n''Tell-Tale Brain'' was on the New York Times best-seller list (Number 32 on the [[Hardcover]] Nonfiction list).{{cite news|url=https://www.nytimes.com/best-sellers-books/2011-02-20/hardcover-nonfiction/list.html|title=Hardcover Nonfiction Books - Best Sellers - February 20, 2011 - The New York Times|work=The New York Times |publisher=}} It received mostly positive reviews, with some criticism particularly focusing on Ramachandran's theories about mirror neurons.{{cite web|url=http://cbc.ucsd.edu/press.html|title=The Center for Brain and Cognition - Home|website=cbc.ucsd.edu}} The book won the 2010 [[Vodafone Crossword Book Award]] (Non-Fiction).[https://web.archive.org/web/20121017122227/http://ibnlive.in.com/news/vodafone-crossword-book-awards-2010-announced/180813-40-100.html \"Vodafone Crossword book awards 2010 announced\"], IBN Live, Sep 03\n\n===Pre-publication endorsements (book blurbs)===\nThe neurologist [[Oliver Sacks]] wrote: \"No one is better than V. S. Ramachandran at combining minute, careful observation with ingenious experiments and bold, adventurous theorizing. ''The Tell-Tale Brain'' is Ramachandran at his best, a profoundly intriguing and compelling guide to the intricacies of the human brain.\"{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}\n\nThe scientist [[Allan Snyder]] said of the book: \"A masterpiece. The best of its kind and beautifully crafted. Alluring story telling, building to a penetrating understanding of what it is to be uniquely human. Ramachandran is the foremost pioneer—the Galileo—of neurocognition.\"{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}\n\nThe psychiatrist [[Norman Doidge]] offered the following praise for the book:\n\n{{quote|Ramachandran is the modern wizard of neuroscience. In The Tell-Tale Brain, we see the genius at work, tackling extraordinary cases, many of which mark turning points in neuroscientific knowledge. We see him hypothesizing, experimenting, failing, having epiphanies, experimenting, succeeding. In this utterly entertaining account, we see how these fascinating cases fit together, and how he uses them to explain, from a Darwinian point of view, how our brains, though evolved from those of other animals, become neurologically distinct and fundamentally human.{{cite book|title=The Tell-Tale Brain: A Neuroscientist's Quest for What Makes Us Human|first=search|last=results|date=17 January 2011|publisher=W. W. Norton & Company|isbn=978-0393077827 }}}}\n\n===Book reviews===\nJames McConnachie wrote in the ''Sunday Times'':
When VS Ramachandran, one of the world’s most influential neurologists, wants to get inside a human head, he doesn’t reach for his scalpel or MRI scanner. Instead, like Sherlock Holmes (to whom he is often compared), he seizes on an oddity in a case study, then begins a pleasing process of deduction interspersed with leaps of excitingly creative thought. This absorbing book charts the acclaimed experiments he has performed around the world and at the University of California’s cutting-edge Centre for the Brain, and explains how they have helped unravel the workings of the human mind.\"James McConnachie, The Tell-Tale Brain by VS Ramachandran, The Sunday Times, January 09, 2011 [https://web.archive.org/web/20160303233556/http://www.thesundaytimes.co.uk/sto/culture/books/non_fiction/article500581.ece?pagewanted=all]
\n\nWriting in ''[[The New York Times]]'', [[Anthony Gottlieb]] generally recommended the book but criticized Ramachandran for not mentioning how controversial some of his ideas about mirror neurons are:\n\n
Although Ramachandran admits that his account of the significance of mirror neurons is speculative, he doesn’t let on just how controversial it is... Even if mirror neurons turn out not to be quite as important as Ramachandran thinks—he has elsewhere predicted that they will do for psychology what DNA did for biology—the book is packed with other evidence that neuroscience has made illuminating progress in recent years. Reading such accounts of exactly what our brains get up to is apt to leave one with the disconcerting thought that they are often a lot cleverer than their owners realize.Anthony Gottlieb, A Lion in the Undergrowth, Sunday Book Review, January 28, 2011 [https://www.nytimes.com/2011/01/30/books/review/Gottlieb-t.html?pagewanted=all]
\n\nThe philosopher [[Colin McGinn]] praised the book in the ''[[New York Review of Books]]'' despite criticizing it for reductionism/oversimplification, saying:
Ramachandran discusses an enormous range of syndromes and topics in ''The Tell-Tale Brain''. His writing is generally lucid, charming, and informative, with much humor to lighten the load of Latinate brain disquisitions. He is a leader in his field and is certainly an ingenious and tireless researcher. This is the best book of its kind that I have come across for scientific rigor, general interest, and clarity—though some of it will be a hard slog for the uninitiated. {{Cite magazine |url=https://www.nybooks.com/articles/2011/03/24/can-brain-explain-your-mind/ |title=Can the brain explain your mind? |last=McGinn |first=Colin |work=NY Review of Books |quote= |date=March 24, 2011 |accessdate=July 28, 2019}}
\n\nThe philosopher [[Raymond Tallis]] praised the book in ''[[The Wall Street Journal]]'' but complained that Ramachandran has failed to provide the research needed to back up some of his theories, concluding:\n\n
Until we clear up the ground-floor aspects of human consciousness—in particular, first-person being—claims to advance our understanding of its higher levels, and of the grand edifice of civilization, by peering into intra cranial darkness will not withstand even the most cursory examination. ...''The Tell-Tale Brain'', though it is engagingly written and often fascinating, reminds us how little cause we have to privilege what the neuro scientists tell us about what makes us human over the testimony of novelists, poets, social workers or philosophers.{{cite news|url=https://www.wsj.com/articles/SB10001424052748704034804576025681468057572|title=The Mind in the Mirror|first=Raymond|last=Tallis|newspaper=Wall Street Journal |date=8 January 2011|publisher=|via=www.wsj.com}}
\n\n[[Nicholas Shakespeare]] wrote in ''[[The Daily Telegraph]]'':\n\n
Ramachandran wanders along intriguing neural pathways, pausing to investigate strange disorders, but he leaves the impression that he is an explorer who has yet to leave the coast. Further, he appears not fully to appreciate that the interior of this vast continent he is mapping may be at war. His book is intermittently fascinating, but is not important in the way of Iain McGilchrist ''The Master and His Emissary'', last year’s magisterial study of the brain’s two opposed hemispheres...{{cite web|url=https://www.telegraph.co.uk/culture/books/bookreviews/8243355/The-Tell-Tale-Brain-Unlocking-the-Mystery-ofHuman-Nature-by-V-S-Ramachandran-review.html|title=The Tell-Tale Brain: Unlocking the Mystery of Human Nature by V S Ramachandran: review|first=Nicholas|last=Shakespeare|date=5 October 2018|publisher=|via=www.telegraph.co.uk}}
\n\nWriting in ''[[American Scientist]]'', [[Simon Baron-Cohen]] said he found the book stimulating and enjoyable but devoted most of his review to questioning the validity of Ramachandran's views on mirror neurons and the broken-mirror theory of autism, saying for example:\n
There are also clinical and experimental reasons for being skeptical of the broken-mirror theory of autism... As an explanation of autism, the Broken Mirror theory offers some tantalizing clues; however, some problematic counter-evidence challenges the theory and particularly its scope.Baron-Cohen, Making Sense of the Brain's Mysteries, American Scientist, On-line Book Review, July–August, 2011 [https://www.americanscientist.org/article/making-sense-of-the-brains-mysteries]
\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://talkingbrains.org Talkingbrains web site]\n\n{{DEFAULTSORT:Tell-Tale Brain, The}}\n[[Category:Neuroscience books]]\n[[Category:2010 non-fiction books]]" + } +] \ No newline at end of file diff --git a/tests/test_regression.py b/tests/test_regression.py index 66c9770..b538441 100644 --- a/tests/test_regression.py +++ b/tests/test_regression.py @@ -5,13 +5,26 @@ import pytest sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..")) -from WikiWho.wikiwho import Wikiwho +from WikiWho.structures import Word +from WikiWho.wikiwho import ( + Wikiwho, + _can_partially_restore_historical_sentence, + _has_template_name_spacing_change, + _match_word_sequences, + _pipe_key_changed_only_by_template_spacing, + _recover_unique_template_field_words, + _word_match_keys, +) +from WikiWho.utils import iter_rev_tokens, split_into_paragraphs, split_into_tokens FIXTURES_DIR = os.path.join(os.path.dirname(__file__), "fixtures") ARTICLES = [ "Adam Himebauch", + "Luis Donaldo Colosio Riojas", + "One Thing Leads 2 Another", "Splatoon 3", + "The Tell-Tale Brain", ] @@ -24,7 +37,7 @@ def load_fixture(title): golden_path = os.path.join(FIXTURES_DIR, f"{slug(title)}_golden.json") if not os.path.exists(rev_path) or not os.path.exists(golden_path): pytest.skip( - f"Fixtures missing for '{title}' — run 'python -m tests.generate_fixtures' on master first" + f"Fixtures missing for '{title}' — run 'python -m tests.generate_fixtures'" ) with open(rev_path, encoding="utf-8") as f: revisions = json.load(f) @@ -34,7 +47,7 @@ def load_fixture(title): @pytest.mark.parametrize("title", ARTICLES) -def test_token_authorship_matches_master(title): +def test_token_authorship_matches_golden(title): revisions, golden = load_fixture(title) ww = Wikiwho(title) @@ -58,3 +71,246 @@ def test_token_authorship_matches_master(title): assert got == want, ( f"token[{i}] ({got['str']!r}) mismatch:\n got: {got}\n want: {want}" ) + + +def test_three_word_link_run_preserves_adam_authorship(): + revisions, _ = load_fixture("Adam Himebauch") + previous_revision_id = 748557058 + current_revision_id = 754869525 + current_index = next( + index for index, revision in enumerate(revisions) + if revision["revid"] == current_revision_id + ) + wikiwho = Wikiwho("Adam Himebauch") + wikiwho.analyse_article(revisions[:current_index + 1]) + phrase = ( + "a", "building", "in", "[[", "little", "italy", ",", + "manhattan", "|", "little", "italy", "]]", + ) + + def phrase_words(revision_id): + words = list(iter_rev_tokens(wikiwho.revisions[revision_id])) + values = tuple(word.value for word in words) + starts = [ + start for start in range(len(values) - len(phrase) + 1) + if values[start:start + len(phrase)] == phrase + ] + assert len(starts) == 1 + return words[starts[0]:starts[0] + len(phrase)] + + previous_words = phrase_words(previous_revision_id) + current_words = phrase_words(current_revision_id) + + assert [word.token_id for word in current_words] == [ + word.token_id for word in previous_words + ] + assert {word.origin_rev_id for word in current_words} == {678462685} + + +def test_moved_words_before_link_are_recovered(): + previous = ( + [f"p{index}" for index in range(12)] + + ["lived", "in", "[[", "victoria", ",", "british", "columbia", "]]", "from", "1900"] + + [f"q{index}" for index in range(12)] + ) + current = ( + [f"q{index}" for index in range(12)] + + ["lived", "in", "[[", "victoria", ",", "british", "columbia", "]]", "from", "1900"] + + [f"p{index}" for index in range(12)] + ) + + mapping, _ = _match_word_sequences( + previous, + current, + full_text_prev=previous, + full_text_curr=current, + ) + + assert mapping[current.index("lived")] == previous.index("lived") + + +def test_validated_move_recovers_tokens_across_punctuation(): + moved = [ + "|", "title", "=", "colosio", ",", "vizcaíno", ",", "marina", "y", + "cerqueda", ",", "las", "nuevas", "caras", "de", "la", "política", "en", "méxico", + ] + left = [f"left{index}" for index in range(16)] + right = [f"right{index}" for index in range(24)] + previous = left + moved + right + current = right + moved + left + + mapping, _ = _match_word_sequences( + previous, + current, + full_text_prev=previous, + full_text_curr=current, + ) + + assert mapping[current.index("marina")] == previous.index("marina") + + +def test_reference_markup_does_not_strengthen_a_weak_move_anchor(): + moved = ["across", "the", "country", ".", "<", "ref", "name", "=", ":", "0", ">"] + left = [f"left{index}" for index in range(16)] + right = [f"right{index}" for index in range(24)] + previous = left + moved + right + current = right + moved + left + + mapping, _ = _match_word_sequences( + previous, + current, + full_text_prev=previous, + full_text_curr=current, + ) + + assert mapping[current.index("across")] is None + + +def test_link_pipe_keys_do_not_trigger_template_spacing_recovery(): + previous_link = [ + token.lower() + for token in split_into_tokens("[[File:Foo bar.jpg|thumb|caption]]") + ] + current_link = [ + token.lower() + for token in split_into_tokens("[[File:Foobar.jpg|thumb|caption]]") + ] + previous_keys = _word_match_keys(previous_link) + current_keys = _word_match_keys(current_link) + previous_pipes = [ + key for token, key in zip(previous_link, previous_keys) if token == "|" + ] + current_pipes = [ + key for token, key in zip(current_link, current_keys) if token == "|" + ] + + assert len(previous_pipes) == len(current_pipes) == 2 + assert not _has_template_name_spacing_change(previous_keys, current_keys) + assert all( + not _pipe_key_changed_only_by_template_spacing(previous_key, current_key) + for previous_key, current_key in zip(previous_pipes, current_pipes) + ) + + previous = ( + [f"previous{index}" for index in range(8)] + + previous_link + + [f"suffix{index}" for index in range(8)] + ) + current = ( + [f"current{index}" for index in range(8)] + + current_link + + [f"ending{index}" for index in range(8)] + ) + mapping = [None] * len(current) + match_confidence = [0] * len(current) + _recover_unique_template_field_words( + previous, + current, + _word_match_keys(previous), + _word_match_keys(current), + mapping, + match_confidence, + {}, + full_text_prev=previous, + full_text_curr=current, + count_state={"counts": {}}, + ) + + assert mapping[current.index("thumb")] is None + + +def test_template_pipe_keys_still_detect_template_name_spacing_change(): + previous = [ + token.lower() + for token in split_into_tokens("{{single chart|country=switzerland|62}}") + ] + current = [ + token.lower() + for token in split_into_tokens("{{singlechart|country=switzerland|62}}") + ] + previous_keys = _word_match_keys(previous) + current_keys = _word_match_keys(current) + previous_pipes = [ + key for token, key in zip(previous, previous_keys) if token == "|" + ] + current_pipes = [ + key for token, key in zip(current, current_keys) if token == "|" + ] + + assert len(previous_pipes) == len(current_pipes) == 2 + assert {key[2] for key in previous_pipes} == { + "template-field", + "template-arg", + } + assert _has_template_name_spacing_change(previous_keys, current_keys) + assert all( + _pipe_key_changed_only_by_template_spacing(previous_key, current_key) + for previous_key, current_key in zip(previous_pipes, current_pipes) + ) + + +def test_delayed_sentence_reinsertion_can_restore_available_token_identities(): + available = [] + for index in range(33): + word = Word() + word.value = f"available{index}" + word.outbound.append(20) + available.append(word) + occupied = [] + for value in (",", "of"): + word = Word() + word.value = value + word.matched = True + occupied.append(word) + + words = available + occupied + + assert _can_partially_restore_historical_sentence(words, previous_revision_id=21) + assert not _can_partially_restore_historical_sentence(words, previous_revision_id=20) + + +def test_partially_restored_sentence_is_registered_for_future_reuse(): + revisions, _ = load_fixture("The Tell-Tale Brain") + target_revid = 466775504 + target_index = next( + index for index, revision in enumerate(revisions) + if revision["revid"] == target_revid + ) + wikiwho = Wikiwho("The Tell-Tale Brain") + wikiwho.analyse_article(revisions[:target_index + 1]) + + prefix = ["\"", "when", "vs", "ramachandran", ",", "one", "of", "the"] + matching_sentences = [] + revision = wikiwho.revisions[target_revid] + for paragraphs in revision.paragraphs.values(): + for paragraph in paragraphs: + for sentences in paragraph.sentences.values(): + for sentence in sentences: + if [word.value for word in sentence.words[:len(prefix)]] == prefix: + matching_sentences.append(sentence) + + assert len(matching_sentences) == 1 + restored = matching_sentences[0] + assert any( + candidate is restored + for candidate in wikiwho.sentences_ht[restored.hash_value] + ) + assert wikiwho.sentences_ht[restored.hash_value][0] is restored + assert restored.value == "" + assert restored.splitted is None + + +def test_inline_template_end_is_not_split_as_table_markup(): + text = "{{linktext|偉大|}}한 {{linktext|遺産|}}" + multiline_template = "{{#if:1\n|yes\n|}}\nafter" + parameter = "{{{name\n|default\n|}}}\nafter" + template_in_table = "{|\n|-\n| {{#if:1\n|yes\n|}}\n|}\nafter" + + assert split_into_paragraphs(text) == [text] + assert split_into_paragraphs(multiline_template) == [multiline_template] + assert split_into_paragraphs(parameter) == [parameter] + assert any( + "{{#if:1\n|yes\n|}}" in paragraph + for paragraph in split_into_paragraphs(template_in_table) + ) + assert "{|\n| cell\n|}" in split_into_paragraphs("{|\n| cell\n|}")